<!doctype html>
<html lang="en-US">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	
	<link rel="profile" href="https://gmpg.org/xfn/11">
	
	<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
	<script>
		function apbct_attach_event_handler__backend(elem, event, callback) {
			if (typeof window.addEventListener === "function") elem.addEventListener(event, callback);
			else elem.attachEvent(event, callback);
		}
		apbct_attach_event_handler__backend(document, 'DOMContentLoaded', function() {
			if (typeof apbctLocalStorage === "object") {
				apbctLocalStorage.set('ct_checkjs', '801421590', true);
			} else {
				console.log('APBCT ERROR: apbctLocalStorage object is not loaded.');
			}
		});
	</script>
	
	
	<link rel="alternate" type="application/rss+xml" title="Julian Summerhayes » Feed" href="https://juliansummerhayes.com/feed/" />
	<link rel="alternate" type="application/rss+xml" title="Julian Summerhayes » Comments Feed" href="https://juliansummerhayes.com/comments/feed/" />
	<link rel="alternate" type="application/rss+xml" title="Julian Summerhayes » who Comments Feed" href="https://juliansummerhayes.com/who/feed/" />
	<script>
		window._wpemojiSettings = {
			"baseUrl": "https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/",
			"ext": ".png",
			"svgUrl": "https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/",
			"svgExt": ".svg",
			"source": {
				"wpemoji": "https:\/\/juliansummerhayes.com\/wp-includes\/js\/wp-emoji.js?ver=6.1.1",
				"twemoji": "https:\/\/juliansummerhayes.com\/wp-includes\/js\/twemoji.js?ver=6.1.1"
			}
		};
		/**
		 * @output wp-includes/js/wp-emoji-loader.js
		 */
	
		(function(window, document, settings) {
			var src, ready, ii, tests;
	
			// Create a canvas element for testing native browser support of emoji.
			var canvas = document.createElement('canvas');
			var context = canvas.getContext && canvas.getContext('2d');
	
			/**
			 * Checks if two sets of Emoji characters render the same visually.
			 *
			 * @since 4.9.0
			 *
			 * @private
			 *
			 * @param {number[]} set1 Set of Emoji character codes.
			 * @param {number[]} set2 Set of Emoji character codes.
			 *
			 * @return {boolean} True if the two sets render the same.
			 */
			function emojiSetsRenderIdentically(set1, set2) {
				var stringFromCharCode = String.fromCharCode;
	
				// Cleanup from previous test.
				context.clearRect(0, 0, canvas.width, canvas.height);
				context.fillText(stringFromCharCode.apply(this, set1), 0, 0);
				var rendered1 = canvas.toDataURL();
	
				// Cleanup from previous test.
				context.clearRect(0, 0, canvas.width, canvas.height);
				context.fillText(stringFromCharCode.apply(this, set2), 0, 0);
				var rendered2 = canvas.toDataURL();
	
				return rendered1 === rendered2;
			}
	
			/**
			 * Detects if the browser supports rendering emoji or flag emoji.
			 *
			 * Flag emoji are a single glyph made of two characters, so some browsers
			 * (notably, Firefox OS X) don't support them.
			 *
			 * @since 4.2.0
			 *
			 * @private
			 *
			 * @param {string} type Whether to test for support of "flag" or "emoji".
			 *
			 * @return {boolean} True if the browser can render emoji, false if it cannot.
			 */
			function browserSupportsEmoji(type) {
				var isIdentical;
	
				if (!context || !context.fillText) {
					return false;
				}
	
				/*
				 * Chrome on OS X added native emoji rendering in M41. Unfortunately,
				 * it doesn't work when the font is bolder than 500 weight. So, we
				 * check for bold rendering support to avoid invisible emoji in Chrome.
				 */
				context.textBaseline = 'top';
				context.font = '600 32px Arial';
	
				switch (type) {
					case 'flag':
						/*
						 * Test for Transgender flag compatibility. This flag is shortlisted for the Emoji 13 spec,
						 * but has landed in Twemoji early, so we can add support for it, too.
						 *
						 * To test for support, we try to render it, and compare the rendering to how it would look if
						 * the browser doesn't render it correctly (white flag emoji + transgender symbol).
						 */
						isIdentical = emojiSetsRenderIdentically(
							[0x1F3F3, 0xFE0F, 0x200D, 0x26A7, 0xFE0F],
							[0x1F3F3, 0xFE0F, 0x200B, 0x26A7, 0xFE0F]
						);
	
						if (isIdentical) {
							return false;
						}
	
						/*
						 * Test for UN flag compatibility. This is the least supported of the letter locale flags,
						 * so gives us an easy test for full support.
						 *
						 * To test for support, we try to render it, and compare the rendering to how it would look if
						 * the browser doesn't render it correctly ([U] + [N]).
						 */
						isIdentical = emojiSetsRenderIdentically(
							[0xD83C, 0xDDFA, 0xD83C, 0xDDF3],
							[0xD83C, 0xDDFA, 0x200B, 0xD83C, 0xDDF3]
						);
	
						if (isIdentical) {
							return false;
						}
	
						/*
						 * Test for English flag compatibility. England is a country in the United Kingdom, it
						 * does not have a two letter locale code but rather an five letter sub-division code.
						 *
						 * To test for support, we try to render it, and compare the rendering to how it would look if
						 * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]).
						 */
						isIdentical = emojiSetsRenderIdentically(
							[0xD83C, 0xDFF4, 0xDB40, 0xDC67, 0xDB40, 0xDC62, 0xDB40, 0xDC65, 0xDB40, 0xDC6E, 0xDB40, 0xDC67, 0xDB40, 0xDC7F],
							[0xD83C, 0xDFF4, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC62, 0x200B, 0xDB40, 0xDC65, 0x200B, 0xDB40, 0xDC6E, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC7F]
						);
	
						return !isIdentical;
					case 'emoji':
						/*
						 * Why can't we be friends? Everyone can now shake hands in emoji, regardless of skin tone!
						 *
						 * To test for Emoji 14.0 support, try to render a new emoji: Handshake: Light Skin Tone, Dark Skin Tone.
						 *
						 * The Handshake: Light Skin Tone, Dark Skin Tone emoji is a ZWJ sequence combining 🫱 Rightwards Hand,
						 * 🏻 Light Skin Tone, a Zero Width Joiner, 🫲 Leftwards Hand, and 🏿 Dark Skin Tone.
						 *
						 * 0x1FAF1 == Rightwards Hand
						 * 0x1F3FB == Light Skin Tone
						 * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or
						 * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji.
						 * 0x1FAF2 == Leftwards Hand
						 * 0x1F3FF == Dark Skin Tone.
						 *
						 * When updating this test for future Emoji releases, ensure that individual emoji that make up the
						 * sequence come from older emoji standards.
						 */
						isIdentical = emojiSetsRenderIdentically(
							[0x1FAF1, 0x1F3FB, 0x200D, 0x1FAF2, 0x1F3FF],
							[0x1FAF1, 0x1F3FB, 0x200B, 0x1FAF2, 0x1F3FF]
						);
	
						return !isIdentical;
				}
	
				return false;
			}
	
			/**
			 * Adds a script to the head of the document.
			 *
			 * @ignore
			 *
			 * @since 4.2.0
			 *
			 * @param {Object} src The url where the script is located.
			 * @return {void}
			 */
			function addScript(src) {
				var script = document.createElement('script');
	
				script.src = src;
				script.defer = script.type = 'text/javascript';
				document.getElementsByTagName('head')[0].appendChild(script);
			}
	
			tests = Array('flag', 'emoji');
	
			settings.supports = {
				everything: true,
				everythingExceptFlag: true
			};
	
			/*
			 * Tests the browser support for flag emojis and other emojis, and adjusts the
			 * support settings accordingly.
			 */
			for (ii = 0; ii < tests.length; ii++) {
				settings.supports[tests[ii]] = browserSupportsEmoji(tests[ii]);
	
				settings.supports.everything = settings.supports.everything && settings.supports[tests[ii]];
	
				if ('flag' !== tests[ii]) {
					settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[tests[ii]];
				}
			}
	
			settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && !settings.supports.flag;
	
			// Sets DOMReady to false and assigns a ready function to settings.
			settings.DOMReady = false;
			settings.readyCallback = function() {
				settings.DOMReady = true;
			};
	
			// When the browser can not render everything we need to load a polyfill.
			if (!settings.supports.everything) {
				ready = function() {
					settings.readyCallback();
				};
	
				/*
				 * Cross-browser version of adding a dom ready event.
				 */
				if (document.addEventListener) {
					document.addEventListener('DOMContentLoaded', ready, false);
					window.addEventListener('load', ready, false);
				} else {
					window.attachEvent('onload', ready);
					document.attachEvent('onreadystatechange', function() {
						if ('complete' === document.readyState) {
							settings.readyCallback();
						}
					});
				}
	
				src = settings.source || {};
	
				if (src.concatemoji) {
					addScript(src.concatemoji);
				} else if (src.wpemoji && src.twemoji) {
					addScript(src.twemoji);
					addScript(src.wpemoji);
				}
			}
	
		})(window, document, window._wpemojiSettings);
	</script>
	
	
	
	
	
	
	
	
	
	
	
	
	
	<script src="/wp-content/themes/summer-blog/js/jquery.js?ver=3.6.1" id="jquery-core-js"></script>
	<script src="/wp-content/themes/summer-blog/js/jquery-migrate.js?ver=3.3.2" id="jquery-migrate-js"></script>
	<script id="ct_public_functions-js-extra">
		var ctPublicFunctions = {
			"_ajax_nonce": "af17b41bf1",
			"_rest_nonce": "3f9bee1899",
			"_ajax_url": "\/wp-admin\/admin-ajax.php",
			"_rest_url": "https:\/\/juliansummerhayes.com\/wp-json\/",
			"data__cookies_type": "native",
			"data__ajax_type": "rest",
			"text__wait_for_decoding": "Decoding the contact data, let us a few seconds to finish. Anti-Spam by CleanTalk.",
			"cookiePrefix": ""
		};
		var ctPublic = {
			"settings__forms__check_internal": "0",
			"settings__forms__check_external": "0",
			"blog_home": "https:\/\/juliansummerhayes.com\/",
			"pixel__setting": "0",
			"pixel__enabled": "",
			"pixel__url": null,
			"data__email_check_before_post": "1",
			"data__cookies_type": "native",
			"data__visible_fields_required": "1",
			"data__to_local_storage": []
		};
	</script>
	<script data-pagespeed-no-defer src="/wp-content/themes/summer-blog/js/apbct-public-bundle.min.js?ver=5.188" id="ct_public_functions-js"></script>
	<script src="/wp-content/themes/summer-blog/js/index.js?ver=2.0" id="twentytwenty-js-js" async></script>
	<link rel="https://api.w.org/" href="https://juliansummerhayes.com/wp-json/" />
	<link rel="alternate" type="application/json" href="https://juliansummerhayes.com/wp-json/wp/v2/pages/5235" />
	<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://juliansummerhayes.com/xmlrpc.php?rsd" />
	<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://juliansummerhayes.com/wp-includes/wlwmanifest.xml" />
	<meta name="generator" content="WordPress 6.1.1" />
	<link rel="shortlink" href="https://juliansummerhayes.com/?p=5235" />
	<link rel="alternate" type="application/json+oembed" href="https://juliansummerhayes.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fjuliansummerhayes.com%2Fwho%2F" />
	<link rel="alternate" type="text/xml+oembed" href="https://juliansummerhayes.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fjuliansummerhayes.com%2Fwho%2F&amp;format=xml" />
	
	<script>
		document.documentElement.className = document.documentElement.className.replace('no-js', 'js');
	</script>
	

	<title>living in the question - Julian Summerhayes</title>
