<?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/"
	>

<channel>
	<title>easter egg Archives - Creatronix</title>
	<atom:link href="https://creatronix.de/tag/easter-egg/feed/" rel="self" type="application/rss+xml" />
	<link>https://creatronix.de/tag/easter-egg/</link>
	<description>My adventures in code &#38; business</description>
	<lastBuildDate>Thu, 03 Aug 2023 10:57:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Pipenv Easter Egg</title>
		<link>https://creatronix.de/pipenv-easter-egg/</link>
		
		<dc:creator><![CDATA[Jörn]]></dc:creator>
		<pubDate>Mon, 20 Dec 2021 15:08:16 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[easter egg]]></category>
		<category><![CDATA[pipenv]]></category>
		<guid isPermaLink="false">https://creatronix.de/?p=4371</guid>

					<description><![CDATA[<p>I&#8217;ve found this little easter egg hidden in pipenv: if not environments.PIPENV_HIDE_EMOJIS: now = time.localtime() # Halloween easter-egg. if ((now.tm_mon == 10) and (now.tm_mday == 30)) or ( (now.tm_mon == 10) and (now.tm_mday == 31) ): INSTALL_LABEL = "🎃 " # Christmas easter-egg. elif ((now.tm_mon == 12) and (now.tm_mday == 24)) or ( (now.tm_mon ==&#8230;</p>
<p>The post <a href="https://creatronix.de/pipenv-easter-egg/">Pipenv Easter Egg</a> appeared first on <a href="https://creatronix.de">Creatronix</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve found this little easter egg hidden in <a href="https://creatronix.de/python-pipfile-and-pipenv/">pipenv</a>:</p>
<pre>if not environments.PIPENV_HIDE_EMOJIS:
    now = time.localtime()
    # Halloween easter-egg.
    if ((now.tm_mon == 10) and (now.tm_mday == 30)) or (
        (now.tm_mon == 10) and (now.tm_mday == 31)
    ):
        INSTALL_LABEL = "🎃   "
    # Christmas easter-egg.
    elif ((now.tm_mon == 12) and (now.tm_mday == 24)) or (
        (now.tm_mon == 12) and (now.tm_mday == 25)
    ):
        INSTALL_LABEL = "🎅   "</pre>
<p>https://github.com/pypa/pipenv/blob/main/pipenv/core.py</p>
<p>The post <a href="https://creatronix.de/pipenv-easter-egg/">Pipenv Easter Egg</a> appeared first on <a href="https://creatronix.de">Creatronix</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
