<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Joseph J. Thiebes, Ph.D.</title>
	<atom:link href="https://thiebes.org/feed/" rel="self" type="application/rss+xml" />
	<link>https://thiebes.org</link>
	<description>Illuminating Dynamics</description>
	<lastBuildDate>Thu, 11 Jun 2026 22:51:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>

<image>
	<url>https://thiebes.org/wp-content/uploads/2024/04/cropped-jjt-logo-512.png?w=32</url>
	<title>Joseph J. Thiebes, Ph.D.</title>
	<link>https://thiebes.org</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">54922359</site><cloud domain='thiebes.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<atom:link rel="search" type="application/opensearchdescription+xml" href="https://thiebes.org/osd.xml" title="Joseph J. Thiebes, Ph.D." />
	<atom:link rel='hub' href='https://thiebes.org/?pushpress=hub'/>
	<item>
		<title>Labeling matplotlib curves without a legend</title>
		<link>https://thiebes.org/2026/06/11/labeling-matplotlib-curves-without-a-legend/</link>
					<comments>https://thiebes.org/2026/06/11/labeling-matplotlib-curves-without-a-legend/#respond</comments>
		
		<dc:creator><![CDATA[Joseph J. Thiebes]]></dc:creator>
		<pubDate>Thu, 11 Jun 2026 22:51:22 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[data visualization]]></category>
		<category><![CDATA[dataviz]]></category>
		<category><![CDATA[matplotlib]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[plotting]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">http://thiebes.org/?p=1825</guid>

					<description><![CDATA[When a chart has a few lines on it, the usual way to tell them apart is a legend: a small box off to the side that maps each color to a name. It works, but it makes the reader do extra work. Your eye lands on a line, jumps to the legend, finds the<a class="more-link" href="https://thiebes.org/2026/06/11/labeling-matplotlib-curves-without-a-legend/">Continue reading <span class="screen-reader-text">"Labeling matplotlib curves without a&#160;legend"</span></a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">When a chart has a few lines on it, the usual way to tell them apart is a legend: a small box off to the side that maps each color to a name. It works, but it makes the reader do extra work. Your eye lands on a line, jumps to the legend, finds the matching color, reads the name, then jumps back. For every line, every time.</p>



<p class="wp-block-paragraph"><a href="https://www.edwardtufte.com/books/">Tufte</a>&#8216;s advice is to put the label on the data instead. Write each name right along the line it belongs to. No color key, no round trip.</p>



<p class="wp-block-paragraph">I wanted to do that in matplotlib, and there was no simple built-in way to run text along a curved line, so I wrote a small library for it called curved-text.</p>



<figure class="wp-block-image size-large"><img data-attachment-id="1829" data-permalink="https://thiebes.org/2026/06/11/labeling-matplotlib-curves-without-a-legend/01_direct_labeling/" data-orig-file="https://thiebes.org/wp-content/uploads/2026/06/01_direct_labeling.png" data-orig-size="1003,442" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;,&quot;alt&quot;:&quot;&quot;}" data-image-title="01_direct_labeling" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2026/06/01_direct_labeling.png?w=750" src="https://thiebes.org/wp-content/uploads/2026/06/01_direct_labeling.png" alt="" class="wp-image-1829" /></figure>



<p class="wp-block-paragraph">It draws a string along any <code>(x, y)</code> curve, one character at a time, with each character rotated to follow the local slope. You give it the curve, the text, and three placement controls:</p>



<ul class="wp-block-list">
<li><code>pos</code>: where along the curve the label sits, as a fraction from start (0) to end (1)</li>



<li><code>anchor</code>: whether that point is the start, center, or end of the label.</li>



<li><code>offset</code>: how far to lift the text off the line, perpendicular to it.</li>
</ul>



<figure class="wp-block-image size-large"><img data-attachment-id="1828" data-permalink="https://thiebes.org/2026/06/11/labeling-matplotlib-curves-without-a-legend/02_sine_hello/" data-orig-file="https://thiebes.org/wp-content/uploads/2026/06/02_sine_hello.png" data-orig-size="826,354" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;,&quot;alt&quot;:&quot;&quot;}" data-image-title="02_sine_hello" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2026/06/02_sine_hello.png?w=750" src="https://thiebes.org/wp-content/uploads/2026/06/02_sine_hello.png" alt="" class="wp-image-1828" /></figure>



<p class="wp-block-paragraph">The layout is recomputed every time the figure draws, so the label stays glued to the curve when you resize the window or pan and zoom. It works on anything that draws on matplotlib, including seaborn and pandas plots.</p>


<div class="wp-block-code">
	<div class="cm-editor">
		<div class="cm-scroller">
			
<pre>
<code class="language-shell"><div class="cm-line">pip install curved-text</div><div class="cm-line"></div></code></pre>
		</div>
	</div>
</div>


<p class="wp-block-paragraph">The code is on <a href="https://github.com/thiebes/curved-text" target="_blank" rel="noopener">GitHub</a> with a gallery of examples, and it is MIT licensed. If you find it useful, or it breaks on something, let me know.</p>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://thiebes.org/2026/06/11/labeling-matplotlib-curves-without-a-legend/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1825</post-id>
		<media:content url="https://1.gravatar.com/avatar/4d21fc398045d7e3880e65fc88f22d46ff27b9308220f7dbdf058a350a2fc2b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thiebes</media:title>
		</media:content>

		<media:content url="https://thiebes.org/wp-content/uploads/2026/06/01_direct_labeling.png" medium="image" />

		<media:content url="https://thiebes.org/wp-content/uploads/2026/06/02_sine_hello.png" medium="image" />
	</item>
		<item>
		<title>Free Contrast-to-Noise Ratio Estimator Tool</title>
		<link>https://thiebes.org/2024/06/17/free-contrast-to-noise-ratio-estimator-tool/</link>
					<comments>https://thiebes.org/2024/06/17/free-contrast-to-noise-ratio-estimator-tool/#respond</comments>
		
		<dc:creator><![CDATA[Joseph J. Thiebes]]></dc:creator>
		<pubDate>Mon, 17 Jun 2024 16:50:02 +0000</pubDate>
				<category><![CDATA[Science]]></category>
		<category><![CDATA[accuracy]]></category>
		<category><![CDATA[chemistry]]></category>
		<category><![CDATA[climate-change]]></category>
		<category><![CDATA[contrast]]></category>
		<category><![CDATA[data-science]]></category>
		<category><![CDATA[diffusion]]></category>
		<category><![CDATA[gaussian]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[journal of chemical physics]]></category>
		<category><![CDATA[laser]]></category>
		<category><![CDATA[materials science]]></category>
		<category><![CDATA[measurements]]></category>
		<category><![CDATA[microscopy]]></category>
		<category><![CDATA[noise]]></category>
		<category><![CDATA[perovskite]]></category>
		<category><![CDATA[photoluminescence]]></category>
		<category><![CDATA[physics]]></category>
		<category><![CDATA[precision]]></category>
		<category><![CDATA[pump-probe]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[semiconductor]]></category>
		<category><![CDATA[zenodo]]></category>
		<guid isPermaLink="false">http://thiebes.org/?p=953</guid>

					<description><![CDATA[I am happy to announce this web application, designed to assist researchers working in pump-probe and time-resolved photoluminescence microscopy. This tool aims to make estimating the Contrast-to-Noise Ratio (CNR) for noisy 1-dimensional Gaussian profiles as simple and efficient as possible. It’s completely free to use. Contrast-to-Noise Estimator Why estimate CNR? Contrast-to-noise ratio (CNR) is a<a class="more-link" href="https://thiebes.org/2024/06/17/free-contrast-to-noise-ratio-estimator-tool/">Continue reading <span class="screen-reader-text">"Free Contrast-to-Noise Ratio Estimator&#160;Tool"</span></a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I am happy to announce <a href="https://dice-thiebes.pythonanywhere.com/">this web application</a>, designed to assist researchers working in pump-probe and time-resolved photoluminescence microscopy. This tool aims to make estimating the Contrast-to-Noise Ratio (CNR) for noisy 1-dimensional Gaussian profiles as simple and efficient as possible. It’s completely free to use.</p>



<div class="wp-block-media-text is-stacked-on-mobile" style="margin-right:var(--wp--preset--spacing--80);margin-left:var(--wp--preset--spacing--80);padding-right:0;padding-left:0;grid-template-columns:15% auto"><figure class="wp-block-media-text__media"><a href="https://dice-thiebes.pythonanywhere.com/"><img width="192" height="192" data-attachment-id="959" data-permalink="https://thiebes.org/2024/06/17/free-contrast-to-noise-ratio-estimator-tool/android-chrome-192x192-1/" data-orig-file="https://thiebes.org/wp-content/uploads/2024/06/android-chrome-192x192-1.png" data-orig-size="192,192" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="android-chrome-192&amp;#215;192-1" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2024/06/android-chrome-192x192-1.png?w=192" src="https://thiebes.org/wp-content/uploads/2024/06/android-chrome-192x192-1.png?w=192" alt="Contrast-to-Noise estimator logo, a symbol of a blue and gold circular target." class="wp-image-959 size-full" srcset="https://thiebes.org/wp-content/uploads/2024/06/android-chrome-192x192-1.png 192w, https://thiebes.org/wp-content/uploads/2024/06/android-chrome-192x192-1.png?w=150 150w" sizes="(max-width: 192px) 100vw, 192px" /></a></figure><div class="wp-block-media-text__content">
<p class="has-text-align-center wp-block-paragraph"><a href="https://dice-thiebes.pythonanywhere.com/"><strong>Contrast-to-Noise Estimator</strong></a></p>
</div></div>



<span id="more-953"></span>



<h3 class="wp-block-heading">Why estimate CNR?</h3>



<p class="wp-block-paragraph">Contrast-to-noise ratio (CNR) is a necessary metric in fields like pump-probe and time-resolved photoluminescence microscopy. It helps to understand the quality of your signal amidst the noise, providing <a href="https://pubs.aip.org/aip/jcp/article/160/12/124201/3278498/Quantifying-noise-effects-in-optical-measures-of">insights into the accuracy and precision of your diffusion measurements</a>. While designed with these applications in mind, the tool may also be useful for other purposes where CNR estimation is needed.</p>



<h3 class="wp-block-heading">What it does</h3>



<p class="wp-block-paragraph">The <a href="https://dice-thiebes.pythonanywhere.com/">CNR Estimator</a> is designed with user-friendliness in mind. Here’s what you can expect:</p>



<ul class="wp-block-list">
<li><strong>Easy Data Input</strong>: Enter your data as a list of comma-separated or space-separated values.</li>



<li><strong>Accurate Estimations</strong>: The app utilizes a robust algorithm to provide accurate CNR estimates based on your input data.</li>



<li><strong>Under the hood</strong>: I provide a detailed explanation of the estimation algorithm, ensuring you understand how the result is derived. You could even take this information to build your own script in another language using the information given. </li>



<li><strong>Instant Results</strong>: Get your CNR estimate within seconds.</li>
</ul>



<h3 class="wp-block-heading">How to use</h3>



<ol class="wp-block-list">
<li><strong>Prepare Your Data</strong>: Before <a href="https://dice-thiebes.pythonanywhere.com/">using the tool</a>, make sure to subtract your background (baseline) and normalize your data so the peak height is set to unity.</li>



<li><strong>Enter Your Data</strong>: Paste your noisy Gaussian profile as a list of comma-separated or space-separated values into the input field.</li>



<li><strong>Get Your Estimate</strong>: Click on the &#8220;Calculate CNR estimate&#8221; button to receive your CNR estimate instantly.</li>
</ol>



<h3 class="wp-block-heading">Get Involved</h3>



<p class="wp-block-paragraph">I am passionate about fostering a collaborative environment. Check out the open-source code for the full <a href="https://github.com/thiebes/DICE">DICE application on GitHub</a>. Your contributions and feedback are highly valued and will help improve the app further.</p>



<h3 class="wp-block-heading">Citations</h3>



<ul class="wp-block-list">
<li><strong>Zenodo Archive</strong>: Joseph J. Thiebes. (2023). thiebes/DICE. Zenodo. <a href="https://doi.org/10.5281/zenodo.10258191">https://doi.org/10.5281/zenodo.10258191</a></li>



<li><strong>Research Paper</strong>: Joseph J. Thiebes, Erik M. Grumstrup; Quantifying noise effects in optical measures of excited state transport. <em>J. Chem. Phys.</em> 28 March 2024; 160 (12): 124201. <a href="https://doi.org/10.1063/5.0190347">https://doi.org/10.1063/5.0190347</a></li>
</ul>



<h3 class="wp-block-heading">Contact Me</h3>



<p class="wp-block-paragraph">If you have any questions, suggestions, or feedback, please <a href="https://thiebes.org/contact/">don’t hesitate to let me know.</a> Your input is crucial in helping me make this tool even better.</p>



<p class="wp-block-paragraph">Happy Estimating!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://thiebes.org/2024/06/17/free-contrast-to-noise-ratio-estimator-tool/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">953</post-id>
		<media:content url="https://1.gravatar.com/avatar/4d21fc398045d7e3880e65fc88f22d46ff27b9308220f7dbdf058a350a2fc2b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thiebes</media:title>
		</media:content>

		<media:content url="https://thiebes.org/wp-content/uploads/2024/06/android-chrome-192x192-1.png?w=192" medium="image">
			<media:title type="html">Contrast-to-Noise estimator logo, a symbol of a blue and gold circular target.</media:title>
		</media:content>
	</item>
		<item>
		<title>Is There Any Escape From Noise?</title>
		<link>https://thiebes.org/2024/04/30/is-there-any-escape-from-noise/</link>
					<comments>https://thiebes.org/2024/04/30/is-there-any-escape-from-noise/#respond</comments>
		
		<dc:creator><![CDATA[Joseph J. Thiebes]]></dc:creator>
		<pubDate>Tue, 30 Apr 2024 23:08:49 +0000</pubDate>
				<category><![CDATA[Science]]></category>
		<category><![CDATA[academic]]></category>
		<category><![CDATA[Chemical Physics]]></category>
		<category><![CDATA[chemistry]]></category>
		<category><![CDATA[diffusion]]></category>
		<category><![CDATA[materials]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[noise]]></category>
		<category><![CDATA[open source software]]></category>
		<category><![CDATA[Optics]]></category>
		<category><![CDATA[perovskites]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[semiconductors]]></category>
		<category><![CDATA[simulation]]></category>
		<guid isPermaLink="false">http://thiebes.org/?p=904</guid>

					<description><![CDATA[Exciting news! Our latest research, now an Editor's Pick in The Journal of Chemical Physics, unveils how even moderate experimental noise can dramatically skew the accuracy of measuring excited state diffusion in materials like perovskites. Delve into our findings and explore our new open-source tools designed to refine these measurements. Join us in advancing the precision of diffusion measurements. ]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I’m thrilled to share that my inaugural first-author paper, “<a href="https://doi.org/10.1063/5.0190347">Quantifying Noise Effects in Optical Measures of Excited State Transport</a>,” has been published in <em>The Journal of Chemical Physics</em> and has been selected as an Editor’s Pick! [A free-to-read preprint is <a href="https://www.researchgate.net/publication/379196829_Quantifying_noise_effects_in_optical_measures_of_excited_state_transport">available here</a>.] This paper marks a significant milestone in my academic journey, and I couldn’t be more grateful to my research advisor, <a href="https://www.montana.edu/grumstruplab/">Erik M. Grumstrup</a>, as well as my labmates and spouse for their kind and generous support.</p>



<span id="more-904"></span>



<p class="wp-block-paragraph">In the course of my research, I painstakingly took optical measurements of excited state diffusion in perovskites and other semiconducting optoelectronic materials. I was often vexed by the question, “How much measurement noise is too much?” Finding little guidance in the literature, I set out to answer my question by running some two million simulations.</p>



<p class="wp-block-paragraph">In this paper, we systematically assess how noise impacts the accuracy of excited state diffusion estimates obtained through optical methods. Our findings reveal that even moderate levels of experimental noise can have significant effects and, in extreme cases, even lead to systematic overestimation of diffusion coefficients.</p>



<p class="wp-block-paragraph">By providing a comprehensive analysis and proposing experimental strategies to mitigate these effects, we hope to offer valuable guidelines for fellow researchers in the field.</p>



<p class="wp-block-paragraph">The paper also accompanies the release of <a href="http://doi.org/10.5281/zenodo.10258191">open-source software</a> and an <a href="https://dice-thiebes.pythonanywhere.com/">online web app</a> that offer researchers easy ways to assess their diffusion measurements, calculate the contrast-to-noise ratio in their data, and determine whether the noise is acceptable for their specific parameters and research goals.</p>



<p class="wp-block-paragraph">I invite you to read our paper, which I hope will help those interested in learning about the pivotal role of noise in optical measurements of excited state transport. </p>
]]></content:encoded>
					
					<wfw:commentRss>https://thiebes.org/2024/04/30/is-there-any-escape-from-noise/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">904</post-id>
		<media:thumbnail url="https://thiebes.org/wp-content/uploads/2024/04/quantifying-the-effects-of-noise-cover.png" />
		<media:content url="https://thiebes.org/wp-content/uploads/2024/04/quantifying-the-effects-of-noise-cover.png" medium="image">
			<media:title type="html">Quantifying the effects of noise cover</media:title>
		</media:content>

		<media:content url="https://1.gravatar.com/avatar/4d21fc398045d7e3880e65fc88f22d46ff27b9308220f7dbdf058a350a2fc2b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thiebes</media:title>
		</media:content>
	</item>
		<item>
		<title>The multilayered role of scientific posters</title>
		<link>https://thiebes.org/2023/08/18/reflecting-on-scientific-posters/</link>
					<comments>https://thiebes.org/2023/08/18/reflecting-on-scientific-posters/#respond</comments>
		
		<dc:creator><![CDATA[Joseph J. Thiebes]]></dc:creator>
		<pubDate>Sat, 19 Aug 2023 01:48:03 +0000</pubDate>
				<category><![CDATA[Science]]></category>
		<category><![CDATA[auditory processing]]></category>
		<category><![CDATA[chemistry]]></category>
		<category><![CDATA[inclusive research]]></category>
		<category><![CDATA[neurodiversity]]></category>
		<category><![CDATA[poster sessions]]></category>
		<category><![CDATA[public engagement]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[science education]]></category>
		<category><![CDATA[scientific communication]]></category>
		<category><![CDATA[visual aids]]></category>
		<category><![CDATA[writing]]></category>
		<guid isPermaLink="false">http://thiebes.org/2023/08/18/reflecting-on-scientific-posters/</guid>

					<description><![CDATA[A simple question from a 9-year-old at a major scientific conference sparks a reflection on the significance of scientific posters. Delve into how these visual aids cater to diverse cognitive preferences, making research findings more accessible and inclusive.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">At the <a href="https://www.acs.org/meetings/acs-meetings/fall-2023.html" target="_blank" rel="noreferrer noopener">2023 Fall ACS meeting</a>, as I stood proudly beside my scientific poster, my 9-year-old daughter, attending with me, posed an intriguing question: &#8220;Why do people need the poster if you&#8217;re explaining everything to them?&#8221; For a moment, I was taken aback. It&#8217;s the kind of pure, unfiltered inquiry that only children seem to master. Amid the hustle and bustle of a packed conference, I had to ponder the true purpose of my poster.</p>



<span id="more-725"></span>



<p class="wp-block-paragraph">On the surface, I explained to her, in a noisy and chaotic environment like this, it can be hard for many people to read. My verbal explanation offers clarity, but the poster acts as a supporting player, providing text and graphics that can help bridge gaps in understanding. As I reflected further on our conversation, I realized there’s a deeper layer to her question, especially considering the diverse ways in which people process information.</p>



<h3 class="wp-block-heading">The multifaceted role of scientific posters</h3>



<ol class="wp-block-list">
<li><strong>Visual aids for diverse minds</strong>: Different attendees process information differently. While some might find it challenging to concentrate on spoken words amidst the cacophony, others might struggle to visually process text in the same environment. A poster, paired with a verbal explanation, ensures that the research is accessible to as broad an audience as possible.</li>



<li><strong>A lasting impression</strong>: Even if attendees forget the minutiae of a verbal explanation, a well-designed poster can be memorable. It serves as a reference point, ensuring that the main concepts stick in the minds of those who see it.</li>



<li><strong>Engaging conversations</strong>: A striking poster can lure attendees, sparking discussions, collaborations, and fostering professional opportunities. It provides an organic conversation starter, ensuring that even those unfamiliar with the topic can engage in meaningful conversations.</li>



<li><strong>Support for the neurodivergent</strong>: The combined presentation mode caters especially to neurodivergent individuals. Those with auditory processing challenges might rely more heavily on the visual cues from the poster, while those who find visual processing overwhelming in such environments will benefit more from the verbal discourse.</li>
</ol>



<h3 class="wp-block-heading">The inclusive nature of poster sessions</h3>



<p class="wp-block-paragraph">Scientific poster sessions, with their unique blend of visual and verbal presentations, inherently cater to a wide array of cognitive processing preferences. They make complex scientific information accessible to both seasoned experts and curious newcomers. The inclusive nature of these sessions ensures that everyone, regardless of their information processing tendencies, can grasp the essence of the research being presented.</p>



<p class="wp-block-paragraph">In retrospect, my daughter&#8217;s innocent question highlighted a crucial aspect of scientific communication that often goes unspoken. It reminded me of the importance of making our work understandable and accessible to everyone. After all, isn&#8217;t that the ultimate goal of science – to share knowledge as widely and inclusively as possible?</p>



<h3 class="wp-block-heading">Making poster sessions more accessible</h3>



<p class="wp-block-paragraph">Accessibility in scientific communication is essential to ensure that knowledge reaches a broad audience, including those with disabilities. Poster sessions, a cornerstone of many academic conferences, can be enhanced to cater to diverse attendees. Here are some ways to make poster sessions more accessible:</p>



<p class="wp-block-paragraph"><strong>Accessible color schemes</strong>:</p>



<ul class="wp-block-list">
<li><strong>Contrast</strong>: Ensure there&#8217;s significant contrast between the background and the text. This can help those with visual impairments or color blindness. Tools like the <a href="https://webaim.org/resources/contrastchecker/">WebAIM Contrast Checker</a> can be used to ensure compliance with accessibility guidelines.</li>



<li><strong>Avoiding problematic colors</strong>: Red-green combinations can be problematic for those with color blindness. Opt for combinations like blue-yellow, which are generally more distinguishable.</li>



<li><strong>Desaturated colors</strong>: For graphs and charts, using colors that are less saturated can reduce visual fatigue and make elements distinct.</li>
</ul>



<p class="wp-block-paragraph"><strong>Large, readable fonts</strong>:</p>



<ul class="wp-block-list">
<li>Use bold fonts for headers and ensure the main content is in a font size that&#8217;s easily readable from a distance (I recommend 72 pt for titles, 60 pt for headers, 30 pt for body text, 18 pt for axis labels). This not only helps those with visual impairments but also allows attendees to skim the content quickly.</li>
</ul>



<p class="wp-block-paragraph"><strong>Clear layout and logical flow</strong>:</p>



<ul class="wp-block-list">
<li>Having a clear layout with numbered or arrowed sections ensures that attendees can easily follow the logical progression of your research.</li>
</ul>



<p class="wp-block-paragraph"><strong>Provide alternate formats</strong>:</p>



<ul class="wp-block-list">
<li>Offer QR codes linking to a digital version of the poster, which can be zoomed in on mobile devices or screen readers. This can be especially helpful for visually impaired attendees.</li>



<li>Having a few braille versions of your abstract or key points can cater to those who are blind.</li>
</ul>



<p class="wp-block-paragraph"><strong>Interactive elements</strong>:</p>



<ul class="wp-block-list">
<li>Incorporate tactile or 3D elements, especially for key figures or data representations, which can be particularly helpful for visually impaired attendees.</li>
</ul>



<p class="wp-block-paragraph"><strong>Quiet spaces</strong>:</p>



<ul class="wp-block-list">
<li>Consider setting aside a quiet area nearby for neurodivergent attendees or those with auditory processing disorders. This space can be used for more in-depth, one-on-one discussions about the poster content.</li>
</ul>



<p class="wp-block-paragraph"><strong>Training and awareness</strong>:</p>



<ul class="wp-block-list">
<li>Ensure that presenters are trained in accessibility best practices, including speaking clearly, avoiding jargon, and being patient with questions.</li>
</ul>



<p class="wp-block-paragraph">By incorporating these practices, we can make poster sessions not only more inclusive but also more effective in communicating scientific research to a wider audience.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://thiebes.org/2023/08/18/reflecting-on-scientific-posters/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">725</post-id>
		<media:thumbnail url="https://thiebes.org/wp-content/uploads/2023/08/img_3496.jpg" />
		<media:content url="https://thiebes.org/wp-content/uploads/2023/08/img_3496.jpg" medium="image">
			<media:title type="html">img_3496</media:title>
		</media:content>

		<media:content url="https://1.gravatar.com/avatar/4d21fc398045d7e3880e65fc88f22d46ff27b9308220f7dbdf058a350a2fc2b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thiebes</media:title>
		</media:content>
	</item>
		<item>
		<title>Against Parkinson&#8217;s Law: Reimagining Efficiency for Greater Innovation and Happiness</title>
		<link>https://thiebes.org/2023/06/26/against-parkinsons-law-reimagining-efficiency-for-greater-innovation-and-happiness/</link>
					<comments>https://thiebes.org/2023/06/26/against-parkinsons-law-reimagining-efficiency-for-greater-innovation-and-happiness/#respond</comments>
		
		<dc:creator><![CDATA[Joseph J. Thiebes]]></dc:creator>
		<pubDate>Mon, 26 Jun 2023 23:01:44 +0000</pubDate>
				<category><![CDATA[Essays]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[business productivity]]></category>
		<category><![CDATA[corporate philosophy]]></category>
		<category><![CDATA[creativity at workplace]]></category>
		<category><![CDATA[economics]]></category>
		<category><![CDATA[efficiency in tech companies]]></category>
		<category><![CDATA[employee benefits]]></category>
		<category><![CDATA[employee happiness]]></category>
		<category><![CDATA[employee wellbeing]]></category>
		<category><![CDATA[innovation]]></category>
		<category><![CDATA[job satisfaction]]></category>
		<category><![CDATA[job security]]></category>
		<category><![CDATA[layoffs and innovation]]></category>
		<category><![CDATA[long-term business success]]></category>
		<category><![CDATA[organizational efficiency]]></category>
		<category><![CDATA[Parkinson&#039;s Law]]></category>
		<category><![CDATA[philosophy]]></category>
		<category><![CDATA[tech industry workforce]]></category>
		<category><![CDATA[work-life balance]]></category>
		<category><![CDATA[workplace culture]]></category>
		<category><![CDATA[writing]]></category>
		<guid isPermaLink="false">http://thiebes.org/?p=718</guid>

					<description><![CDATA[Is the constant quest for efficiency stifling innovation and happiness in your tech company? Discover a refreshing perspective on Parkinson's Law that advocates for a balance of work, play, and creativity. Let's rethink efficiency for a future of groundbreaking ideas, satisfied employees, and long-term business success. Dive into my latest essay to learn more.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">In modern corporate management, a controversial idea has reemerged, Parkinson&#8217;s Law. Proponents argue that the Law suggests that as organizations grow, individual workers tend to fill their days with less critical tasks or &#8220;busy work,&#8221; providing a rationale for tech companies to lay off significant portions of their engineering staff. They posit that by doing so, these firms will reap substantial gains in efficiency. However, this fascinating perspective contradicts my philosophical convictions about human creativity, innovation, and well-being.</p>



<span id="more-718"></span>



<p class="wp-block-paragraph">Parkinson&#8217;s Law taps into the zeitgeist of an obsession with constant productivity and an aversion to &#8220;wasted&#8221; time. But this dogged pursuit of ceaseless efficiency inadvertently breeds an unhealthy work culture. It fosters a sterile environment, inimical to innovation. The pressure to always be efficient leaves workers locked in a cycle of performing mundane tasks under the illusion of being busy and, ironically, less productive overall.</p>



<p class="wp-block-paragraph">Take a look at this tweet from Andrew Wilkinson:</p>



<figure class="wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter"><div class="wp-block-embed__wrapper">
<div class="embed-twitter"><blockquote class="twitter-tweet" data-width="550" data-dnt="true"><p lang="en" dir="ltr">Elon Musk fired 6,500 employees at Twitter.<br><br>A little birdie told me it&#39;s down to:<br><br>&#8211; 2 designers<br>&#8211; 6 iOS developers<br>&#8211; 20 web developers<br>&#8211; Around 1,400 sales and operations people<br><br>How is it possible that we are still using this website?<br><br>Two words: <br><br>Parkinson&#39;s Law.<br><br>Have you…</p>&mdash; Andrew Wilkinson (@awilkinson) <a href="https://twitter.com/awilkinson/status/1673099604345389056?ref_src=twsrc%5Etfw">June 25, 2023</a></blockquote><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script></div>
</div></figure>



<p class="wp-block-paragraph">Moreover, humans are not machines; we crave meaning and purpose in our activities. Most individuals aspire to contribute significantly to their organizations rather than merely appear busy. The constant cycle of &#8220;busywork&#8221; erodes job satisfaction, leading to a less engaged workforce, a phenomenon detrimental to any organization&#8217;s long-term health.</p>



<p class="wp-block-paragraph">Layoffs, often the short-sighted response to perceived inefficiencies, can inflict lasting damage on a company. While they might lead to temporary financial gains, these come at a high price. They diminish the company&#8217;s capacity, suppress its innovative potential, and have long-lasting, often overlooked impacts on the morale of remaining staff. This approach resembles a pyrrhic victory; the bottom line may momentarily improve, but the capacity for breakthroughs and market dominance suffers.</p>



<p class="wp-block-paragraph">Instead of succumbing to Parkinson&#8217;s Law&#8217;s austerity, I argue for a novel approach to work and efficiency that fosters creativity, innovation, and happiness. This method involves relinquishing the relentless focus on efficiency and allowing employees to play, rest, and socialize once their essential tasks are done.</p>



<p class="wp-block-paragraph">Play is the cradle of creativity and a wellspring of innovation. Companies like Google and 3M have understood this, implementing policies like the &#8220;20% Time&#8221; or the &#8220;15% rule,&#8221; allowing employees to spend a fraction of their working hours on passion projects. These policies have led to groundbreaking innovations like Gmail and Post-it Notes.</p>



<p class="wp-block-paragraph">Providing a sense of job security, coupled with generous benefits, can inspire loyalty and motivation. Employees who are confident about their place within the company and who perceive their employers as caring about their well-being are more likely to put in the discretionary effort and engage in collaborative innovation that often leads to groundbreaking ideas.</p>



<p class="wp-block-paragraph">While this approach may take time to improve the bottom line, it invests in the company&#8217;s long-term success. It creates an environment where market dominance and historic innovation can flourish. It positions the company as a desirable workplace, attracting top talent and fostering a culture of creativity and collaboration.</p>



<p class="wp-block-paragraph">Parkinson&#8217;s Law presumes that time not spent on designated work equates to wasted potential. This perspective is too narrow. By allowing workers to engage in non-task-oriented activities, we enable serendipitous insights and the cross-pollination of ideas—elements often leading to the most innovative breakthroughs. Instead of focusing on constant productivity, we should prioritize the quality of work and the health of our workers. We will find that innovation, happiness, and even efficiency will flourish in such an environment.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://thiebes.org/2023/06/26/against-parkinsons-law-reimagining-efficiency-for-greater-innovation-and-happiness/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">718</post-id>
		<media:thumbnail url="https://thiebes.org/wp-content/uploads/2023/06/work-is-play.jpeg" />
		<media:content url="https://thiebes.org/wp-content/uploads/2023/06/work-is-play.jpeg" medium="image">
			<media:title type="html">Kids playing in professions</media:title>
		</media:content>

		<media:content url="https://1.gravatar.com/avatar/4d21fc398045d7e3880e65fc88f22d46ff27b9308220f7dbdf058a350a2fc2b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thiebes</media:title>
		</media:content>
	</item>
		<item>
		<title>The etymology and meaning of methyl, ethyl, propyl, butyl</title>
		<link>https://thiebes.org/2023/04/09/the-etymology-and-meaning-of-methyl-ethyl-propyl-butyl/</link>
					<comments>https://thiebes.org/2023/04/09/the-etymology-and-meaning-of-methyl-ethyl-propyl-butyl/#respond</comments>
		
		<dc:creator><![CDATA[Joseph J. Thiebes]]></dc:creator>
		<pubDate>Sun, 09 Apr 2023 19:54:34 +0000</pubDate>
				<category><![CDATA[Science]]></category>
		<category><![CDATA[alcohol]]></category>
		<category><![CDATA[butane]]></category>
		<category><![CDATA[butanol]]></category>
		<category><![CDATA[butter]]></category>
		<category><![CDATA[butyric acid]]></category>
		<category><![CDATA[chemistry]]></category>
		<category><![CDATA[ether]]></category>
		<category><![CDATA[ethyl]]></category>
		<category><![CDATA[etymology]]></category>
		<category><![CDATA[fatty acid]]></category>
		<category><![CDATA[mead]]></category>
		<category><![CDATA[methanol]]></category>
		<category><![CDATA[methyl]]></category>
		<category><![CDATA[propane]]></category>
		<category><![CDATA[propanol]]></category>
		<category><![CDATA[propionic acid]]></category>
		<category><![CDATA[wine]]></category>
		<guid isPermaLink="false">http://thiebes.org/?p=683</guid>

					<description><![CDATA[Chemistry study often feels like learning a new language due to its extensive vocabulary. Understanding word origins can greatly improve memory retention. Early chemistry nomenclature includes memorizing roots like methyl, ethyl, propyl, and butyl, representing 1 to 4 carbon chains in functional groups. This article offers a thorough explanation for those studying or interested in<a class="more-link" href="https://thiebes.org/2023/04/09/the-etymology-and-meaning-of-methyl-ethyl-propyl-butyl/">Continue reading <span class="screen-reader-text">"The etymology and meaning of methyl, ethyl, propyl,&#160;butyl"</span></a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Chemistry study often feels like learning a new language due to its extensive vocabulary. Understanding word origins can greatly improve memory retention. Early chemistry nomenclature includes memorizing roots like methyl, ethyl, propyl, and butyl, representing 1 to 4 carbon chains in functional groups. This article offers a thorough explanation for those studying or interested in the origins of these roots. For more information, including an explanation of the diagrams, see Structure of Organic Molecules.</p>



<span id="more-683"></span>



<h2 class="wp-block-heading">Methyl: Unveiling Mead and Methanol</h2>


<div class="wp-block-image">
<figure class="alignright size-medium"><img width="82" height="300" data-attachment-id="682" data-permalink="https://thiebes.org/2023/04/09/the-etymology-and-meaning-of-methyl-ethyl-propyl-butyl/img_2743/" data-orig-file="https://thiebes.org/wp-content/uploads/2023/04/img_2743.jpg" data-orig-size="131,480" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_2743" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2023/04/img_2743.jpg?w=131" src="https://thiebes.org/wp-content/uploads/2023/04/img_2743.jpg?w=82" alt="" class="wp-image-682" srcset="https://thiebes.org/wp-content/uploads/2023/04/img_2743.jpg?w=82 82w, https://thiebes.org/wp-content/uploads/2023/04/img_2743.jpg 131w" sizes="(max-width: 82px) 100vw, 82px" /><figcaption class="wp-element-caption">Different ways of representing a methyl group (highlighted in<strong> </strong>blue)</figcaption></figure>
</div>


<p class="wp-block-paragraph">The Greek root “μέθυ-” (methy-) meaning “wine” gives us the words “mead” as well as “methyl,” the latter incorporating “-ὕλη” (hylē) meaning “wood” to give us the name of methyl alcohol that was first synthesized by destructive distillation of wood. “Methy-“ is today incorporated in chemical nomenclature to refer to a single carbon functional group. </p>



<p class="wp-block-paragraph">(Note well, however, that methyl alcohol is <em>not</em> the kind of alcohol that is found in wine, and you should definitely never drink it because if it doesn’t kill you, it will blind you.)</p>



<h2 class="wp-block-heading">Ethyl: Exploring Ether and Ethanol</h2>



<figure class="wp-block-image size-large"><img width="1024" height="535" data-attachment-id="685" data-permalink="https://thiebes.org/2023/04/09/the-etymology-and-meaning-of-methyl-ethyl-propyl-butyl/img_2745/" data-orig-file="https://thiebes.org/wp-content/uploads/2023/04/img_2745.png" data-orig-size="1024,535" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="img_2745" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2023/04/img_2745.png?w=750" src="https://thiebes.org/wp-content/uploads/2023/04/img_2745.png?w=1024" alt="" class="wp-image-685" srcset="https://thiebes.org/wp-content/uploads/2023/04/img_2745.png 1024w, https://thiebes.org/wp-content/uploads/2023/04/img_2745.png?w=150 150w, https://thiebes.org/wp-content/uploads/2023/04/img_2745.png?w=300 300w, https://thiebes.org/wp-content/uploads/2023/04/img_2745.png?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Ethyl group (highlighted<strong> </strong>blue) as part of a molecule, as the ethyl radical, and in the compounds ethanol, bromoethane, ethyl acetate, and ethyl methyl ether.</figcaption></figure>



<p class="wp-block-paragraph">The term “ethyl” originates from the Greek root “αἰθήρ” (aithēr), meaning “upper air” or “ether.” In ethyl, propyl, and butyl, the “-yl” suffix, which initially referred to wood in “methyl,” has evolved to signify “building stuff” or “raw material” in these terms. In chemical nomenclature, “ethyl” represents a two-carbon functional group.</p>



<h2 class="wp-block-heading">Propyl: Propane and Propionic Acid &#8211; The First Fatty Acid Connection</h2>



<figure class="wp-block-image size-large"><img loading="lazy" width="320" height="95" data-attachment-id="689" data-permalink="https://thiebes.org/2023/04/09/the-etymology-and-meaning-of-methyl-ethyl-propyl-butyl/img_2746/" data-orig-file="https://thiebes.org/wp-content/uploads/2023/04/img_2746.jpg" data-orig-size="320,95" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_2746" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2023/04/img_2746.jpg?w=320" src="https://thiebes.org/wp-content/uploads/2023/04/img_2746.jpg?w=320" alt="" class="wp-image-689" srcset="https://thiebes.org/wp-content/uploads/2023/04/img_2746.jpg 320w, https://thiebes.org/wp-content/uploads/2023/04/img_2746.jpg?w=150 150w, https://thiebes.org/wp-content/uploads/2023/04/img_2746.jpg?w=300 300w" sizes="(max-width: 320px) 100vw, 320px" /><figcaption class="wp-element-caption">Chemical structure of propyl groups. From left to right: propyl, isopropyl (or 1-methylethyl), and cyclopropyl.</figcaption></figure>



<p class="wp-block-paragraph">The word “propyl” is derived from propionic acid, which comes from the French word “propionique.” The Greek roots of propionic are “πρῶτος” (prōtos), meaning “first,” and “πίων” (piōn), meaning “fat.” Propionic acid is considered the first fatty acid because it is the smallest in the series of fatty acids. The name “propane,” a three-carbon alkane, also originates from propionic acid. Following the same naming pattern as “ethyl,” “propyl” is used to denote a three-carbon functional group in modern chemical nomenclature.</p>



<h2 class="wp-block-heading">Butyl: Tracing Butane to Butter</h2>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="798" data-attachment-id="692" data-permalink="https://thiebes.org/2023/04/09/the-etymology-and-meaning-of-methyl-ethyl-propyl-butyl/img_2747/" data-orig-file="https://thiebes.org/wp-content/uploads/2023/04/img_2747.jpg" data-orig-size="1647,1284" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_2747" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2023/04/img_2747.jpg?w=750" src="https://thiebes.org/wp-content/uploads/2023/04/img_2747.jpg?w=1024" alt="" class="wp-image-692" srcset="https://thiebes.org/wp-content/uploads/2023/04/img_2747.jpg?w=1024 1024w, https://thiebes.org/wp-content/uploads/2023/04/img_2747.jpg?w=150 150w, https://thiebes.org/wp-content/uploads/2023/04/img_2747.jpg?w=300 300w, https://thiebes.org/wp-content/uploads/2023/04/img_2747.jpg?w=768 768w, https://thiebes.org/wp-content/uploads/2023/04/img_2747.jpg?w=1440 1440w, https://thiebes.org/wp-content/uploads/2023/04/img_2747.jpg 1647w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Four representations of the chemical structure of butane</figcaption></figure>



<p class="wp-block-paragraph">The term &#8220;butyl&#8221; is derived from butyric acid, which is found in fermented and rancid butter, and has its origins in the Latin word &#8220;butyrum&#8221; or &#8220;būtӯrum,&#8221; meaning &#8220;butter.&#8221; Contrasting the Greek roots of ethyl and propyl, the root for butyl is Latin. The name &#8220;butane,&#8221; a four-carbon alkane, is also derived from the same source. Adhering to the established naming convention, &#8220;butyl&#8221; is incorporated into chemical nomenclature to indicate a four-carbon functional group.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://thiebes.org/2023/04/09/the-etymology-and-meaning-of-methyl-ethyl-propyl-butyl/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">683</post-id>
		<media:thumbnail url="https://thiebes.org/wp-content/uploads/2023/04/img_2747.jpg" />
		<media:content url="https://thiebes.org/wp-content/uploads/2023/04/img_2747.jpg" medium="image">
			<media:title type="html">img_2747</media:title>
		</media:content>

		<media:content url="https://1.gravatar.com/avatar/4d21fc398045d7e3880e65fc88f22d46ff27b9308220f7dbdf058a350a2fc2b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thiebes</media:title>
		</media:content>

		<media:content url="https://thiebes.org/wp-content/uploads/2023/04/img_2743.jpg?w=82" medium="image" />

		<media:content url="https://thiebes.org/wp-content/uploads/2023/04/img_2745.png?w=1024" medium="image" />

		<media:content url="https://thiebes.org/wp-content/uploads/2023/04/img_2746.jpg?w=320" medium="image" />

		<media:content url="https://thiebes.org/wp-content/uploads/2023/04/img_2747.jpg?w=1024" medium="image" />
	</item>
		<item>
		<title>Chocolate chip whole wheat flax muffins with hemp hearts</title>
		<link>https://thiebes.org/2023/03/25/chocolate-chip-whole-wheat-flax-muffins-with-hemp-hearts/</link>
					<comments>https://thiebes.org/2023/03/25/chocolate-chip-whole-wheat-flax-muffins-with-hemp-hearts/#comments</comments>
		
		<dc:creator><![CDATA[Joseph J. Thiebes]]></dc:creator>
		<pubDate>Sat, 25 Mar 2023 22:31:30 +0000</pubDate>
				<category><![CDATA[Living]]></category>
		<category><![CDATA[baking]]></category>
		<category><![CDATA[breakfast]]></category>
		<category><![CDATA[chocolate chip]]></category>
		<category><![CDATA[cooking]]></category>
		<category><![CDATA[flaxseed]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[hemp]]></category>
		<category><![CDATA[muffins]]></category>
		<category><![CDATA[recipe]]></category>
		<category><![CDATA[snacks]]></category>
		<category><![CDATA[whole wheat]]></category>
		<guid isPermaLink="false">http://thiebes.org/?p=655</guid>

					<description><![CDATA[Yield: approximately 24 large muffins or 48 mini muffins Ingredients: Instructions: Serve and enjoy these delicious and nutritious whole wheat muffins with flax, hemp heart, and chocolate chips! They&#8217;re perfect for breakfast or as a snack any time of the day. I made them for my kids and they were a big hit.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Yield: approximately 24 large muffins or 48 mini muffins </p>



<span id="more-655"></span>



<h2 class="wp-block-heading">Ingredients:</h2>



<ul class="wp-block-list">
<li>3 cups (360 g) whole wheat flour</li>



<li>1 cup (120 g) ground flaxseed</li>



<li>1/2 cup (80 g) hemp hearts (or chopped nuts)</li>



<li>1 tsp (5 g) course salt</li>



<li>4 tsp (16 g) baking powder</li>



<li>1 cup (250 g) unsweetened applesauce</li>



<li>1 cup (340 g) honey (see below for substitution notes)</li>



<li>1/2 cup (113 g) melted unsalted butter</li>



<li>4 large eggs</li>



<li>2 tsp (10 mL) vanilla extract (or double that, whatever)</li>



<li>1 cup (240 mL) milk (or milk alternative)</li>



<li>12 oz. (340 g) chocolate chips</li>
</ul>



<p class="wp-block-paragraph">Instructions:</p>



<ol class="wp-block-list">
<li>Preheat your oven to 350°F (175°C) and line two 12-cup muffin tins with paper liners or grease the muffin cups.</li>



<li>In a large bowl, whisk together the whole wheat flour, ground flaxseed, hemp hearts, salt, baking powder, and baking soda.</li>



<li>In another bowl, mix the unsweetened applesauce, honey, melted butter, eggs, vanilla extract, and milk until well combined.
<ul class="wp-block-list">
<li><em>Honey can be substituted with equal quantity of syrup-type sweeteners like maple syrup or molasses. Dry sweeteners like granulated sugar may require some experimentation. </em></li>
</ul>
</li>



<li>Pour the wet ingredients into the dry ingredients and gently mix until just combined. Be careful not to overmix the batter, as this can make the muffins dense.</li>



<li>Fold in the chocolate chips.</li>



<li>Spoon the batter into the prepared muffin cups, filling each about 2/3 full.</li>



<li>Bake for 20-25 minutes, or until a toothpick inserted in the center of a muffin comes out clean.</li>



<li>Remove the muffins from the oven and let them cool in the tin for about 5 minutes before transferring them to a wire rack to cool completely.</li>
</ol>



<p class="wp-block-paragraph">Serve and enjoy these delicious and nutritious whole wheat muffins with flax, hemp heart, and chocolate chips! They&#8217;re perfect for breakfast or as a snack any time of the day. I made them for my kids and they were a big hit. </p>



<figure class="wp-block-image size-large"><img loading="lazy" width="805" height="1024" data-attachment-id="653" data-permalink="https://thiebes.org/2023/03/25/chocolate-chip-whole-wheat-flax-muffins-with-hemp-hearts/img_2700/" data-orig-file="https://thiebes.org/wp-content/uploads/2023/03/img_2700.jpg" data-orig-size="2152,2739" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;1.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone 13 Pro Max&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1679759375&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.7&quot;,&quot;iso&quot;:&quot;250&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_2700" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2023/03/img_2700.jpg?w=750" src="https://thiebes.org/wp-content/uploads/2023/03/img_2700.jpg?w=805" alt="" class="wp-image-653" srcset="https://thiebes.org/wp-content/uploads/2023/03/img_2700.jpg?w=805 805w, https://thiebes.org/wp-content/uploads/2023/03/img_2700.jpg?w=1610 1610w, https://thiebes.org/wp-content/uploads/2023/03/img_2700.jpg?w=118 118w, https://thiebes.org/wp-content/uploads/2023/03/img_2700.jpg?w=236 236w, https://thiebes.org/wp-content/uploads/2023/03/img_2700.jpg?w=768 768w, https://thiebes.org/wp-content/uploads/2023/03/img_2700.jpg?w=1440 1440w" sizes="(max-width: 805px) 100vw, 805px" /></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://thiebes.org/2023/03/25/chocolate-chip-whole-wheat-flax-muffins-with-hemp-hearts/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">655</post-id>
		<media:thumbnail url="https://thiebes.org/wp-content/uploads/2023/03/img_2700-1.jpg" />
		<media:content url="https://thiebes.org/wp-content/uploads/2023/03/img_2700-1.jpg" medium="image">
			<media:title type="html">img_2700-1</media:title>
		</media:content>

		<media:content url="https://1.gravatar.com/avatar/4d21fc398045d7e3880e65fc88f22d46ff27b9308220f7dbdf058a350a2fc2b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thiebes</media:title>
		</media:content>

		<media:content url="https://thiebes.org/wp-content/uploads/2023/03/img_2700.jpg?w=805" medium="image" />
	</item>
		<item>
		<title>Penrose Tessellation Cookie Cutters</title>
		<link>https://thiebes.org/2023/01/02/penrose-tessellation-cookie-cutters/</link>
					<comments>https://thiebes.org/2023/01/02/penrose-tessellation-cookie-cutters/#respond</comments>
		
		<dc:creator><![CDATA[Joseph J. Thiebes]]></dc:creator>
		<pubDate>Mon, 02 Jan 2023 18:19:30 +0000</pubDate>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Living]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[3d modeling]]></category>
		<category><![CDATA[3d printing]]></category>
		<category><![CDATA[baking]]></category>
		<category><![CDATA[chemistry]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[mathematics]]></category>
		<category><![CDATA[Penrose tiling]]></category>
		<category><![CDATA[physica]]></category>
		<category><![CDATA[recipe]]></category>
		<category><![CDATA[Roger Penrose]]></category>
		<category><![CDATA[symmetry]]></category>
		<category><![CDATA[tessellation]]></category>
		<category><![CDATA[tiles]]></category>
		<guid isPermaLink="false">http://thiebes.org/?p=594</guid>

					<description><![CDATA[Over the holiday break, I took a little time for a side quest that engaged my creativity while involving mathematics, 3D modeling, and baking. I designed a pattern based on Penrose tiles and made it into cookies. I didn&#8217;t have it planned out at the outset, and instead followed my inspiration from one step to<a class="more-link" href="https://thiebes.org/2023/01/02/penrose-tessellation-cookie-cutters/">Continue reading <span class="screen-reader-text">"Penrose Tessellation Cookie&#160;Cutters"</span></a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Over the holiday break, I took a little time for a side quest that engaged my creativity while involving mathematics, 3D modeling, and baking. I designed a pattern based on Penrose tiles and made it into cookies.</p>



<span id="more-594"></span>



<p class="wp-block-paragraph">I didn&#8217;t have it planned out at the outset, and instead followed my inspiration from one step to the next. First, I made an original design for a set of Penrose tiles with a more organic appearance. Then, I created 3D models of the tiles and extended the model to be a cookie cutter. Finally, I printed the cookie cutters and baked cookies that tesselate nonperiodically in a pattern with fivefold rotational symmetry.</p>



<p class="wp-block-paragraph">Do you have a 3D printer? You can download and print them yourself at these links:</p>



<ul class="wp-block-list">
<li><a href="https://www.printables.com/model/348204-pretty-styling-penrose-tiling" target="_blank" rel="noreferrer noopener">Pretty stylin&#8217; Penrose tiling</a></li>



<li><a href="https://www.printables.com/model/354970-pretty-penrose-tessellation-cookie-cutters" target="_blank" rel="noreferrer noopener">Pretty Penrose cookie cutters</a></li>
</ul>



<h2 class="wp-block-heading">About Penrose tiling</h2>



<p class="wp-block-paragraph">Penrose tiling is a non-periodic tessellation using two shapes to create intricate and interlocking designs. There are a few Penrose tile types, with the “P2” type being the most commonly discussed. The two tile shapes in P2 are often called “kites” and “darts.” The tiles are arranged in a pattern that is not periodic but can appear to be when viewed from a distance, leading it to be called a “quasiperiodic” pattern.&nbsp;</p>



<p class="wp-block-paragraph">Penrose tilings were first discovered/invented by Nobel Prize laureate physicist and mathematician&nbsp;<a href="https://en.wikipedia.org/wiki/Roger_Penrose" target="_blank" rel="noreferrer noopener">Roger Penrose</a>&nbsp;in the 1970s. The patterns have been significantly studied in the fields of mathematics and physics, leading to a better understanding of physical materials that form quasicrystals.&nbsp;<a href="https://en.wikipedia.org/wiki/Penrose_tiling" target="_blank" rel="noreferrer noopener">Learn more about Penrose tiling at Wikipedia.&nbsp;</a></p>



<p class="wp-block-paragraph">There are also a lot of great videos about Penrose tiling. I think the best one out there is&nbsp;<a rel="noreferrer noopener" href="https://youtu.be/QTrM-UVcgBY" target="_blank">this one by Numberphile</a>. But there are many others, including&nbsp;<a rel="noreferrer noopener" href="https://youtu.be/-eqdj63nEr4" target="_blank">this one by MinutePhysics</a>, and&nbsp;<a rel="noreferrer noopener" href="https://youtu.be/48sCx-wBs34" target="_blank">this one by Veritasium</a>.</p>



<h2 class="wp-block-heading">About my version of Penrose tiles</h2>



<p class="wp-block-paragraph">This rendition is intended to give a natural appearance to the pattern so that it might suggest a wreath or cluster of plants.&nbsp;</p>



<p class="wp-block-paragraph">The resulting tiles no longer resemble “kites” and “darts,” so I have been referring to these as “birds” and “cats,” respectively, although I didn&#8217;t plan it that way.&nbsp;</p>



<p class="wp-block-paragraph">The diagram below shows how I modified the kites and darts by replacing their straight lines with circular arcs.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large is-resized"><a href="https://thiebes.org/wp-content/uploads/2023/01/caatdart-birdkite.png"><img loading="lazy" data-attachment-id="600" data-permalink="https://thiebes.org/2023/01/02/penrose-tessellation-cookie-cutters/caatdart-birdkite/" data-orig-file="https://thiebes.org/wp-content/uploads/2023/01/caatdart-birdkite.png" data-orig-size="954,522" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="caatdart-birdkite" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2023/01/caatdart-birdkite.png?w=750" src="https://thiebes.org/wp-content/uploads/2023/01/caatdart-birdkite.png?w=954" alt="" class="wp-image-600" width="581" height="317" srcset="https://thiebes.org/wp-content/uploads/2023/01/caatdart-birdkite.png?w=581 581w, https://thiebes.org/wp-content/uploads/2023/01/caatdart-birdkite.png?w=150 150w, https://thiebes.org/wp-content/uploads/2023/01/caatdart-birdkite.png?w=300 300w, https://thiebes.org/wp-content/uploads/2023/01/caatdart-birdkite.png?w=768 768w, https://thiebes.org/wp-content/uploads/2023/01/caatdart-birdkite.png 954w" sizes="(max-width: 581px) 100vw, 581px" /></a><figcaption class="wp-element-caption"><em>Cat and bird Penrose tiles by Joseph Thiebes, with superimposed&nbsp;<a rel="noreferrer noopener" href="https://commons.wikimedia.org/w/index.php?curid=30611873" target="_blank">kite and dart diagrams by Geometry guy at English Wikipedia, CC BY-SA 3.0</a></em></figcaption></figure>
</div>


<p class="wp-block-paragraph">This design includes arcs that enforce the non-periodic pattern. The chord lengths of the arcs follow the&nbsp;<a rel="noreferrer noopener" href="https://en.wikipedia.org/wiki/Golden_ratio" target="_blank">Golden Ratio</a>:</p>


<div class="wp-block-image">
<figure class="aligncenter size-large is-resized"><a href="https://thiebes.org/wp-content/uploads/2023/01/golden-ratio.png"><img loading="lazy" data-attachment-id="602" data-permalink="https://thiebes.org/2023/01/02/penrose-tessellation-cookie-cutters/golden-ratio/" data-orig-file="https://thiebes.org/wp-content/uploads/2023/01/golden-ratio.png" data-orig-size="1160,652" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="golden-ratio" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2023/01/golden-ratio.png?w=750" src="https://thiebes.org/wp-content/uploads/2023/01/golden-ratio.png?w=1024" alt="" class="wp-image-602" width="655" height="368" srcset="https://thiebes.org/wp-content/uploads/2023/01/golden-ratio.png?w=1024 1024w, https://thiebes.org/wp-content/uploads/2023/01/golden-ratio.png?w=655 655w, https://thiebes.org/wp-content/uploads/2023/01/golden-ratio.png?w=150 150w, https://thiebes.org/wp-content/uploads/2023/01/golden-ratio.png?w=300 300w, https://thiebes.org/wp-content/uploads/2023/01/golden-ratio.png?w=768 768w, https://thiebes.org/wp-content/uploads/2023/01/golden-ratio.png 1160w" sizes="(max-width: 655px) 100vw, 655px" /></a></figure>
</div>


<p class="wp-block-paragraph">There are seven “starting patterns” that you can use to begin a tiling design, shown below. If you start with the “star” or “sun” central patterns, the resulting design will not only be non-periodic, but it will also have fivefold rotational symmetry.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large is-resized"><a href="https://thiebes.org/wp-content/uploads/2023/01/a-d-j-q-k-sun-star.png"><img loading="lazy" data-attachment-id="604" data-permalink="https://thiebes.org/2023/01/02/penrose-tessellation-cookie-cutters/a-d-j-q-k-sun-star/" data-orig-file="https://thiebes.org/wp-content/uploads/2023/01/a-d-j-q-k-sun-star.png" data-orig-size="1080,1350" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="a-d-j-q-k-sun-star" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2023/01/a-d-j-q-k-sun-star.png?w=750" src="https://thiebes.org/wp-content/uploads/2023/01/a-d-j-q-k-sun-star.png?w=819" alt="" class="wp-image-604" width="508" height="635" srcset="https://thiebes.org/wp-content/uploads/2023/01/a-d-j-q-k-sun-star.png?w=819 819w, https://thiebes.org/wp-content/uploads/2023/01/a-d-j-q-k-sun-star.png?w=508 508w, https://thiebes.org/wp-content/uploads/2023/01/a-d-j-q-k-sun-star.png?w=1016 1016w, https://thiebes.org/wp-content/uploads/2023/01/a-d-j-q-k-sun-star.png?w=120 120w, https://thiebes.org/wp-content/uploads/2023/01/a-d-j-q-k-sun-star.png?w=240 240w, https://thiebes.org/wp-content/uploads/2023/01/a-d-j-q-k-sun-star.png?w=768 768w" sizes="(max-width: 508px) 100vw, 508px" /></a><figcaption class="wp-element-caption"><em>The seven starting patterns or motifs in Penrose P2 tiling. </em></figcaption></figure>
</div>


<figure data-carousel-extra='{&quot;blog_id&quot;:54922359,&quot;permalink&quot;:&quot;https://thiebes.org/2023/01/02/penrose-tessellation-cookie-cutters/&quot;}'  class="wp-block-gallery aligncenter has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-large"><a href="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-star.png"><img loading="lazy" width="824" height="828" data-attachment-id="608" data-permalink="https://thiebes.org/2023/01/02/penrose-tessellation-cookie-cutters/pretty-styling-penrose-tiling-star/" data-orig-file="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-star.png" data-orig-size="824,828" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="pretty-styling-penrose-tiling-star" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-star.png?w=750" data-id="608" src="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-star.png?w=824" alt="" class="wp-image-608" srcset="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-star.png 824w, https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-star.png?w=150 150w, https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-star.png?w=300 300w, https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-star.png?w=768 768w" sizes="(max-width: 824px) 100vw, 824px" /></a><figcaption class="wp-element-caption">star pattern</figcaption></figure>



<figure class="wp-block-image size-large"><a href="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling.png"><img loading="lazy" width="890" height="852" data-attachment-id="609" data-permalink="https://thiebes.org/2023/01/02/penrose-tessellation-cookie-cutters/pretty-styling-penrose-tiling/" data-orig-file="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling.png" data-orig-size="890,852" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="pretty-styling-penrose-tiling" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling.png?w=750" data-id="609" src="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling.png?w=890" alt="" class="wp-image-609" srcset="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling.png 890w, https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling.png?w=150 150w, https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling.png?w=300 300w, https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling.png?w=768 768w" sizes="(max-width: 890px) 100vw, 890px" /></a><figcaption class="wp-element-caption">sun pattern</figcaption></figure>



<figure class="wp-block-image size-large"><a href="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-wreath.png"><img loading="lazy" width="750" height="719" data-attachment-id="607" data-permalink="https://thiebes.org/2023/01/02/penrose-tessellation-cookie-cutters/pretty-styling-penrose-tiling-wreath/" data-orig-file="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-wreath.png" data-orig-size="750,719" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="pretty-styling-penrose-tiling-wreath" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-wreath.png?w=750" data-id="607" src="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-wreath.png?w=750" alt="" class="wp-image-607" srcset="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-wreath.png 750w, https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-wreath.png?w=150 150w, https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-wreath.png?w=300 300w" sizes="(max-width: 750px) 100vw, 750px" /></a><figcaption class="wp-element-caption">wreath of stars and suns</figcaption></figure>
</figure>



<h2 class="wp-block-heading">Notes on baking tessellating Penrose tile cookies</h2>


<div class="wp-block-image">
<figure class="aligncenter size-large is-resized"><a href="https://thiebes.org/wp-content/uploads/2023/01/prety-penrose-cookie-tiles.jpg"><img loading="lazy" data-attachment-id="613" data-permalink="https://thiebes.org/2023/01/02/penrose-tessellation-cookie-cutters/prety-penrose-cookie-tiles/" data-orig-file="https://thiebes.org/wp-content/uploads/2023/01/prety-penrose-cookie-tiles.jpg" data-orig-size="2048,1634" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="prety-penrose-cookie-tiles" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2023/01/prety-penrose-cookie-tiles.jpg?w=750" src="https://thiebes.org/wp-content/uploads/2023/01/prety-penrose-cookie-tiles.jpg?w=1024" alt="" class="wp-image-613" width="602" height="480" srcset="https://thiebes.org/wp-content/uploads/2023/01/prety-penrose-cookie-tiles.jpg?w=1024 1024w, https://thiebes.org/wp-content/uploads/2023/01/prety-penrose-cookie-tiles.jpg?w=602 602w, https://thiebes.org/wp-content/uploads/2023/01/prety-penrose-cookie-tiles.jpg?w=1204 1204w, https://thiebes.org/wp-content/uploads/2023/01/prety-penrose-cookie-tiles.jpg?w=150 150w, https://thiebes.org/wp-content/uploads/2023/01/prety-penrose-cookie-tiles.jpg?w=300 300w, https://thiebes.org/wp-content/uploads/2023/01/prety-penrose-cookie-tiles.jpg?w=768 768w" sizes="(max-width: 602px) 100vw, 602px" /></a></figure>
</div>


<p class="wp-block-paragraph">When making cookies, bear in mind that for tiling purposes, you&#8217;ll need more birds than cats – an infinite plane filled with these tiles will require φ (~1.618) birds per cat. &nbsp;Consider also the fact that individually, the birds have more area than the cats, so for a given amount of dough, you&#8217;ll be able to cut out more cats than birds, which is the opposite of what you want for tessellating. Perhaps the best strategy here is to make more than you need of both and eat the excess.&nbsp;</p>



<p class="wp-block-paragraph">I found that the cat&#8217;s forepaw and the bird&#8217;s foot have a tendency to get a little stuck when the dough is soft (i.e., when it is close to room temperature). Be sure to cool your dough, and if you have trouble extricating these parts, a little flour dusting on the interior of the cutters can help.&nbsp;</p>



<p class="wp-block-paragraph">It might go without saying, but of course, placing the dough on the cookie sheet and baking will change the cookie tiles&#8217; shape somewhat, diminishing their ability to tessellate. Some possible ways to mitigate this problem:</p>



<ul class="wp-block-list">
<li>Tessellate the cut-out cookies on the cookie sheet to ensure a good fit, then move them apart slightly to give them space to bake.</li>



<li>Same as above, but maybe don&#8217;t move them apart at all and leave them in contact. Depending on the recipe, this might lead to cookie fusion during baking, but perhaps they will be separable afterward (maybe while still warm).</li>



<li>Any other ideas or suggestions for this? Please comment!</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://thiebes.org/2023/01/02/penrose-tessellation-cookie-cutters/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">594</post-id>
		<media:thumbnail url="https://thiebes.org/wp-content/uploads/2023/01/prety-penrose-cookie-tiles.jpg" />
		<media:content url="https://thiebes.org/wp-content/uploads/2023/01/prety-penrose-cookie-tiles.jpg" medium="image">
			<media:title type="html">prety-penrose-cookie-tiles</media:title>
		</media:content>

		<media:content url="https://1.gravatar.com/avatar/4d21fc398045d7e3880e65fc88f22d46ff27b9308220f7dbdf058a350a2fc2b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thiebes</media:title>
		</media:content>

		<media:content url="https://thiebes.org/wp-content/uploads/2023/01/caatdart-birdkite.png?w=954" medium="image" />

		<media:content url="https://thiebes.org/wp-content/uploads/2023/01/golden-ratio.png?w=1024" medium="image" />

		<media:content url="https://thiebes.org/wp-content/uploads/2023/01/a-d-j-q-k-sun-star.png?w=819" medium="image" />

		<media:content url="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-star.png?w=824" medium="image" />

		<media:content url="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling.png?w=890" medium="image" />

		<media:content url="https://thiebes.org/wp-content/uploads/2023/01/pretty-styling-penrose-tiling-wreath.png?w=750" medium="image" />

		<media:content url="https://thiebes.org/wp-content/uploads/2023/01/prety-penrose-cookie-tiles.jpg?w=1024" medium="image" />
	</item>
		<item>
		<title>Lunar Eclipse 2022</title>
		<link>https://thiebes.org/2022/05/17/lunar-eclipse-2022/</link>
					<comments>https://thiebes.org/2022/05/17/lunar-eclipse-2022/#comments</comments>
		
		<dc:creator><![CDATA[Joseph J. Thiebes]]></dc:creator>
		<pubDate>Tue, 17 May 2022 18:53:49 +0000</pubDate>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[absaroka]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[blood moon]]></category>
		<category><![CDATA[cosmic goodness]]></category>
		<category><![CDATA[lunar]]></category>
		<category><![CDATA[lunar eclipse]]></category>
		<category><![CDATA[montana]]></category>
		<category><![CDATA[moon]]></category>
		<category><![CDATA[national park]]></category>
		<category><![CDATA[paradise valley]]></category>
		<category><![CDATA[time-lapse]]></category>
		<category><![CDATA[yellowstone]]></category>
		<guid isPermaLink="false">http://thiebes.org/?p=574</guid>

					<description><![CDATA[This photograph is a time-lapse of the total lunar eclipse on May 15, 2022, taken in the Paradise Valley of the Yellowstone River in southwestern Montana just north of Yellowstone National Park. The moon rises in near-totality in the East, ascending like a firework above the Absaroka Range.  Now available for purchase.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">This photograph is a time-lapse of the total lunar eclipse on May 15, 2022, taken in the Paradise Valley of the <a rel="noreferrer noopener" href="https://en.wikipedia.org/wiki/Yellowstone_River" target="_blank">Yellowstone River</a> in southwestern Montana just north of <a rel="noreferrer noopener" href="https://en.wikipedia.org/wiki/Yellowstone_National_Park" target="_blank">Yellowstone National Park</a>. The moon rises in near-totality in the East, ascending like a firework above the Absaroka Range. </p>



<span id="more-574"></span>



<p class="wp-block-paragraph"><a href="https://fineartamerica.com/featured/lunar-eclipse-2022-joseph-thiebes.html" target="_blank" rel="noreferrer noopener">Now available for purchase</a>.</p>



<figure class="wp-block-image size-large"><a href="https://fineartamerica.com/featured/lunar-eclipse-2022-joseph-thiebes.html"><img loading="lazy" width="1024" height="682" data-attachment-id="579" data-permalink="https://thiebes.org/2022/05/17/lunar-eclipse-2022/eclipse-1/" data-orig-file="https://thiebes.org/wp-content/uploads/2022/05/eclipse-1.png" data-orig-size="6000,4000" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="eclipse-1" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2022/05/eclipse-1.png?w=750" src="https://thiebes.org/wp-content/uploads/2022/05/eclipse-1.png?w=1024" alt="" class="wp-image-579" srcset="https://thiebes.org/wp-content/uploads/2022/05/eclipse-1.png?w=1024 1024w, https://thiebes.org/wp-content/uploads/2022/05/eclipse-1.png?w=2048 2048w, https://thiebes.org/wp-content/uploads/2022/05/eclipse-1.png?w=150 150w, https://thiebes.org/wp-content/uploads/2022/05/eclipse-1.png?w=300 300w, https://thiebes.org/wp-content/uploads/2022/05/eclipse-1.png?w=768 768w, https://thiebes.org/wp-content/uploads/2022/05/eclipse-1.png?w=1440 1440w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption>Lunar Eclipse 2022, photograph by Joseph Thiebes</figcaption></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://thiebes.org/2022/05/17/lunar-eclipse-2022/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">574</post-id>
		<media:thumbnail url="https://thiebes.org/wp-content/uploads/2022/05/eclipse-1.png" />
		<media:content url="https://thiebes.org/wp-content/uploads/2022/05/eclipse-1.png" medium="image">
			<media:title type="html">eclipse-1</media:title>
		</media:content>

		<media:content url="https://1.gravatar.com/avatar/4d21fc398045d7e3880e65fc88f22d46ff27b9308220f7dbdf058a350a2fc2b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thiebes</media:title>
		</media:content>

		<media:content url="https://thiebes.org/wp-content/uploads/2022/05/eclipse-1.png?w=1024" medium="image" />
	</item>
		<item>
		<title>No Borders on Stolen Lands International Juried Exhibition</title>
		<link>https://thiebes.org/2020/10/06/no-borders-on-stolen-lands-international-juried-exhibition/</link>
					<comments>https://thiebes.org/2020/10/06/no-borders-on-stolen-lands-international-juried-exhibition/#respond</comments>
		
		<dc:creator><![CDATA[Joseph J. Thiebes]]></dc:creator>
		<pubDate>Tue, 06 Oct 2020 07:35:52 +0000</pubDate>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[alaska]]></category>
		<category><![CDATA[anchorage]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[bigotry]]></category>
		<category><![CDATA[border]]></category>
		<category><![CDATA[colonialism]]></category>
		<category><![CDATA[cultural appropriation]]></category>
		<category><![CDATA[Dena’ina Peoples]]></category>
		<category><![CDATA[digital art]]></category>
		<category><![CDATA[homophobia]]></category>
		<category><![CDATA[humanitarian crisis]]></category>
		<category><![CDATA[immigration]]></category>
		<category><![CDATA[indigenous]]></category>
		<category><![CDATA[mexico]]></category>
		<category><![CDATA[violence]]></category>
		<category><![CDATA[xenophobia]]></category>
		<guid isPermaLink="false">http://thiebes.org/2020/10/06/no-borders-on-stolen-lands-international-juried-exhibition/</guid>

					<description><![CDATA[I just received news that my latest work of digital art entitled &#8220;No Borders on Stolen Stars&#8221; has been accepted into the No Borders on Stolen Land International Juried Art Exhibition. This exhibition is curated by Mariano Gonzales, Professor of Art, Printmaking, Illustration &#38; Foundations at the University of Alaska, Anchorage. This work has not<a class="more-link" href="https://thiebes.org/2020/10/06/no-borders-on-stolen-lands-international-juried-exhibition/">Continue reading <span class="screen-reader-text">"No Borders on Stolen Lands International Juried&#160;Exhibition"</span></a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I just received news that my latest work of digital art entitled &#8220;No Borders on Stolen Stars&#8221; has been accepted into the No Borders on Stolen Land International Juried Art Exhibition.</p>



<span id="more-553"></span>



<p class="wp-block-paragraph">This exhibition is curated by Mariano Gonzales, Professor of Art, Printmaking, Illustration &amp; Foundations at the University of Alaska, Anchorage.</p>



<p class="wp-block-paragraph">This work has not been shown before now and will appear for the first time in the online exhibit from October 12 through November 15. Please plan to look at my work during the exhibition at <a rel="noreferrer noopener" href="https://www.nbstolenland.com/" target="_blank">https://www.nbstolenland.com/</a></p>



<p class="wp-block-paragraph">I will also be in attendance at the online opening reception, which will include awards and a panel discussion. Event link: <a rel="noreferrer noopener" href="https://fb.me/e/1ISBpc9xB" target="_blank">https://fb.me/e/1ISBpc9xB</a></p>



<figure class="wp-block-image size-large"><a href="https://www.nbstolenland.com" target="_blank"><img loading="lazy" width="1024" height="809" data-attachment-id="554" data-permalink="https://thiebes.org/2020/10/06/no-borders-on-stolen-lands-international-juried-exhibition/img_5084-1/" data-orig-file="https://thiebes.org/wp-content/uploads/2020/10/img_5084-1.jpg" data-orig-size="1125,889" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_5084-1" data-image-description="" data-image-caption="" data-large-file="https://thiebes.org/wp-content/uploads/2020/10/img_5084-1.jpg?w=750" src="https://thiebes.org/wp-content/uploads/2020/10/img_5084-1.jpg?w=1024" alt="No Borders on Stolen Land International Juried Art Exhibition" class="wp-image-554" srcset="https://thiebes.org/wp-content/uploads/2020/10/img_5084-1.jpg?w=1024 1024w, https://thiebes.org/wp-content/uploads/2020/10/img_5084-1.jpg?w=150 150w, https://thiebes.org/wp-content/uploads/2020/10/img_5084-1.jpg?w=300 300w, https://thiebes.org/wp-content/uploads/2020/10/img_5084-1.jpg?w=768 768w, https://thiebes.org/wp-content/uploads/2020/10/img_5084-1.jpg 1125w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<p class="wp-block-paragraph">This exhibition is sponsored by the following organizations:</p>



<p class="wp-block-paragraph"><a rel="noreferrer noopener" href="https://www.nativemovement.org" target="_blank">Native Movement</a> is a grassroots and Indigenous-led organization dedicated to building people power, rooted in an Indigenized worldview, toward healthy, sustainable, &amp; just communities for ALL. Native Movement works to dismantle oppressive systems for all, and that endeavor to ensure social justice, Indigenous Peoples’ rights, and the rights of Mother Earth.</p>



<p class="wp-block-paragraph"><a rel="noreferrer noopener" href="http://www.outnorth.org" target="_blank">Out North</a> is a progressive multi-arts organization that advances contemporary art in Anchorage, supports under-represented voices, and promotes cultural dialogue and community conversations. Out North is committed to developing programming that addresses the challenges we face in these turbulent times in ways that promote understanding, dialogue, respect and furthers a more equitable community. Out North amplifies alternative voices.</p>



<p class="wp-block-paragraph"><a rel="noreferrer noopener" href="http://www.soldemedianochenews.org" target="_blank">Sol de Medianoche</a> is a bilingual newspaper serving Latinos in Alaska. Their mission is to inform, educate, and unite the community.</p>



<p class="wp-block-paragraph"><a rel="noreferrer noopener" href="https://www.anchoragedsa.org" target="_blank">Anchorage DSA</a> is a political and member-based organization–not a party–with the vision of a more democratic and humane society, free of the oppression of bosses, borders, and capitalism. The Anchorage DSA is part of a network of community-based DSA chapters committed to fighting for environmental justice, gender and racial justice, housing justice, and the empowerment of working people.</p>



<hr class="wp-block-separator" />



<p class="wp-block-paragraph">The sponsoring organizations offer the following statement about this exhibition:</p>



<hr class="wp-block-separator" />



<p class="wp-block-paragraph">We are a coalition of organizations and individuals brought together by a shared desire to respond to the ongoing humanitarian crisis at the U.S.-Mexico border. We recognize that colonially imposed political boundaries continue to disregard Indigenous communities and institutions that have operated in transitional zones for hundreds to thousands of years. The current crisis at our southern border illuminates the violence inherent in these artificial divides.</p>



<p class="wp-block-paragraph">We will not be complicit in the inhumane conditions of detention centers and wish to stand in solidarity with all of those suffering at the hands of ICE. We call for an end to deportations, family separations, and incarcerations. We will not tolerate xenophobia, homophobia, cultural appropriation, or bigotry of any kind.</p>



<p class="wp-block-paragraph">We acknowledge that we are in the ancestral and unceded traditional territory of the Dena’ina Peoples, known today as Anchorage. The Indigenous peoples of this land never surrendered lands or resources to Russia or the United States. We acknowledge this not only in thanks to the Indigenous communities who have held relationship with this land for generations but also in recognition of the historical and ongoing legacy of colonialism. Additionally, we acknowledge this as a point of reflection for us all as we work towards dismantling colonial practices.</p>



<p class="wp-block-paragraph">No one is illegal on stolen land.</p>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://thiebes.org/2020/10/06/no-borders-on-stolen-lands-international-juried-exhibition/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">553</post-id>
		<media:thumbnail url="https://thiebes.org/wp-content/uploads/2020/10/img_5084.jpg" />
		<media:content url="https://thiebes.org/wp-content/uploads/2020/10/img_5084.jpg" medium="image">
			<media:title type="html">img_5084</media:title>
		</media:content>

		<media:content url="https://1.gravatar.com/avatar/4d21fc398045d7e3880e65fc88f22d46ff27b9308220f7dbdf058a350a2fc2b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thiebes</media:title>
		</media:content>

		<media:content url="https://thiebes.org/wp-content/uploads/2020/10/img_5084-1.jpg?w=1024" medium="image">
			<media:title type="html">No Borders on Stolen Land International Juried Art Exhibition</media:title>
		</media:content>
	</item>
	</channel>
</rss>