<meta name='robots' content='max-image-preview:large' />
	
	
<!-- All In One SEO Pack 3.6.2[29673,29729] -->
<meta name="description"  content="Explore the philosophy of living in the question with Julian Summerhayes. Learn how embracing uncertainty can lead to a fuller, more conscious life." />

<script type="application/ld+json" class="aioseop-schema">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://juliansummerhayes.com/#organization","url":"https://juliansummerhayes.com/","name":"living in the question - Julian Summerhayes","sameAs":[]},{"@type":"WebSite","@id":"https://juliansummerhayes.com/#website","url":"https://juliansummerhayes.com/","name":"living in the question - Julian Summerhayes","publisher":{"@id":"https://juliansummerhayes.com/#organization"},"potentialAction":{"@type":"SearchAction","target":"https://juliansummerhayes.com/?s={search_term_string}","query-input":"required name=search_term_string"}},{"@type":"WebPage","@id":"https://juliansummerhayes.com#webpage","url":"https://juliansummerhayes.com","inLanguage":"en-US","name":"living in the question - Julian Summerhayes","isPartOf":{"@id":"https://juliansummerhayes.com/#website"},"breadcrumb":{"@id":"https://juliansummerhayes.com#breadcrumblist"},"description":" Explore the philosophy of living in the question with Julian Summerhayes. Learn how embracing uncertainty can lead to a fuller, more conscious life. ","datePublished":"2023-11-26T15:52:51+00:00","dateModified":"2025-03-13T05:20:18+00:00","about":{"@id":"https://juliansummerhayes.com/#organization"}},{"@type":"BreadcrumbList","@id":"https://juliansummerhayes.com#breadcrumblist","itemListElement":[{"@type":"ListItem","position":1,"item":{"@type":"WebPage","@id":"https://juliansummerhayes.com/","url":"https://juliansummerhayes.com/","name":" living in the question - Julian Summerhayes "}}]}]}</script>
<link rel="canonical" href="https://juliansummerhayes.com/" />
<!-- All In One SEO Pack -->
<link rel="alternate" type="application/rss+xml" title="living in the question - Julian Summerhayes &raquo; Feed" href="https://juliansummerhayes.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="living in the question - Julian Summerhayes &raquo; Comments Feed" href="https://juliansummerhayes.com/comments/feed/" />
<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.1.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/juliansummerhayes.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.8.1"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\ud83d\udd25","\ud83d\udc26\u200b\ud83d\udd25")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
</script>






