{"id":20,"date":"2024-11-13T18:44:38","date_gmt":"2024-11-13T18:44:38","guid":{"rendered":"https:\/\/untruthless.com\/index.php\/home\/"},"modified":"2026-04-06T20:05:59","modified_gmt":"2026-04-06T12:05:59","slug":"home","status":"publish","type":"page","link":"https:\/\/untruthless.com\/","title":{"rendered":"Home"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<main class=\"wp-block-group alignfull has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-group alignfull has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-89463222 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading has-xx-large-font-size\">\u771f\u5b9e\u8fd8\u662f\u5b58\u5728\u7684<\/h2>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">untruthless \u76f8\u4fe1\uff0c\u771f\u6b63\u7684\u4ef7\u503c\u4e0d\u9760\u5305\u88c5\uff0c\u4e0d\u9760\u60c5\u7eea\uff0c\u800c\u9760\u5b58\u5728\u672c\u8eab\u88ab\u53cd\u590d\u9a8c\u8bc1\u3002\u5728\u4fe1\u606f\u6df7\u6742\u3001\u771f\u5047\u96be\u8fa8\u7684\u65f6\u4ee3\uff0c\u6211\u4eec\u9009\u62e9\u7f13\u6162\u3001\u6e05\u6670\u4e0e\u8d23\u4efb\uff0c\u575a\u6301\u53ea\u505a\u771f\u5b9e\u5b58\u5728\u3001\u957f\u671f\u6709\u6548\u7684\u4e8b\u3002\u65e0\u8bba\u73af\u5883\u5982\u4f55\u53d8\u5316\uff0cuntruthless \u90fd\u5c06\u5b88\u4f4f\u8fd9\u6761\u5e95\u7ebf\uff0c\u5e76\u4ee5\u6301\u7eed\u3001\u514b\u5236\u800c\u575a\u5b9a\u7684\u884c\u52a8\uff0c\u5411\u4e16\u754c\u4f20\u9012\u771f\u5b9e\u7684\u529b\u91cf\u3002<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\"><\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/three.js\/r128\/three.min.js\"><\/script>\n\n<div id=\"black-sphere-container\" style=\"width: 100%; height: 600px; background-color: transparent;\"><\/div>\n\n<script>\n(function() {\n    const container = document.getElementById('black-sphere-container');\n    const scene = new THREE.Scene();\n    \n    \/\/ \uce74\uba54\ub77c \uc124\uc815\n    const camera = new THREE.PerspectiveCamera(75, container.clientWidth \/ container.clientHeight, 0.1, 1000);\n    camera.position.z = 160;\n\n    const renderer = new THREE.WebGLRenderer({ antialias: true, alpha: true });\n    renderer.setSize(container.clientWidth, container.clientHeight);\n    renderer.setPixelRatio(window.devicePixelRatio);\n    container.appendChild(renderer.domElement);\n\n    \/\/ \uc810 \uc785\uc790 \uc0dd\uc131\n    const geometry = new THREE.BufferGeometry();\n    const vertices = [];\n    const particleCount = 5000; \/\/ \uc810\uc758 \uac1c\uc218\ub97c \ub298\ub824 \ub354 \ubc00\ub3c4 \uc788\uac8c \uad6c\uc131\n    const radius = 90; \n\n    for (let i = 0; i < particleCount; i++) {\n        \/\/ \uad6c\uccb4 \ud45c\uba74\uc5d0 \uade0\uc77c\ud558\uac8c \ubc30\uce58\ud558\ub294 \uc218\ud559 \uacf5\uc2dd\n        const phi = Math.acos(-1 + (2 * i) \/ particleCount);\n        const theta = Math.sqrt(particleCount * Math.PI) * phi;\n\n        const x = radius * Math.cos(theta) * Math.sin(phi);\n        const y = radius * Math.sin(theta) * Math.sin(phi);\n        const z = radius * Math.cos(phi);\n\n        vertices.push(x, y, z);\n    }\n\n    geometry.setAttribute('position', new THREE.Float32BufferAttribute(vertices, 3));\n\n    \/\/ \uc0c9\uc0c1\uc744 \uac80\uc815\uc0c9(0x000000)\uc73c\ub85c \uc124\uc815\n    const material = new THREE.PointsMaterial({\n        color: 0x000000, \n        size: 0.8,\n        transparent: true,\n        opacity: 0.7,\n        sizeAttenuation: true\n    });\n\n    const points = new THREE.Points(geometry, material);\n    scene.add(points);\n\n    \/\/ \uc560\ub2c8\uba54\uc774\uc158 \ub8e8\ud504 (360\ub3c4 \uc601\uad6c \ud68c\uc804)\n    function animate() {\n        requestAnimationFrame(animate);\n\n        \/\/ Y\ucd95\uacfc X\ucd95\uc73c\ub85c \uc9c0\uc18d\uc801\uc73c\ub85c \ud68c\uc804\ud558\uc5ec 3D \uc785\uccb4\uac10 \uc720\uc9c0\n        points.rotation.y += 0.003; \n        points.rotation.x += 0.0015;\n\n        renderer.render(scene, camera);\n    }\n\n    \/\/ \ud654\uba74 \ub9ac\uc0ac\uc774\uc988 \ub300\uc751\n    window.addEventListener('resize', () => {\n        if (container.clientWidth > 0) {\n            camera.aspect = container.clientWidth \/ container.clientHeight;\n            camera.updateProjectionMatrix();\n            renderer.setSize(container.clientWidth, container.clientHeight);\n        }\n    });\n\n    animate();\n})();\n<\/script> \n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-group alignwide has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-1476b47a wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-container-core-column-is-layout-4ed7567b wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<div class=\"wp-block-query is-layout-flow wp-block-query-is-layout-flow\"><ul class=\"wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-154 post type-post status-publish format-standard hentry category-uncategorized\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-980ba590 wp-block-group-is-layout-flow\">\n\n<h2 class=\"wp-block-post-title has-large-font-size\"><a href=\"https:\/\/untruthless.com\/index.php\/2026\/04\/06\/come-unto-me-all-ye-that-labour-and-are-heavy-laden-and-i-will-give-you-rest\/\" target=\"_self\" >Come unto me, all ye that labour and are heavy laden, and I will give you rest.<\/a><\/h2>\n\n<div style=\"text-transform:uppercase;letter-spacing:1.4px\" class=\"taxonomy-category wp-block-post-terms\"><a href=\"https:\/\/untruthless.com\/index.php\/category\/uncategorized\/\" rel=\"tag\">\u672a\u5206\u7c7b<\/a><\/div><\/div>\n\n<\/li><\/ul>\n\n<\/div>\n\n\n\n<div class=\"wp-block-query is-layout-flow wp-block-query-is-layout-flow\"><ul class=\"wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-134 post type-post status-publish format-standard hentry category-uncategorized\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-980ba590 wp-block-group-is-layout-flow\">\n\n<h2 class=\"wp-block-post-title has-large-font-size\"><a href=\"https:\/\/untruthless.com\/index.php\/2026\/02\/10\/%e6%96%87%e4%bb%b6%e5%92%8c%e6%96%87%e4%bb%b6%e5%a4%b9\/\" target=\"_self\" >\u6587\u4ef6\u548c\u6587\u4ef6\u5939<\/a><\/h2>\n\n<div style=\"text-transform:uppercase;letter-spacing:1.4px\" class=\"taxonomy-category wp-block-post-terms\"><a href=\"https:\/\/untruthless.com\/index.php\/category\/uncategorized\/\" rel=\"tag\">\u672a\u5206\u7c7b<\/a><\/div><\/div>\n\n<\/li><\/ul><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<div class=\"wp-block-query is-layout-flow wp-block-query-is-layout-flow\"><ul class=\"wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-141 post type-post status-publish format-standard hentry category-uncategorized\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-5e312c77 wp-block-group-is-layout-flow\">\n\n<h1 class=\"wp-block-post-title\"><a href=\"https:\/\/untruthless.com\/index.php\/2026\/03\/10\/%e7%ae%97%e6%b3%95%e5%92%8c%e6%b5%81%e7%a8%8b%e6%98%af%e7%a7%a9%e5%ba%8f%e7%9a%84%e5%91%88%e7%8e%b0%ef%bc%8c%e6%98%af%e7%88%b1%e7%9a%84%e4%b8%8d%e5%90%8c%e8%a1%a8%e7%8e%b0%e6%96%b9%e5%bc%8f\/\" target=\"_self\" >\u7b97\u6cd5\u548c\u6d41\u7a0b\u662f\u79e9\u5e8f\u7684\u5448\u73b0\uff0c\u662f\u7231\u7684\u4e0d\u540c\u8868\u73b0\u65b9\u5f0f<\/a><\/h1>\n\n<div style=\"text-transform:uppercase;letter-spacing:1.4px\" class=\"taxonomy-category wp-block-post-terms\"><a href=\"https:\/\/untruthless.com\/index.php\/category\/uncategorized\/\" rel=\"tag\">\u672a\u5206\u7c7b<\/a><\/div>\n\n<div class=\"wp-block-post-excerpt has-medium-font-size\"><p class=\"wp-block-post-excerpt__excerpt\">\u4ece\u6700\u672c\u8d28\u3001\u6700\u79d1\u5b66\u4e14\u6700\u6df1\u5c42\u7684\u5e95\u5c42\u903b\u8f91\u6765\u770b\uff0c\u5546\u4e1a\u9879\u76ee\uff08Business P&hellip; <\/p><\/div><\/div>\n\n<\/li><\/ul><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-container-core-column-is-layout-4ed7567b wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<div class=\"wp-block-query is-layout-flow wp-block-query-is-layout-flow\"><ul class=\"wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-139 post type-post status-publish format-standard hentry category-5\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-980ba590 wp-block-group-is-layout-flow\">\n\n<h2 class=\"wp-block-post-title has-large-font-size\"><a href=\"https:\/\/untruthless.com\/index.php\/2026\/03\/08\/%e6%8e%a5%e5%8f%97%e8%87%aa%e5%b7%b1%e7%9a%84%e4%bd%93%e9%aa%8c-%e5%b0%bd%e9%87%8f%e4%ba%89%e5%8f%96%e5%a5%bd%e7%9a%84%e4%bd%93%e9%aa%8c\/\" target=\"_self\" >\u63a5\u53d7\u81ea\u5df1\u7684\u4f53\u9a8c \u5c3d\u91cf\u4e89\u53d6\u597d\u7684\u4f53\u9a8c<\/a><\/h2>\n\n<div style=\"text-transform:uppercase;letter-spacing:1.4px\" class=\"taxonomy-category wp-block-post-terms\"><a href=\"https:\/\/untruthless.com\/index.php\/category\/%e6%80%9d%e6%83%b3\/\" rel=\"tag\">\u601d&amp;\u60f3<\/a><\/div><\/div>\n\n<\/li><\/ul><\/div>\n\n\n\n<div class=\"wp-block-query is-layout-flow wp-block-query-is-layout-flow\"><ul class=\"wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-103 post type-post status-publish format-standard hentry category-uncategorized\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-980ba590 wp-block-group-is-layout-flow\">\n\n<h2 class=\"wp-block-post-title has-large-font-size\"><a href=\"https:\/\/untruthless.com\/index.php\/2026\/02\/03\/%ed%9e%98%ea%b3%bc-%ec%83%9d%eb%aa%85%ec%9d%80-%ec%a7%88%ec%84%9c%ec%97%90%ec%84%9c-%ec%83%9d%ea%b8%b4%eb%8b%a4\/\" target=\"_self\" >\ud798\uacfc \uc0dd\uba85\uc740 \uc9c8\uc11c\uc5d0\uc11c \uc0dd\uae34\ub2e4.<\/a><\/h2>\n\n<div style=\"text-transform:uppercase;letter-spacing:1.4px\" class=\"taxonomy-category wp-block-post-terms\"><a href=\"https:\/\/untruthless.com\/index.php\/category\/uncategorized\/\" rel=\"tag\">\u672a\u5206\u7c7b<\/a><\/div><\/div>\n\n<\/li><\/ul><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-group alignwide has-global-padding is-layout-constrained wp-container-core-group-is-layout-126804cb wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-query alignwide is-layout-flow wp-block-query-is-layout-flow\"><ul class=\"columns-2 wp-block-post-template is-layout-grid wp-container-core-post-template-is-layout-a634065d wp-block-post-template-is-layout-grid\"><li class=\"wp-block-post post-100 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-980ba590 wp-block-group-is-layout-flow\"><figure style=\"aspect-ratio:3\/2\" class=\"wp-block-post-featured-image\"><a href=\"https:\/\/untruthless.com\/index.php\/2026\/02\/02\/100\/\" target=\"_self\"  ><img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"533\" src=\"https:\/\/untruthless.com\/wp-content\/uploads\/2026\/02\/bcfe3d8d-61bd-4e9a-9170-6f8bc99fe02b-md.jpeg\" class=\"attachment-post-thumbnail size-post-thumbnail wp-post-image\" alt=\"\u672a\u547d\u540d\u6587\u7ae0 100\" style=\"width:100%;height:100%;object-fit:cover;\" srcset=\"https:\/\/untruthless.com\/wp-content\/uploads\/2026\/02\/bcfe3d8d-61bd-4e9a-9170-6f8bc99fe02b-md.jpeg 800w, https:\/\/untruthless.com\/wp-content\/uploads\/2026\/02\/bcfe3d8d-61bd-4e9a-9170-6f8bc99fe02b-md-300x200.jpeg 300w, https:\/\/untruthless.com\/wp-content\/uploads\/2026\/02\/bcfe3d8d-61bd-4e9a-9170-6f8bc99fe02b-md-768x512.jpeg 768w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/><\/a><\/figure>\n\n\n\n<div style=\"text-transform:uppercase;letter-spacing:1.4px\" class=\"taxonomy-category wp-block-post-terms\"><a href=\"https:\/\/untruthless.com\/index.php\/category\/uncategorized\/\" rel=\"tag\">\u672a\u5206\u7c7b<\/a><\/div><\/div>\n\n<\/li><li class=\"wp-block-post post-98 post type-post status-publish format-standard hentry category-uncategorized\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-980ba590 wp-block-group-is-layout-flow\">\n\n<h2 class=\"wp-block-post-title has-x-large-font-size\"><a href=\"https:\/\/untruthless.com\/index.php\/2026\/02\/02\/i-see-you-%ec%97%90-%ea%b4%80%ed%95%9c-%ea%b2%83%eb%93%a4\/\" target=\"_self\" >i see you \uc5d0 \uad00\ud55c \uac83\ub4e4<\/a><\/h2>\n\n<div style=\"text-transform:uppercase;letter-spacing:1.4px\" class=\"taxonomy-category wp-block-post-terms\"><a href=\"https:\/\/untruthless.com\/index.php\/category\/uncategorized\/\" rel=\"tag\">\u672a\u5206\u7c7b<\/a><\/div><\/div>\n\n<\/li><\/ul><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-group alignwide has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--70)\">\n<div class=\"wp-block-query alignwide is-layout-flow wp-block-query-is-layout-flow\"><ul class=\"columns-3 wp-block-post-template is-layout-grid wp-container-core-post-template-is-layout-9589be57 wp-block-post-template-is-layout-grid\"><li class=\"wp-block-post post-1 post type-post status-publish format-standard hentry category-uncategorized\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-980ba590 wp-block-group-is-layout-flow\">\n\n<h2 class=\"wp-block-post-title has-large-font-size\"><a href=\"https:\/\/untruthless.com\/index.php\/2025\/11\/26\/hello-world\/\" target=\"_self\" >\u4e16\u754c\uff0c\u60a8\u597d\uff01<\/a><\/h2>\n\n<div style=\"text-transform:uppercase;letter-spacing:1.4px\" class=\"taxonomy-category wp-block-post-terms\"><a href=\"https:\/\/untruthless.com\/index.php\/category\/uncategorized\/\" rel=\"tag\">\u672a\u5206\u7c7b<\/a><\/div><\/div>\n\n<\/li><li class=\"wp-block-post post-54 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-980ba590 wp-block-group-is-layout-flow\"><figure style=\"aspect-ratio:4\/3\" class=\"wp-block-post-featured-image\"><a href=\"https:\/\/untruthless.com\/index.php\/2024\/11\/13\/navigating-the-quiet-moments-within-the-noise\/\" target=\"_self\"  ><img loading=\"lazy\" decoding=\"async\" width=\"2004\" height=\"898\" src=\"https:\/\/untruthless.com\/wp-content\/uploads\/2024\/11\/\u622a\u5c4f2025-11-27-15.28.35.png\" class=\"attachment-post-thumbnail size-post-thumbnail wp-post-image\" alt=\"utl.\u5bf9\u56fe\u4e66\u9986\u7684\u5b9a\u4e49\" style=\"width:100%;height:100%;object-fit:cover;\" srcset=\"https:\/\/untruthless.com\/wp-content\/uploads\/2024\/11\/\u622a\u5c4f2025-11-27-15.28.35.png 2004w, https:\/\/untruthless.com\/wp-content\/uploads\/2024\/11\/\u622a\u5c4f2025-11-27-15.28.35-300x134.png 300w, https:\/\/untruthless.com\/wp-content\/uploads\/2024\/11\/\u622a\u5c4f2025-11-27-15.28.35-1024x459.png 1024w, https:\/\/untruthless.com\/wp-content\/uploads\/2024\/11\/\u622a\u5c4f2025-11-27-15.28.35-768x344.png 768w, https:\/\/untruthless.com\/wp-content\/uploads\/2024\/11\/\u622a\u5c4f2025-11-27-15.28.35-1536x688.png 1536w\" sizes=\"auto, (max-width: 2004px) 100vw, 2004px\" \/><\/a><\/figure>\n\n<h2 class=\"wp-block-post-title has-large-font-size\"><a href=\"https:\/\/untruthless.com\/index.php\/2024\/11\/13\/navigating-the-quiet-moments-within-the-noise\/\" target=\"_self\" >utl.\u5bf9\u56fe\u4e66\u9986\u7684\u5b9a\u4e49<\/a><\/h2>\n\n<div style=\"text-transform:uppercase;letter-spacing:1.4px\" class=\"taxonomy-category wp-block-post-terms\"><a href=\"https:\/\/untruthless.com\/index.php\/category\/uncategorized\/\" rel=\"tag\">\u672a\u5206\u7c7b<\/a><\/div><\/div>\n\n<\/li><li class=\"wp-block-post post-50 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-980ba590 wp-block-group-is-layout-flow\"><figure style=\"aspect-ratio:4\/3\" class=\"wp-block-post-featured-image\"><a href=\"https:\/\/untruthless.com\/index.php\/2024\/11\/11\/where-solitude-meets-profound-reflection\/\" target=\"_self\"  ><img loading=\"lazy\" decoding=\"async\" width=\"620\" height=\"350\" src=\"https:\/\/untruthless.com\/wp-content\/uploads\/2024\/11\/posttruth-1.png\" class=\"attachment-post-thumbnail size-post-thumbnail wp-post-image\" alt=\"\u2712\ufe0f \u4e13\u680f\uff1a\u5982\u4f55\u5728\u201c\u88ab\u52a8\u751f\u5b58\u201d\u4e2d\u5b9e\u73b0\u6c38\u6052\u7684\u4ef7\u503c\" style=\"width:100%;height:100%;object-fit:cover;\" srcset=\"https:\/\/untruthless.com\/wp-content\/uploads\/2024\/11\/posttruth-1.png 620w, https:\/\/untruthless.com\/wp-content\/uploads\/2024\/11\/posttruth-1-300x169.png 300w\" sizes=\"auto, (max-width: 620px) 100vw, 620px\" \/><\/a><\/figure>\n\n<h2 class=\"wp-block-post-title has-large-font-size\"><a href=\"https:\/\/untruthless.com\/index.php\/2024\/11\/11\/where-solitude-meets-profound-reflection\/\" target=\"_self\" >\u2712\ufe0f \u4e13\u680f\uff1a\u5982\u4f55\u5728\u201c\u88ab\u52a8\u751f\u5b58\u201d\u4e2d\u5b9e\u73b0\u6c38\u6052\u7684\u4ef7\u503c<\/a><\/h2>\n\n<div style=\"text-transform:uppercase;letter-spacing:1.4px\" class=\"taxonomy-category wp-block-post-terms\"><a href=\"https:\/\/untruthless.com\/index.php\/category\/uncategorized\/\" rel=\"tag\">\u672a\u5206\u7c7b<\/a><\/div><\/div>\n\n<\/li><li class=\"wp-block-post post-47 post type-post status-publish format-standard hentry category-uncategorized\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-980ba590 wp-block-group-is-layout-flow\">\n\n<h2 class=\"wp-block-post-title has-large-font-size\"><a href=\"https:\/\/untruthless.com\/index.php\/2024\/11\/10\/the-calm-emergence-of-growth-and-resilience\/\" target=\"_self\" >\u4e00\u4e2a\u4eba\u3001\u4e00\u4e2a\u7a7a\u95f4\u3001\u4e00\u4e2a\u5185\u5bb9\uff0c\u7686\u53ef\u4e3a\u4e16\u754c\u5e26\u6765\u5149\u4eae\u3002<\/a><\/h2>\n\n<div style=\"text-transform:uppercase;letter-spacing:1.4px\" class=\"taxonomy-category wp-block-post-terms\"><a href=\"https:\/\/untruthless.com\/index.php\/category\/uncategorized\/\" rel=\"tag\">\u672a\u5206\u7c7b<\/a><\/div><\/div>\n\n<\/li><li class=\"wp-block-post post-44 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-980ba590 wp-block-group-is-layout-flow\"><figure style=\"aspect-ratio:4\/3\" class=\"wp-block-post-featured-image\"><a href=\"https:\/\/untruthless.com\/index.php\/2024\/11\/07\/dusteternal\/\" target=\"_self\"  ><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https:\/\/untruthless.com\/wp-content\/uploads\/2024\/11\/unnamed-1.jpg\" class=\"attachment-post-thumbnail size-post-thumbnail wp-post-image\" alt=\"\u5c18\u57c3\u4e0e\u5f7c\u5cb8\u2014\u2014\u901a\u5f80\u81ea\u7531\u7684\u771f\u7406\u4e4b\u8def\" style=\"width:100%;height:100%;object-fit:cover;\" srcset=\"https:\/\/untruthless.com\/wp-content\/uploads\/2024\/11\/unnamed-1.jpg 1024w, https:\/\/untruthless.com\/wp-content\/uploads\/2024\/11\/unnamed-1-300x300.jpg 300w, https:\/\/untruthless.com\/wp-content\/uploads\/2024\/11\/unnamed-1-150x150.jpg 150w, https:\/\/untruthless.com\/wp-content\/uploads\/2024\/11\/unnamed-1-768x768.jpg 768w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n<h2 class=\"wp-block-post-title has-large-font-size\"><a href=\"https:\/\/untruthless.com\/index.php\/2024\/11\/07\/dusteternal\/\" target=\"_self\" >\u5c18\u57c3\u4e0e\u5f7c\u5cb8\u2014\u2014\u901a\u5f80\u81ea\u7531\u7684\u771f\u7406\u4e4b\u8def<\/a><\/h2>\n\n<div style=\"text-transform:uppercase;letter-spacing:1.4px\" class=\"taxonomy-category wp-block-post-terms\"><a href=\"https:\/\/untruthless.com\/index.php\/category\/uncategorized\/\" rel=\"tag\">\u672a\u5206\u7c7b<\/a><\/div><\/div>\n\n<\/li><li class=\"wp-block-post post-41 post type-post status-publish format-standard hentry category-5\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-980ba590 wp-block-group-is-layout-flow\">\n\n<h2 class=\"wp-block-post-title has-large-font-size\"><a href=\"https:\/\/untruthless.com\/index.php\/2024\/11\/05\/snx\/\" target=\"_self\" >\u8d70\u51fa\u601d\u7ef4\u7684\u7262\u7b3c\uff1a\u4ece\u60ef\u6027\u5230\u521b\u9020\u7684\u4eba\u751f\u8dc3\u8fc1<\/a><\/h2>\n\n<div style=\"text-transform:uppercase;letter-spacing:1.4px\" class=\"taxonomy-category wp-block-post-terms\"><a href=\"https:\/\/untruthless.com\/index.php\/category\/%e6%80%9d%e6%83%b3\/\" rel=\"tag\">\u601d&amp;\u60f3<\/a><\/div><\/div>\n\n<\/li><\/ul><\/div>\n<\/div>\n<\/main>\n","protected":false},"excerpt":{"rendered":"<p>\u771f\u5b9e\u8fd8\u662f\u5b58\u5728\u7684 untruthless \u76f8\u4fe1\uff0c\u771f\u6b63\u7684\u4ef7\u503c\u4e0d\u9760\u5305\u88c5\uff0c\u4e0d\u9760\u60c5\u7eea\uff0c\u800c\u9760\u5b58\u5728\u672c\u8eab\u88ab\u53cd\u590d\u9a8c\u8bc1\u3002\u5728\u4fe1\u606f\u6df7\u6742 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-no-title","meta":{"footnotes":""},"class_list":["post-20","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/untruthless.com\/index.php\/wp-json\/wp\/v2\/pages\/20","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/untruthless.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/untruthless.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/untruthless.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/untruthless.com\/index.php\/wp-json\/wp\/v2\/comments?post=20"}],"version-history":[{"count":4,"href":"https:\/\/untruthless.com\/index.php\/wp-json\/wp\/v2\/pages\/20\/revisions"}],"predecessor-version":[{"id":152,"href":"https:\/\/untruthless.com\/index.php\/wp-json\/wp\/v2\/pages\/20\/revisions\/152"}],"wp:attachment":[{"href":"https:\/\/untruthless.com\/index.php\/wp-json\/wp\/v2\/media?parent=20"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}