<script src="https://juliansummerhayes.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
<script src="https://juliansummerhayes.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
<script id="ai-js-js-extra">
var MyAjax = {"ajaxurl":"https:\/\/juliansummerhayes.com\/wp-admin\/admin-ajax.php","security":"a369a5a1e6"};
</script>
<script src="https://juliansummerhayes.com/wp-content/plugins/advanced-iframe/js/ai.min.js?ver=1" id="ai-js-js"></script>
<link rel="https://api.w.org/" href="https://juliansummerhayes.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://juliansummerhayes.com/wp-json/wp/v2/pages/415" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://juliansummerhayes.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.8.1" />
<link rel='shortlink' href='https://juliansummerhayes.com/' />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://juliansummerhayes.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fjuliansummerhayes.com%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://juliansummerhayes.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fjuliansummerhayes.com%2F&#038;format=xml" />
		
		<link href="/style.css?v=1" rel="stylesheet"/></head>

<body data-rsssl="1" class="page-template-default page page-id-5154 custom-background wp-embed-responsive is-light-theme has-background-white no-js singular has-main-navigation no-widgets">
<a class="skip-link screen-reader-text" href="#site-content">Skip to the content</a>
<svg xmlns="http://w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
	<defs>
		<filter id="wp-duotone-dark-grayscale">
			<fecolormatrix color-interpolation-filters="sRGB" type="matrix" values="
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
				" />
			<fecomponenttransfer color-interpolation-filters="sRGB">
				<fefuncr type="table" tablevalues="0 0.49803921568627" />
				<fefuncg type="table" tablevalues="0 0.49803921568627" />
				<fefuncb type="table" tablevalues="0 0.49803921568627" />
				<fefunca type="table" tablevalues="1 1" />
			</fecomponenttransfer>
			<fecomposite in2="SourceGraphic" operator="in" />
		</filter>
	</defs>
</svg>


<svg xmlns="http://w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
	<defs>
		<filter id="wp-duotone-grayscale">
			<fecolormatrix color-interpolation-filters="sRGB" type="matrix" values="
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
				" />
			<fecomponenttransfer color-interpolation-filters="sRGB">
				<fefuncr type="table" tablevalues="0 1" />
				<fefuncg type="table" tablevalues="0 1" />
				<fefuncb type="table" tablevalues="0 1" />
				<fefunca type="table" tablevalues="1 1" />
			</fecomponenttransfer>
			<fecomposite in2="SourceGraphic" operator="in" />
		</filter>
	</defs>
</svg>


<svg xmlns="http://w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
	<defs>
		<filter id="wp-duotone-purple-yellow">
			<fecolormatrix color-interpolation-filters="sRGB" type="matrix" values="
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
				" />
			<fecomponenttransfer color-interpolation-filters="sRGB">
				<fefuncr type="table" tablevalues="0.54901960784314 0.98823529411765" />
				<fefuncg type="table" tablevalues="0 1" />
				<fefuncb type="table" tablevalues="0.71764705882353 0.25490196078431" />
				<fefunca type="table" tablevalues="1 1" />
			</fecomponenttransfer>
			<fecomposite in2="SourceGraphic" operator="in" />
		</filter>
	</defs>
</svg>


<svg xmlns="http://w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
	<defs>
		<filter id="wp-duotone-blue-red">
			<fecolormatrix color-interpolation-filters="sRGB" type="matrix" values="
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
				" />
			<fecomponenttransfer color-interpolation-filters="sRGB">
				<fefuncr type="table" tablevalues="0 1" />
				<fefuncg type="table" tablevalues="0 0.27843137254902" />
				<fefuncb type="table" tablevalues="0.5921568627451 0.27843137254902" />
				<fefunca type="table" tablevalues="1 1" />
			</fecomponenttransfer>
			<fecomposite in2="SourceGraphic" operator="in" />
		</filter>
	</defs>
</svg>


<svg xmlns="http://w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
	<defs>
		<filter id="wp-duotone-midnight">
			<fecolormatrix color-interpolation-filters="sRGB" type="matrix" values="
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
				" />
			<fecomponenttransfer color-interpolation-filters="sRGB">
				<fefuncr type="table" tablevalues="0 0" />
				<fefuncg type="table" tablevalues="0 0.64705882352941" />
				<fefuncb type="table" tablevalues="0 1" />
				<fefunca type="table" tablevalues="1 1" />
			</fecomponenttransfer>
			<fecomposite in2="SourceGraphic" operator="in" />
		</filter>
	</defs>
</svg>


<svg xmlns="http://w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
	<defs>
		<filter id="wp-duotone-magenta-yellow">
			<fecolormatrix color-interpolation-filters="sRGB" type="matrix" values="
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
				" />
			<fecomponenttransfer color-interpolation-filters="sRGB">
				<fefuncr type="table" tablevalues="0.78039215686275 1" />
				<fefuncg type="table" tablevalues="0 0.94901960784314" />
				<fefuncb type="table" tablevalues="0.35294117647059 0.47058823529412" />
				<fefunca type="table" tablevalues="1 1" />
			</fecomponenttransfer>
			<fecomposite in2="SourceGraphic" operator="in" />
		</filter>
	</defs>
</svg>


<svg xmlns="http://w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
	<defs>
		<filter id="wp-duotone-purple-green">
			<fecolormatrix color-interpolation-filters="sRGB" type="matrix" values="
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
				" />
			<fecomponenttransfer color-interpolation-filters="sRGB">
				<fefuncr type="table" tablevalues="0.65098039215686 0.40392156862745" />
				<fefuncg type="table" tablevalues="0 1" />
				<fefuncb type="table" tablevalues="0.44705882352941 0.4" />
				<fefunca type="table" tablevalues="1 1" />
			</fecomponenttransfer>
			<fecomposite in2="SourceGraphic" operator="in" />
		</filter>
	</defs>
</svg>


<svg xmlns="http://w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
	<defs>
		<filter id="wp-duotone-blue-orange">
			<fecolormatrix color-interpolation-filters="sRGB" type="matrix" values="
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
					.299 .587 .114 0 0
				" />
			<fecomponenttransfer color-interpolation-filters="sRGB">
				<fefuncr type="table" tablevalues="0.098039215686275 1" />
				<fefuncg type="table" tablevalues="0 0.66274509803922" />
				<fefuncb type="table" tablevalues="0.84705882352941 0.41960784313725" />
				<fefunca type="table" tablevalues="1 1" />
			</fecomponenttransfer>
			<fecomposite in2="SourceGraphic" operator="in" />
		</filter>
	</defs>
</svg>


<header id="site-header" class="header-footer-group">

	<div class="header-inner section-inner">

		<div class="header-titles-wrapper">


			<button class="toggle search-toggle mobile-search-toggle" data-toggle-target=".search-modal" data-toggle-body-class="showing-search-modal" data-set-focus=".search-modal .search-field" aria-expanded="false">
				<span class="toggle-inner">
					<span class="toggle-icon">
						<svg class="svg-icon" aria-hidden="true" role="img" focusable="false" xmlns="http://w3.org/2000/svg" width="23" height="23" viewbox="0 0 23 23">
							<path d="M38.710696,48.0601792 L43,52.3494831 L41.3494831,54 L37.0601792,49.710696 C35.2632422,51.1481185 32.9839107,52.0076499 30.5038249,52.0076499 C24.7027226,52.0076499 20,47.3049272 20,41.5038249 C20,35.7027226 24.7027226,31 30.5038249,31 C36.3049272,31 41.0076499,35.7027226 41.0076499,41.5038249 C41.0076499,43.9839107 40.1481185,46.2632422 38.710696,48.0601792 Z M36.3875844,47.1716785 C37.8030221,45.7026647 38.6734666,43.7048964 38.6734666,41.5038249 C38.6734666,36.9918565 35.0157934,33.3341833 30.5038249,33.3341833 C25.9918565,33.3341833 22.3341833,36.9918565 22.3341833,41.5038249 C22.3341833,46.0157934 25.9918565,49.6734666 30.5038249,49.6734666 C32.7048964,49.6734666 34.7026647,48.8030221 36.1716785,47.3875844 C36.2023931,47.347638 36.2360451,47.3092237 36.2726343,47.2726343 C36.3092237,47.2360451 36.347638,47.2023931 36.3875844,47.1716785 Z" transform="translate(-20 -31)" /></svg> </span>
					<span class="toggle-text">Search</span>
				</span>
			</button><!-- .search-toggle -->


			<div class="header-titles">

				<div class="site-title faux-heading" style="position: relative;"><a href="/">Julian Summerhayes</a></div>
			</div><!-- .header-titles -->

			<button class="toggle nav-toggle mobile-nav-toggle" data-toggle-target=".menu-modal" data-toggle-body-class="showing-menu-modal" aria-expanded="false" data-set-focus=".close-nav-toggle">
				<span class="toggle-inner">
					<span class="toggle-icon">
						<svg class="svg-icon" aria-hidden="true" role="img" focusable="false" xmlns="http://w3.org/2000/svg" width="26" height="7" viewbox="0 0 26 7">
							<path fill-rule="evenodd" d="M332.5,45 C330.567003,45 329,43.4329966 329,41.5 C329,39.5670034 330.567003,38 332.5,38 C334.432997,38 336,39.5670034 336,41.5 C336,43.4329966 334.432997,45 332.5,45 Z M342,45 C340.067003,45 338.5,43.4329966 338.5,41.5 C338.5,39.5670034 340.067003,38 342,38 C343.932997,38 345.5,39.5670034 345.5,41.5 C345.5,43.4329966 343.932997,45 342,45 Z M351.5,45 C349.567003,45 348,43.4329966 348,41.5 C348,39.5670034 349.567003,38 351.5,38 C353.432997,38 355,39.5670034 355,41.5 C355,43.4329966 353.432997,45 351.5,45 Z" transform="translate(-329 -38)" /></svg> </span>
					<span class="toggle-text">Menu</span>
				</span>
			</button><!-- .nav-toggle -->

		</div><!-- .header-titles-wrapper -->

		<div class="header-navigation-wrapper">


			<nav class="primary-menu-wrapper" aria-label="Horizontal">

				<ul class="primary-menu reset-list-style">

					<li id="menu-item-5668" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-5235 current_page_item menu-item-5668"><a href="/who/" aria-current="page">/ who</a></li>
					<li id="menu-item-5717" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5717"><a href="/what/">/ what</a></li>
					<li id="menu-item-5670" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5670"><a href="/blog/">/ blog</a></li>
					<li id="menu-item-5683" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5683"><a href="/archives/">/ archives</a></li>
					<li id="menu-item-7223" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7223"><a href="/books/">/ books</a></li>
					<li id="menu-item-5667" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5667"><a href="/support/">/ support</a></li>
					<li id="menu-item-10507" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10507"><a href="/now-2/">/ now</a></li>

				</ul>

			</nav><!-- .primary-menu-wrapper -->


			<div class="header-toggles hide-no-js">


				<div class="toggle-wrapper search-toggle-wrapper">

					<button class="toggle search-toggle desktop-search-toggle" data-toggle-target=".search-modal" data-toggle-body-class="showing-search-modal" data-set-focus=".search-modal .search-field" aria-expanded="false">
						<span class="toggle-inner">
							<svg class="svg-icon" aria-hidden="true" role="img" focusable="false" xmlns="http://w3.org/2000/svg" width="23" height="23" viewbox="0 0 23 23">
								<path d="M38.710696,48.0601792 L43,52.3494831 L41.3494831,54 L37.0601792,49.710696 C35.2632422,51.1481185 32.9839107,52.0076499 30.5038249,52.0076499 C24.7027226,52.0076499 20,47.3049272 20,41.5038249 C20,35.7027226 24.7027226,31 30.5038249,31 C36.3049272,31 41.0076499,35.7027226 41.0076499,41.5038249 C41.0076499,43.9839107 40.1481185,46.2632422 38.710696,48.0601792 Z M36.3875844,47.1716785 C37.8030221,45.7026647 38.6734666,43.7048964 38.6734666,41.5038249 C38.6734666,36.9918565 35.0157934,33.3341833 30.5038249,33.3341833 C25.9918565,33.3341833 22.3341833,36.9918565 22.3341833,41.5038249 C22.3341833,46.0157934 25.9918565,49.6734666 30.5038249,49.6734666 C32.7048964,49.6734666 34.7026647,48.8030221 36.1716785,47.3875844 C36.2023931,47.347638 36.2360451,47.3092237 36.2726343,47.2726343 C36.3092237,47.2360451 36.347638,47.2023931 36.3875844,47.1716785 Z" transform="translate(-20 -31)" /></svg> <span class="toggle-text">Search</span>
						</span>
					</button><!-- .search-toggle -->

				</div>


			</div><!-- .header-toggles -->

		</div><!-- .header-navigation-wrapper -->

	</div><!-- .header-inner -->

	<div class="search-modal cover-modal header-footer-group" data-modal-target-string=".search-modal" role="dialog" aria-modal="true" aria-label="Search">

		<div class="search-modal-inner modal-inner">

			<div class="section-inner">

				<form role="search" aria-label="Search for:" method="get" class="search-form" action="/?s">
					<label for="search-form-1">
						<span class="screen-reader-text">Search for:</span>
						<input type="search" id="search-form-1" class="search-field" placeholder="Search …" value="" name="s" />
					</label>
					<input type="submit" class="search-submit" value="Search" />
					<input id="apbct_submit_id__search_form_67800" class="apbct_special_field apbct__email_id__search_form" name="apbct_submit_id__search_form_67800" type="submit" apbct_event_id="67800" size="30" maxlength="200" value="" /></form>

				<button class="toggle search-untoggle close-search-toggle fill-children-current-color" data-toggle-target=".search-modal" data-toggle-body-class="showing-search-modal" data-set-focus=".search-modal .search-field">
					<span class="screen-reader-text">Close search</span>
					<svg class="svg-icon" aria-hidden="true" role="img" focusable="false" xmlns="http://w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16">
						<polygon fill="" fill-rule="evenodd" points="6.852 7.649 .399 1.195 1.445 .149 7.899 6.602 14.352 .149 15.399 1.195 8.945 7.649 15.399 14.102 14.352 15.149 7.899 8.695 1.445 15.149 .399 14.102" /></svg> </button><!-- .search-toggle -->

			</div><!-- .section-inner -->

		</div><!-- .search-modal-inner -->

	</div><!-- .menu-modal -->

</header><!-- #site-header -->


<div class="menu-modal cover-modal header-footer-group" data-modal-target-string=".menu-modal">

	<div class="menu-modal-inner modal-inner">

		<div class="menu-wrapper section-inner">

			<div class="menu-top">

				<button class="toggle close-nav-toggle fill-children-current-color" data-toggle-target=".menu-modal" data-toggle-body-class="showing-menu-modal" data-set-focus=".menu-modal">
					<span class="toggle-text">Close Menu</span>
					<svg class="svg-icon" aria-hidden="true" role="img" focusable="false" xmlns="http://w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16">
						<polygon fill="" fill-rule="evenodd" points="6.852 7.649 .399 1.195 1.445 .149 7.899 6.602 14.352 .149 15.399 1.195 8.945 7.649 15.399 14.102 14.352 15.149 7.899 8.695 1.445 15.149 .399 14.102" /></svg> </button><!-- .nav-toggle -->


				<nav class="mobile-menu" aria-label="Mobile">

					<ul class="modal-menu reset-list-style">

						<li class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-5235 current_page_item menu-item-5668">
							<div class="ancestor-wrapper"><a href="/who/" aria-current="page">/ who</a></div><!-- .ancestor-wrapper -->
						</li>
						<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5717">
							<div class="ancestor-wrapper"><a href="/what/">/ what</a></div><!-- .ancestor-wrapper -->
						</li>
						<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5670">
							<div class="ancestor-wrapper"><a href="/blog/">/ blog</a></div><!-- .ancestor-wrapper -->
						</li>
						<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5683">
							<div class="ancestor-wrapper"><a href="/archives/">/ archives</a></div><!-- .ancestor-wrapper -->
						</li>
						<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7223">
							<div class="ancestor-wrapper"><a href="/books/">/ books</a></div><!-- .ancestor-wrapper -->
						</li>
						<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5667">
							<div class="ancestor-wrapper"><a href="/support/">/ support</a></div><!-- .ancestor-wrapper -->
						</li>
						<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10507">
							<div class="ancestor-wrapper"><a href="/now-2/">/ now</a></div><!-- .ancestor-wrapper -->
						</li>

					</ul>

				</nav>


			</div><!-- .menu-top -->

			<div class="menu-bottom">


			</div><!-- .menu-bottom -->

		</div><!-- .menu-wrapper -->

	</div><!-- .menu-modal-inner -->

</div><!-- .menu-modal --><style>
	iframe {max-height: 320px !important;}
</style>
<main id="site-content">
<article class="page type-page status-publish hentry" id="post-5235">
	<header class="entry-header has-text-align-center header-footer-group">
		<div class="entry-header-inner section-inner medium">
			<h1 class="entry-title">living in the question</h1>
		</div><!-- .entry-header-inner -->
	</header><!-- .entry-header -->
	<div class="post-inner thin ">
		<div class="entry-content">

<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-2912 post type-post status-publish format-standard has-post-thumbnail hentry category-blog"></li><li class="wp-block-post post-2908 post type-post status-publish format-standard has-post-thumbnail hentry category-blog"></li><li class="wp-block-post post-2903 post type-post status-publish format-standard has-post-thumbnail hentry category-blog"></li></ul></div>
<blockquote>
<p>In both <a >pin-up login</a> and in philosophical pursuits, it is important to make conscious decisions in order to achieve true understanding.<br />Sometimes you climb out of bed in the morning and you think, I’m not going to make it, but you laugh inside — remembering all the times you’ve felt that way. ― <span class="authorOrTitle">Charles Bukowski</span></p>
</blockquote>
<p>I often ask myself: how did it get like this? I mean, who would have thought that on the back of our human-centred progress, we’ve become a danger to ourselves and the world? When our time comes, we won’t be ancestors worth claiming. That said, there’s still the business at hand; namely, trying to navigate the slings and wretched arrows of work, keeping our business afloat, dealing with grief that’s soaked into every pore of our life, trying to navigate another relationship on the verge of collapse and the existential dread of not knowing how long we’ve got.</p>
<p>In an information-drunk culture, one where you’re saturated in knowledge but little wisdom, my <a href="/what/">work</a> may seem otherworldly or not hard-edged enough, but I’m of the view that if only we’d stop running long enough to ask a better or more beautiful question we wouldn’t be careening out of control. Of course, you may want another solution-orientated or 7-step programme and that’s fine but it’s not what I’m <a href="/what/">offering</a>. Instead, as a guide and mentor my role is to help you develop a practice of asking the one question that if you’re prepared to steep yourself in its portent, it will change you and your life.</p>
<p>This site is home to my writing and where you’ll find out more about my <a href="/what/">work</a>. I’d like to think that what I’m trying to do is get us to reconnect with who we are at the deepest, most profound level, rooted as it is in the knowledge that what got us here may not be what we need for the future.</p>
<p>If I can help please feel free to contact <a href="/what/">me</a>.</p>
 			<div style="display: block; margin: 0 auto; width: 100%; max-width: 1170px; padding: 20px;">
				<div style="width: 100%; max-width: 300px; display: inline-block;">
					<a href="https://juliansummerhayes.com/essential-3-rules-of-mental-health-practice/"><img style="width: 100%; height: 300px; object-fit: cover; border-radius: 12px;" src="https://juliansummerhayes.com/wp-content/uploads/2025/02/image-21.jpeg"></a>
				</div>
				<div style="width: 100%; max-width: 800px; display: inline-block; padding: 20px;">
					<div style="font-size: 22px;"><a href="https://juliansummerhayes.com/essential-3-rules-of-mental-health-practice/"><h3>Essential 3 Rules of Mental Health Practice</h3></a></div>
					<div style="width: 100%;"><p><p>Mental health is vital, shaping our lives and relationships deeply. By following the 3 rules of mental health practice, we can boost our well-being. Online mental health courses from platforms such as iHasco are key. They help remove the stigma around mental health issues in the UK. This leads to healthier environments both at work [&hellip;]</p>
</p></div>
				</div>
				<hr>
			</div>
			<div style="display: block; margin: 0 auto; width: 100%; max-width: 1170px; padding: 20px;">
				<div style="width: 100%; max-width: 300px; display: inline-block;">
					<a href="https://juliansummerhayes.com/exploring-what-personal-growth-means-to-us/"><img style="width: 100%; height: 300px; object-fit: cover; border-radius: 12px;" src="https://juliansummerhayes.com/wp-content/uploads/2025/02/image-19.jpeg"></a>
				</div>
				<div style="width: 100%; max-width: 800px; display: inline-block; padding: 20px;">
					<div style="font-size: 22px;"><a href="https://juliansummerhayes.com/exploring-what-personal-growth-means-to-us/"><h3>Exploring What Personal Growth Means to Us</h3></a></div>
					<div style="width: 100%;"><p><p>Wondering what does personal growth mean is key. It&#8217;s about activities that boost our awareness, build our skills, and better our lives. We find ourselves achieving our dreams and goals. It&#8217;s about knowing our strengths and constantly building on them, leading to deep self-value and insight. At its core, personal growth means welcoming change and [&hellip;]</p>
</p></div>
				</div>
				<hr>
			</div>
			<div style="display: block; margin: 0 auto; width: 100%; max-width: 1170px; padding: 20px;">
				<div style="width: 100%; max-width: 300px; display: inline-block;">
					<a href="https://juliansummerhayes.com/understanding-psychology-the-study-of-the-mind/"><img style="width: 100%; height: 300px; object-fit: cover; border-radius: 12px;" src="https://juliansummerhayes.com/wp-content/uploads/2025/02/image-16.jpeg"></a>
				</div>
				<div style="width: 100%; max-width: 800px; display: inline-block; padding: 20px;">
					<div style="font-size: 22px;"><a href="https://juliansummerhayes.com/understanding-psychology-the-study-of-the-mind/"><h3>Understanding Psychology: The Study of the Mind</h3></a></div>
					<div style="width: 100%;"><p><p>Psychology dives deep into how we think, feel, and behave, both on our own and together. It looks into our mental processes, emotions, and actions through different ways. By studying what we do, our thoughts, dreams, and perceptions, psychology covers a broad spectrum. What is psychology the study of: The start of psychology dates back [&hellip;]</p>
</p></div>
				</div>
				<hr>
			</div>
			<div style="display: block; margin: 0 auto; width: 100%; max-width: 1170px; padding: 20px;">
				<div style="width: 100%; max-width: 300px; display: inline-block;">
					<a href="https://juliansummerhayes.com/understanding-factors-impacting-mental-health/"><img style="width: 100%; height: 300px; object-fit: cover; border-radius: 12px;" src="https://juliansummerhayes.com/wp-content/uploads/2025/02/image-15.jpeg"></a>
				</div>
				<div style="width: 100%; max-width: 800px; display: inline-block; padding: 20px;">
					<div style="font-size: 22px;"><a href="https://juliansummerhayes.com/understanding-factors-impacting-mental-health/"><h3>Understanding Factors Impacting Mental Health</h3></a></div>
					<div style="width: 100%;"><p><p>Our mental health is complex and shaped by many things. Knowing what affects mental health is key to protect it. This knowledge helps create support systems that build mental strength. There&#8217;s a growing need to focus on mental health now. In England, the number of people seeking mental health help jumped by 54% from 2016 [&hellip;]</p>
</p></div>
				</div>
				<hr>
			</div>
			<div style="display: block; margin: 0 auto; width: 100%; max-width: 1170px; padding: 20px;">
				<div style="width: 100%; max-width: 300px; display: inline-block;">
					<a href="https://juliansummerhayes.com/understanding-behavioural-psychology-definition/"><img style="width: 100%; height: 300px; object-fit: cover; border-radius: 12px;" src="https://juliansummerhayes.com/wp-content/uploads/2025/02/image-13.jpeg"></a>
				</div>
				<div style="width: 100%; max-width: 800px; display: inline-block; padding: 20px;">
					<div style="font-size: 22px;"><a href="https://juliansummerhayes.com/understanding-behavioural-psychology-definition/"><h3>Understanding Behavioural Psychology Definition</h3></a></div>
					<div style="width: 100%;"><p><p>Behavioural psychology, also called behaviourism, studies how we respond to what&#8217;s around us. It became a key field in the mid-20th century. Now, it&#8217;s important in areas like therapy, education, and mental health. At its heart, behaviourism believes our actions are shaped by our surroundings. We can study, measure, and change these actions closely. To [&hellip;]</p>
</p></div>
				</div>
				<hr>
			</div>
			<div style="display: block; margin: 0 auto; width: 100%; max-width: 1170px; padding: 20px;">
				<div style="width: 100%; max-width: 300px; display: inline-block;">
					<a href="https://juliansummerhayes.com/emotional-health-vs-mental-health-key-insights/"><img style="width: 100%; height: 300px; object-fit: cover; border-radius: 12px;" src="https://juliansummerhayes.com/wp-content/uploads/2025/02/image-11.jpeg"></a>
				</div>
				<div style="width: 100%; max-width: 800px; display: inline-block; padding: 20px;">
					<div style="font-size: 22px;"><a href="https://juliansummerhayes.com/emotional-health-vs-mental-health-key-insights/"><h3>Emotional Health vs Mental Health: Key Insights</h3></a></div>
					<div style="width: 100%;"><p><p>It&#8217;s vital to understand the link between emotional health and mental health for our total well-being. The World Health Organization (WHO) says health is not just about not being ill. It covers our physical, mental, and social states fully. This broad view stresses the need to think about our emotional and mental health together. Mental [&hellip;]</p>
</p></div>
				</div>
				<hr>
			</div>
	</div>
</div><!-- .post-inner -->
		<div class="section-inner">
		</div><!-- .section-inner -->
		<div class="comments-wrapper section-inner">
			<div id="respond" class="comment-respond">
				<h2 id="reply-title" class="comment-reply-title">Leave a Reply</h2>
				<form action="/wp-comments-post.php/?s" method="post" id="commentform" class="section-inner thin max-percentage" novalidate>
					<p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p>
					<p class="comment-form-comment"><label for="comment">Comment <span class="required">*</span></label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required></textarea></p>
					<p class="comment-form-author"><label for="author">Name <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" autocomplete="name" required /></p>
					<p class="comment-form-email"><label for="email">Email <span class="required">*</span></label> <input id="email" name="email" type="email" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required /></p>
					<p class="comment-form-url"><label for="url">Website</label> <input id="url" name="url" type="url" value="" size="30" maxlength="200" autocomplete="url" /></p>
					<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment" /> <input type="hidden" name="comment_post_ID" value="5235" id="comment_post_ID" />
						<input type="hidden" name="comment_parent" id="comment_parent" value="0" />
					</p>
					<p style="display: none;"><input type="hidden" id="spamtrap_get" name="spamtrap_get" value="af3a8d8495" /><input type="hidden" id="spamtrap_js" name="spamtrap_js" value="" />
						<script type="text/javascript">
							jQuery('#spamtrap_js').val('f88004fbe4');
						</script>
					</p><input type="hidden" id="ct_checkjs_168908dd3227b8358eababa07fcaf091" name="ct_checkjs" value="0" />
				</form>
			</div><!-- #respond -->
		</div><!-- .comments-wrapper -->
	</article><!-- .post -->
</main><!-- #site-content -->
	  <footer id="site-footer" class="header-footer-group">

		<div class="section-inner">

			<div class="footer-credits">

				<p class="footer-copyright">&copy;
					2022 <a >Julian Summerhayes</a>
				</p><!-- .footer-copyright -->


				<p class="powered-by-wordpress">
					<a >
						Powered by WordPress </a>
				</p><!-- .powered-by-wordpress -->

			</div><!-- .footer-credits -->

			<a class="to-the-top" href="#site-header">
				<span class="to-the-top-long">
					To the top <span class="arrow" aria-hidden="true">&uarr;</span> </span><!-- .to-the-top-long -->
				<span class="to-the-top-short">
					Up <span class="arrow" aria-hidden="true">&uarr;</span> </span><!-- .to-the-top-short -->
			</a><!-- .to-the-top -->

		</div><!-- .section-inner -->

	</footer><!-- #site-footer -->

	<script>
		document.addEventListener('DOMContentLoaded', function() {
			setTimeout(function() {
				if (document.querySelectorAll('[name^=ct_checkjs]').length > 0) {
					apbct_public_sendREST(
						'js_keys__get', {
							callback: apbct_js_keys__set_input_value
						}
					)
				}
			}, 0)
		})
	</script>
	<div style="display: none;">
		<a href="/cdn-cgi/l/email-protection#1063737f647c717e74507d71797c68653e737f7d"><span class="__cf_email__" data-cfemail="e291818d968e838c86a28f838b8e9a97cc818d8f">[email&#160;protected]</span></a>
		<a href="/cdn-cgi/l/email-protection#e192809484938f849295888f84a18c80888d9994cf828e8c"><span class="__cf_email__" data-cfemail="1566746070677b7066617c7b705578747c796d603b767a78">[email&#160;protected]</span></a>
	</div>
	<style id="core-block-supports-inline-css">
		/**
 * Core styles: block-supports
 */
	</style>
	<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>
		/(trident|msie)/i.test(navigator.userAgent) && document.getElementById && window.addEventListener && window.addEventListener("hashchange", function() {
			var t, e = location.hash.substring(1);
			/^[A-z0-9_-]+$/.test(e) && (t = document.getElementById(e)) && (/^(?:a|select|input|button|textarea)$/i.test(t.tagName) || (t.tabIndex = -1), t.focus())
		}, !1);
	</script>
	<script src="/wp-content/themes/summer-blog/js/e-202247.js" defer></script>
	<script>
		_stq = window._stq || [];
		_stq.push(['view', {
			v: 'ext',
			blog: '38804961',
			post: '5235',
			tz: '0',
			srv: 'juliansummerhayes.com',
			j: '1:11.5.1'
		}]);
		_stq.push(['clickTrackerInit', '38804961', '5235']);
	</script>
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/summer-blog\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script src="https://juliansummerhayes.com/wp-content/themes/summer-blog/js/skip-link-focus-fix.js?ver=20151215" id="summer-blog-skip-link-focus-fix-js"></script>
<script src="https://juliansummerhayes.com/wp-content/themes/summer-blog/js/navigation.js?ver=20151215" id="summer-blog-navigation-js"></script>
<script src="https://juliansummerhayes.com/wp-content/themes/summer-blog/js/custom-script.js?ver=20151215" id="summer-blog-custom-script-js"></script>
<span style="display:none"><script type="text/javascript">
document.write('<img src="//counter.yadro.ru/hit?t14.11;r'+escape(document.referrer)+((typeof(screen)=='undefined')?'':';s'+
screen.width+'*'+screen.height+'*'+(screen.colorDepth?screen.colorDepth:screen.pixelDepth))+';u'+
escape(document.URL)+';'+Math.random()+'" alt="" width="0" height="0" />');
</script>
</span></body>
</html>

<!--
Performance optimized by W3 Total Cache. Learn more: https://boldgrid.com/w3-total-cache/


Served from: juliansummerhayes.com @ 2025-06-02 20:34:24 by W3 Total Cache
-->