<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0">

<channel>
	<title>Happenchance</title>
	<atom:link href="https://www.happenchance.net/feed/" rel="self" type="application/rss+xml"/>
	<link>https://www.happenchance.net</link>
	<description>another blog about getting better at stuff </description>
	<lastBuildDate>Sat, 07 Feb 2015 14:54:14 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.4.16</generator>
	<itunes:explicit>no</itunes:explicit><itunes:image href="http://www.happenchance.net/wp-content/uploads/2011/03/happenchance_banner_be_creative.jpg"/><itunes:keywords>creativity,arts,writing,personal,development,entrepreneurship</itunes:keywords><itunes:summary>The Happenchance podcast features audio version of articles originally appearing on the blog. </itunes:summary><itunes:subtitle>The Happenchance Podcast </itunes:subtitle><itunes:category text="Arts"/><itunes:owner><itunes:email>seth@happenchance.net </itunes:email></itunes:owner><item>
		<title>A Quick Guide to Deploying to Heroku using Git</title>
		<link>https://www.happenchance.net/a-quick-guide-to-deploying-to-heroku-using-git/</link>
		
		
		<pubDate>Sat, 07 Feb 2015 14:54:14 +0000</pubDate>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[heroku]]></category>
		<category><![CDATA[version control]]></category>
		<guid isPermaLink="false">https://www.happenchance.net/?p=3363</guid>

					<description><![CDATA[Last summer, I started learning Git, and I recently wrote a guide to help some of my classmates deploy a web app to Heroku using Git and Bitbucket. I chose Bitbucket over Github because Bitbucket allows you to create unlimited private code repositories; in an academic setting where every student has to work on a [&#8230;]<div class='yarpp-related-rss'>

<b>You may also enjoy: </b><ol>
<li><a href="https://www.happenchance.net/some-git-tutorials/" rel="bookmark" title="Some Git Tutorials">Some Git Tutorials </a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Last summer, I started learning Git, and I recently wrote a guide to help some of my classmates deploy a web app to Heroku using Git and Bitbucket. I chose Bitbucket over Github because Bitbucket allows you to create unlimited private code repositories; in an academic setting where every student has to work on a project with the same requirements, this is a Very Good Idea.</p>
<p><b>A disclaimer:</b> I&#8217;ve only deployed <a title="FEWSN - Framework for Extensible Wireless Sensor Networks " href="http://fewsn.herokuapp.com/" target="_blank">one non-trivial Django app</a> to Heroku, so my experience is limited.</p>
<p><b>Limitations</b>: This overview is intended to be language agnostic. Check <a title="Supported languages on Heroku " href="https://devcenter.heroku.com/categories/language-support" target="_blank">Heroku</a> for specific steps required for your language or framework. Heroku has tutorials for Ruby, PHP, Node.js, Python (Django and Flask), Java, Clojure, and Scala.</p>
<p><b>Tools</b>: Git, Bitbucket or Github, Heroku, a command line interface (Git-Bash or Cygwin for Windows), and your choice of web framework.</p>
<p><span style="font-size: large;"><b>1. Create a git repo and origin branch on Bitbucket.</b></span></p>
<p>Install git and setup a Bitbucket account. In Bitbucket, create a team, create a repository, and copy the address address under “Clone.” This will be your origin. Your local machine (and your team&#8217;s local machines) will push to and pull from this repository.<a href="https://www.happenchance.net/wp-content/uploads/2015/02/git_clone.png"><img class="aligncenter wp-image-3370" src="https://www.happenchance.net/wp-content/uploads/2015/02/git_clone-300x238.png" alt="git_clone" width="200" height="158" srcset="https://www.happenchance.net/wp-content/uploads/2015/02/git_clone-300x238.png 300w, https://www.happenchance.net/wp-content/uploads/2015/02/git_clone.png 408w" sizes="(max-width: 200px) 100vw, 200px" /></a>Clone your Bitbucket origin to your local machine.<a href="https://www.happenchance.net/wp-content/uploads/2015/02/git_init_and_clone.png"><img class="aligncenter wp-image-3369" src="https://www.happenchance.net/wp-content/uploads/2015/02/git_init_and_clone.png" alt="git_init_and_clone" width="500" height="149" srcset="https://www.happenchance.net/wp-content/uploads/2015/02/git_init_and_clone.png 1014w, https://www.happenchance.net/wp-content/uploads/2015/02/git_init_and_clone-300x90.png 300w" sizes="(max-width: 500px) 100vw, 500px" /></a>You now have a local repo setup, and it&#8217;s time to set up your remote origin branch.Copy the remote branch address from Bitbucket then create a remote branch in the command line.<a href="https://www.happenchance.net/wp-content/uploads/2015/02/git_add_remote.png"><img class="aligncenter wp-image-3373" src="https://www.happenchance.net/wp-content/uploads/2015/02/git_add_remote-1024x351.png" alt="git_add_remote" width="500" height="172" srcset="https://www.happenchance.net/wp-content/uploads/2015/02/git_add_remote-1024x351.png 1024w, https://www.happenchance.net/wp-content/uploads/2015/02/git_add_remote-300x103.png 300w, https://www.happenchance.net/wp-content/uploads/2015/02/git_add_remote.png 1116w" sizes="(max-width: 500px) 100vw, 500px" /></a></p>
<p><a href="https://www.happenchance.net/wp-content/uploads/2015/02/git_add_remote_command_line.png"><img class="aligncenter wp-image-3372" src="https://www.happenchance.net/wp-content/uploads/2015/02/git_add_remote_command_line-1024x56.png" alt="git_add_remote_command_line" width="600" height="33" srcset="https://www.happenchance.net/wp-content/uploads/2015/02/git_add_remote_command_line-1024x56.png 1024w, https://www.happenchance.net/wp-content/uploads/2015/02/git_add_remote_command_line-300x16.png 300w, https://www.happenchance.net/wp-content/uploads/2015/02/git_add_remote_command_line.png 1166w" sizes="(max-width: 600px) 100vw, 600px" /></a>Now <strong>push</strong> your project to the remote. <a href="https://www.happenchance.net/wp-content/uploads/2015/02/git_push_origin_master.png"><img class="aligncenter wp-image-3371" src="https://www.happenchance.net/wp-content/uploads/2015/02/git_push_origin_master.png" alt="git_push_origin_master" width="500" height="181" srcset="https://www.happenchance.net/wp-content/uploads/2015/02/git_push_origin_master.png 700w, https://www.happenchance.net/wp-content/uploads/2015/02/git_push_origin_master-300x108.png 300w" sizes="(max-width: 500px) 100vw, 500px" /></a>  Remember to fetch and merge [or pull] the most recent changes before you begin a development session.</p>
<p><span style="font-size: large;"><b>2. Deploy to Heroku</b></span></p>
<p><span style="font-size: medium;">Before deployment, you&#8217;ll need at least a bare bones web application that runs on a local development server. See the “Supported Languages” page on Heroku for details and deployment instructions for your language. Assuming you&#8217;re running locally, here&#8217;s an overview of the deployment steps:<br />
</span></p>
<ul>
<li><span style="font-size: medium;">Create an account on Heroku, download the Heroku Toolbelt for your OS, and login. When you create a project, a PostgreSQL database should be created for you.</span></li>
<li><span style="font-size: medium;">Adding a heroku remote depends on if you&#8217;re starting a project or if you want to connect to an existing project. This tutorial assumes you&#8217;re creating a new project. <a title="Heroku collaboration " href="https://devcenter.heroku.com/articles/sharing" target="_blank">Here&#8217;</a>s how to collaborate on a project.<br />
</span></li>
<li><span style="font-size: medium;">For a new project, the git remote is added to your existing repo when you run &#8216;heroku create&#8217;. Make sure </span><span style="font-size: medium;">to</span><span style="font-size: medium;"> run this from the top level of your project directory after you&#8217;ve created a local repo. </span><span style="font-size: medium;">Run</span>
<p><span style="font-size: medium;"><strong>&#8216;$heroku create&#8217;</strong><br />
This </span><span style="font-size: medium;">will add another git remote </span><span style="font-size: medium;">to your local repo</span><span style="font-size: medium;">. (</span><span style="font-size: medium;">Heroku </span><span style="font-size: medium;">will be your production remote, which is separate from your Bitbucket origin.)</span></li>
<li><span style="font-size: medium;">Configure your Procfile. The Profile tells Heroku what applications are required run your app. Details can be found in your language-specific tutorial on Heroku. This file must be in your project root directory. The Procfile should be added to your repo before you deploy to Heroku.</span></li>
<li><span style="font-size: medium;">Deploy your code </span>
<p><strong><span style="font-size: medium;">$git push heroku master</span></strong></li>
<li><span style="font-size: medium;">Run “<strong>$ heroku log</strong>s” for error messages, then go search Stack Overflow to figure out what went wrong until you get it working <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> </span></li>
</ul>
<p><span style="font-size: medium;">Good luck! </span></p>
<h3><strong>How&#8217;d it go for you?</strong></h3>
<p>This is my first technical tutorial here on Happenchance, so I&#8217;d love to hear your feedback. Please let me know in the comments if this tutorial help you, or if there&#8217;s anything that&#8217;s entirely wrong.</p>
<p><span style="font-size: large;"><b>Resources</b></span></p>
<p><a title="Git bash" href="http://msysgit.github.io/" target="_blank">Git, Git-Bash</a>, and Cygwin</p>
<p><a title="Printable git cheat sheet" href="https://na1.salesforce.com/help/pdfs/en/salesforce_git_developer_cheatsheet.pdf" target="_blank">Git cheat sheet</a> (printable)</p>
<p><a title="Getting started with Bitbucket" href="https://confluence.atlassian.com/display/BITBUCKET/Getting+started+with+Bitbucket" target="_blank">Getting Started With Bitbucket</a></p>
<p>Heroku <a title="Getting started on Heroku" href="https://devcenter.heroku.com/start" target="_blank">Getting Started,</a> <a title="Supported languages on Heroku" href="https://devcenter.heroku.com/categories/language-support" target="_blank">Heroku Supported Languages,</a> and an <a title="Video " href="https://www.youtube.com/watch?v=QTOkqzCTGxw" target="_blank">Introduction to Heroku</a> from the co-creator of Django.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class='yarpp-related-rss'>
<p><b>You may also enjoy: </b><ol>
<li><a href="https://www.happenchance.net/some-git-tutorials/" rel="bookmark" title="Some Git Tutorials">Some Git Tutorials </a></li>
</ol></p>
</div>
]]></content:encoded>
					
		
		
			<dc:creator>seth@happenchance.net  (Seth)</dc:creator></item>
		<item>
		<title>Happenchance Ain’t Dead, It’s Just Been Sleeping</title>
		<link>https://www.happenchance.net/happenchance-aint-dead-its-just-been-sleeping/</link>
		
		
		<pubDate>Thu, 01 Jan 2015 13:34:24 +0000</pubDate>
				<category><![CDATA[Defeat]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[site news]]></category>
		<guid isPermaLink="false">https://www.happenchance.net/?p=3364</guid>

					<description><![CDATA[Hello Happenchance readers. I just wanted to provide some context for the past ~ three years of near-radio silence. Since 2012, I&#8217;ve been focused on my raising my babies (two healthy boys, ages 3 and 1) and picking up new skills. One of these skills is programming; in 2012, I started learning Python to help [&#8230;]<div class='yarpp-related-rss yarpp-related-none'>

No related posts.
</div>
]]></description>
										<content:encoded><![CDATA[<p>Hello Happenchance readers. I just wanted to provide some context for the past ~ three years of near-radio silence. Since 2012, I&#8217;ve been focused on my raising my babies (two healthy boys, ages 3 and 1) and picking up new skills. One of these skills is programming; in 2012, I started learning Python to help with some data processing at a previous job. I enjoyed it  so much that I decided to enroll in a computer science degree program &#8230; at 32 years old. Here&#8217;s how it feels:</p>
<a href="https://www.happenchance.net/wp-content/uploads/2015/02/billy_madison.jpg"><img class="wp-image-3365" src="https://www.happenchance.net/wp-content/uploads/2015/02/billy_madison.jpg" alt="middle-aged dude in a 1st grade classroom." width="570" height="378" srcset="https://www.happenchance.net/wp-content/uploads/2015/02/billy_madison.jpg 570w, https://www.happenchance.net/wp-content/uploads/2015/02/billy_madison-300x199.jpg 300w" sizes="(max-width: 570px) 100vw, 570px" /></a>
<p>&nbsp;</p>
<p>I occasionally do some technical editing and writing, but overall I think that the effort-reward ratio for general freelance writing is too low. The market is saturated with smart, educated people willing to work for cheap. I don&#8217;t mind hard work, but I think it&#8217;s kind of stupid to do mentally demanding for less than I could make delivering pizzas. Besides, programming is a damn sight more satisfying.</p>
<p>That said, I still think freelance writing is a fantastic field for a young, single person who a) wants to use geo-arbitrage to support a nomadic lifestyle, or b) needs a 3rd source of income to pay down their crushing student debt.</p>
<p><strong>What does this mean for Happenchance?</strong></p>
<p>I&#8217;ll probably post more technical content here, mostly because I understand things better when I write about them for an audience. There might be some stuff about being an old guy in an undergrad program, or silly things my kids say, or interesting things researchers have found about creativity, motivation, etc.</p>
<p>Whatever.</p>
<p>It&#8217;s called Happenchance for a reason.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class='yarpp-related-rss yarpp-related-none'>
<p>No related posts.</p>
</div>
]]></content:encoded>
					
		
		
			<dc:creator>seth@happenchance.net  (Seth)</dc:creator></item>
		<item>
		<title>B-Tree, Regex, and NFA to DFA converter</title>
		<link>https://www.happenchance.net/b-tree-regex-and-nfa-to-dfa-converter/</link>
		
		
		<pubDate>Sun, 07 Dec 2014 02:44:10 +0000</pubDate>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[B-Tree]]></category>
		<category><![CDATA[data structures]]></category>
		<category><![CDATA[DFA]]></category>
		<category><![CDATA[NFA]]></category>
		<category><![CDATA[regex]]></category>
		<guid isPermaLink="false">https://www.happenchance.net/?p=3357</guid>

					<description><![CDATA[Here&#8217;s what I&#8217;ve been trying to get better at lately. So far, so good. Non-Deterministic Finite Automata Converter. Here&#8217;s a video about doing NFA to DFA conversion. RegExr: Interactive regex builder and tester. Here&#8217;s another nice regex tester. B-Tree visualization.<div class='yarpp-related-rss yarpp-related-none'>

No related posts.
</div>
]]></description>
										<content:encoded><![CDATA[<p>Here&#8217;s what I&#8217;ve been trying to get better at lately. So far, so good.</p>
<ul>
<li><a title="Regex to NFA / DFA converter " href="http://hackingoff.com/compilers/regular-expression-to-nfa-dfa">Non-Deterministic Finite Automata Converter</a>.<a title="NFA to DFA conversion " href="https://www.youtube.com/watch?v=taClnxU-nao"> Here&#8217;s</a> a video about doing NFA to DFA conversion.</li>
<li><a title="RegExr" href="http://www.regexr.com/">RegExr: Interactive regex builder and tester. </a><a title="regex tester" href="https://regex101.com/">Here&#8217;s</a> another nice regex tester.</li>
<li><a title="B-Tree visualization" href="https://www.cs.usfca.edu/~galles/visualization/BTree.html">B-Tree visualization. </a></li>
</ul>
<div class='yarpp-related-rss yarpp-related-none'>
<p>No related posts.</p>
</div>
]]></content:encoded>
					
		
		
			<dc:creator>seth@happenchance.net  (Seth)</dc:creator></item>
		<item>
		<title>Some Git Tutorials</title>
		<link>https://www.happenchance.net/some-git-tutorials/</link>
		
		
		<pubDate>Mon, 24 Mar 2014 01:24:12 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[version control]]></category>
		<guid isPermaLink="false">https://www.happenchance.net/?p=3340</guid>

					<description><![CDATA[I started learning Git over the weekend. After ~9 months of saving files as v1, v2, etc. the time has come to properly learn version control. Besides the official documentation and the training videos on Lynda.com, I&#8217;ve found a slew of good resources for understanding and learning Git. Here they are: Scott Chacon&#8217;s book Pro [&#8230;]<div class='yarpp-related-rss'>

<b>You may also enjoy: </b><ol>
<li><a href="https://www.happenchance.net/a-quick-guide-to-deploying-to-heroku-using-git/" rel="bookmark" title="A Quick Guide to Deploying to Heroku using Git">A Quick Guide to Deploying to Heroku using Git </a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>I started learning <a title="Git" href="http://git-scm.com/">Git</a> over the weekend. After ~9 months of saving files as v1, v2, etc. the time has come to properly learn version control. Besides the<a title="Git documentation " href="http://git-scm.com/documentation"> official documentation</a> and the training videos on Lynda.com, I&#8217;ve found a slew of good resources for understanding and learning Git. Here they are:</p>
<ul>
<li>Scott Chacon&#8217;s book <a title="Pro Git" href="http://git-scm.com/book">Pro Git</a> available for free in its entirety.</li>
<li><a title="Github bootcamp" href=" https://help.github.com/categories/54/articles">Github bootcamp</a></li>
<li>Git Immersion <a title="Guided tour" href="http://gitimmersion.com/index.html">guided tour</a> of Git</li>
<li>Vogella&#8217;s<a title="Vogella' Git tutorial" href="http://www.vogella.com/tutorials/Git/article.html"> Git Tutorial</a></li>
<li>Visualizing <a title="Git Concepts " href="http://www.wei-wang.com/ExplainGitWithD3/#">Git Concepts</a></li>
<li>Roger Dudler&#8217;s<a title="Git tutorial " href="http://rogerdudler.github.io/git-guide/"> Git Tutorial</a></li>
<li><a title="Stack Overflow post on Git " href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide">This post</a> on Stack Overflow should cover everything else.</li>
</ul>
<p>Know of any more good Git tutorials? Let us know in the comments.</p>
<p>&nbsp;</p>
<div class='yarpp-related-rss'>
<p><b>You may also enjoy: </b><ol>
<li><a href="https://www.happenchance.net/a-quick-guide-to-deploying-to-heroku-using-git/" rel="bookmark" title="A Quick Guide to Deploying to Heroku using Git">A Quick Guide to Deploying to Heroku using Git </a></li>
</ol></p>
</div>
]]></content:encoded>
					
		
		
			<dc:creator>seth@happenchance.net  (Seth)</dc:creator></item>
		<item>
		<title>Redemption, My Latest Fiction Release,Is Now Available and Free 8/29 to 9/2</title>
		<link>https://www.happenchance.net/redemption-my-latest-fiction-release-is-available-and-free-829-to-92/</link>
		
		
		<pubDate>Wed, 28 Aug 2013 14:45:03 +0000</pubDate>
				<category><![CDATA[Tips and Tactics]]></category>
		<category><![CDATA[fiction]]></category>
		<category><![CDATA[shameless self-promotion]]></category>
		<guid isPermaLink="false">https://www.happenchance.net/?p=3329</guid>

					<description><![CDATA[About a month ago, I quietly released Redemption, the second installment in The End of the Iron series. To celebrate, I&#8217;m offering Redemption, along with everything else in my collection, free on Amazon from August 29th until September 2nd. Here&#8217;s a link to my Amazon author page. (If you don&#8217;t have a Kindle, Calibre does a [&#8230;]<div class='yarpp-related-rss'>

<b>You may also enjoy: </b><ol>
<li><a href="https://www.happenchance.net/small-wins-for-big-gains/" rel="bookmark" title="Small Wins for Big Gains">Small Wins for Big Gains </a></li>
<li><a href="https://www.happenchance.net/week-47-roundup-why-we-read-why-we-laugh-flow/" rel="bookmark" title="Week 47 Roundup: Why We Read, Why We Laugh, Flow">Week 47 Roundup: Why We Read, Why We Laugh, Flow </a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: center;"><a href="https://www.happenchance.net/wp-content/uploads/2013/08/Redemption-The-End-of-the-Iron-Age-Book-2.jpg"><img class="aligncenter  wp-image-3330" alt="Redemption: The End of the Iron Age, Book 2 " src="https://www.happenchance.net/wp-content/uploads/2013/08/Redemption-The-End-of-the-Iron-Age-Book-2-640x1024.jpg" width="230" height="368" srcset="https://www.happenchance.net/wp-content/uploads/2013/08/Redemption-The-End-of-the-Iron-Age-Book-2-640x1024.jpg 640w, https://www.happenchance.net/wp-content/uploads/2013/08/Redemption-The-End-of-the-Iron-Age-Book-2-187x300.jpg 187w, https://www.happenchance.net/wp-content/uploads/2013/08/Redemption-The-End-of-the-Iron-Age-Book-2.jpg 1563w" sizes="(max-width: 230px) 100vw, 230px" /></a></p>
<p>About a month ago, I quietly released <em>Redemption</em>, the second installment in<em> The End of the Iron</em> series. To celebrate, I&#8217;m offering <em>Redemption, </em>along with everything else in my collection, free on Amazon from August 29th until September 2nd. Here&#8217;s a<a href="http://www.amazon.com/Seth-M.-Baker/e/B007B81NFA"> link to my Amazon author page</a>. (If you don&#8217;t have a Kindle, <a title="Calibre ... for your ebook conversion needs." href="http://calibre-ebook.com/">Calibre </a>does a good job of converting to .pdf and other formats).</p>
<p><i>Redemption</i> is a novel about what happens when good people doing dubious things in pursuit of a goal. There’s also mischief, mayhem and awkward moments, as well as government intrigue, mass psychosis, and interdimensional demons … you can’t forget the interdimensional demons.</p>
<p>In other news, on August 20th, I finished the first draft of an upcoming novel entitled <em>Doghead Empire</em>. Set in the year 3000, this work begins and ends with the story of Kali Vance, a caterer who crosses path with an outlander suicide bomber.</p>
<p>Unlike in the Iron Age series, this book provides multiple POVs —five at this work’s current state.</p>
<p>I can’t decide if it’s premature to be talking about this work. Right now, it’s a first draft, which is necessarily a train wreck. Even worse (or better, depending), it&#8217;s a <em>140,000-word</em> train wreck.</p>
<p>Fortunately, I had a pretty good idea of the story before I sat down to draft this work. The draft is a mess, and finishing it will take some time, but this should be my next major release.</p>
<p>Thanks for reading.</p>
<p><strong>Direct links</strong></p>
<p><a title="Book 1" href="http://www.amazon.com/Reaction-End-Iron-Age-Book/dp/1938830008/"> <em>Reaction: The End of the Iron Age, Book 1</em></a></p>
<p><a title="Book 2" href="http://www.amazon.com/Redemption-End-Iron-Age-ebook/dp/B00E255XJ2/"><em>Redemption: The End of the Iron Age, Book 2</em></a></p>
<p><a title="5 Short Tales of Strange New Beginnings " href="http://www.amazon.com/Short-Tales-Strange-Beginnings-ebook/dp/B00BQQO2OM/"><em>5 Short Tales of Strange New Beginnings</em></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class='yarpp-related-rss'>
<p><b>You may also enjoy: </b><ol>
<li><a href="https://www.happenchance.net/small-wins-for-big-gains/" rel="bookmark" title="Small Wins for Big Gains">Small Wins for Big Gains </a></li>
<li><a href="https://www.happenchance.net/week-47-roundup-why-we-read-why-we-laugh-flow/" rel="bookmark" title="Week 47 Roundup: Why We Read, Why We Laugh, Flow">Week 47 Roundup: Why We Read, Why We Laugh, Flow </a></li>
</ol></p>
</div>
]]></content:encoded>
					
		
		
			<dc:creator>seth@happenchance.net  (Seth)</dc:creator></item>
		<item>
		<title>Summer Reading Giveaway 5/31-6/2</title>
		<link>https://www.happenchance.net/summer-reading-giveaway-531-62/</link>
					<comments>https://www.happenchance.net/summer-reading-giveaway-531-62/#comments</comments>
		
		
		<pubDate>Fri, 31 May 2013 00:00:07 +0000</pubDate>
				<category><![CDATA[Tips and Tactics]]></category>
		<guid isPermaLink="false">https://www.happenchance.net/?p=3318</guid>

					<description><![CDATA[Hello Happenchance readers. I try not to overdo it with the fiction self-promotions here, but I wanted to let you all know about this weekend&#8217;s giveaway on Amazon. I&#8217;m making most of my catalog free from 5/31 until 6/2.  You can find my work on my author page.  Also, if you enjoy what you read, [&#8230;]<div class='yarpp-related-rss yarpp-related-none'>

No related posts.
</div>
]]></description>
										<content:encoded><![CDATA[<p>Hello Happenchance readers. I try not to overdo it with the fiction self-promotions here, but I wanted to let you all know about this weekend&#8217;s giveaway on Amazon. I&#8217;m making most of my catalog free from 5/31 until 6/2.  You can find my work on my <a title="Seth's author page " href="http://www.amazon.com/Seth-M.-Baker/e/B007B81NFA/ref=ntt_athr_dp_pel_1">author page. </a></p>
<p>Also, if you enjoy what you read, you could really help me out by posting a review on Amazon or Goodreads.</p>
<p>Thanks, and enjoy!</p>
<div class='yarpp-related-rss yarpp-related-none'>
<p>No related posts.</p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.happenchance.net/summer-reading-giveaway-531-62/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			<dc:creator>seth@happenchance.net  (Seth)</dc:creator></item>
		<item>
		<title>A Brief Interlude</title>
		<link>https://www.happenchance.net/the-soft-relaunch/</link>
					<comments>https://www.happenchance.net/the-soft-relaunch/#comments</comments>
		
		
		<pubDate>Fri, 15 Feb 2013 20:18:28 +0000</pubDate>
				<category><![CDATA[Overcoming Laziness]]></category>
		<category><![CDATA[administrative]]></category>
		<category><![CDATA[balance]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[grad school]]></category>
		<category><![CDATA[personal notes]]></category>
		<category><![CDATA[Write Better]]></category>
		<guid isPermaLink="false">https://www.happenchance.net/?p=3284</guid>

					<description><![CDATA[Happenchance is back to semi-regular posting after some time off. This post is a brief overview of what's to come. <div class='yarpp-related-rss yarpp-related-none'>

No related posts.
</div>
]]></description>
										<content:encoded><![CDATA[<p>Happenchance is back to semi-regular posting after some time off.</p>
<p>I&#8217;ll be creating and sharing content on topics like self-education, curiosities, oddities, creativity, productivity, frugality, and whatever else has my attention at the moment. I&#8217;ll try to keep everything useful, intriguing, or at least entertaining.</p>
<p>If you&#8217;re wondering, I&#8217;m still living in rural Appalachia with my wife, baby son, and cat. They&#8217;re all healthy and happy. I&#8217;m still writing speculative fiction, as well as teaching a bit and taking grad classes. After I finish up a large writing project, I intend to learn to code.</p>
<p><span style="line-height: 1.5em;">There will be interludes.  I&#8217;m such a naughty blogger.</span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class='yarpp-related-rss yarpp-related-none'>
<p>No related posts.</p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.happenchance.net/the-soft-relaunch/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			<dc:creator>seth@happenchance.net  (Seth)</dc:creator></item>
		<item>
		<title>Two years, five countries, and one baby later, my sci-fi/adventure novel Reaction is now available.</title>
		<link>https://www.happenchance.net/two-years-five-countries-and-one-baby-later-my-sci-fiadventure-novel-reaction-is-out-and-free-for-the-next-72-hours/</link>
					<comments>https://www.happenchance.net/two-years-five-countries-and-one-baby-later-my-sci-fiadventure-novel-reaction-is-out-and-free-for-the-next-72-hours/#comments</comments>
		
		
		<pubDate>Fri, 23 Mar 2012 07:00:55 +0000</pubDate>
				<category><![CDATA[Defeat Resistance]]></category>
		<category><![CDATA[Tips and Tactics]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[publishing]]></category>
		<category><![CDATA[Reaction]]></category>
		<category><![CDATA[The End of the Iron Age]]></category>
		<guid isPermaLink="false">https://www.happenchance.net/?p=3251</guid>

					<description><![CDATA[This post is a shameless plug for my novel (and a picture of me with the best thing I've ever created). <div class='yarpp-related-rss'>

<b>You may also enjoy: </b><ol>
<li><a href="https://www.happenchance.net/14-ways-to-maintain-your-creative-output-during-a-50-hour-work-week/" rel="bookmark" title="14 Ways to Maintain Your Creative Output (During a 50 Hour Work Week)">14 Ways to Maintain Your Creative Output (During a 50 Hour Work Week) </a></li>
<li><a href="https://www.happenchance.net/week-44-roundup-gaps-ruts-and-word-births/" rel="bookmark" title="Week 44 Roundup: Gaps, Ruts, and Word Births">Week 44 Roundup: Gaps, Ruts, and Word Births </a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://www.sethmbaker.com/wp-content/uploads/2012/03/REACTION_05_AmazonReady_030412.jpg" alt="Cover to Reaction " width="218" height="337" /></p>
<p style="text-align: left;"><strong>3-27-12 21:44pm Update:</strong> During my 72 hour giveaway, 578 people downloaded this book. <em>Reaction</em> also his #8 in the Amazon Sci-Fi&gt;Adventure bestseller list. Early reviews have been great, though my copy editor and I allowed a couple silly typos to slip through. (&#8220;Meat me at the river&#8221; makes me giggle like a teenager). I expect to pull the book early next week to correct these.</p>
<p style="text-align: left;"><strong>Original post: </strong>You may have wondered why I haven&#8217;t posted here since the first of the year. Now, my friends, you have the answer: I was simultaneously learning to be a parent and finishing <em>Reaction, </em>the first book in my sci-fi adventure series <em>The End of the Iron Age</em>. <del><strong>You can download the book for free <a title="Link to Amazon " href="http://amzn.to/GM3wFk">here</a> </strong>until late Sunday night.</del> You can <a href="http://www.amazon.com/Reaction-The-End-Iron-ebook/dp/B007J8AYRK/ref=sr_1_1?ie=UTF8&amp;qid=1332899005&amp;sr=8-1">purchase this little yarn</a> an Amazon for only $4.99.</p>
<p style="text-align: left;">And, if you enjoy this work, I would appreciate it if you could either take a couple minutes and leave a brief review or share this work with your friends. I&#8217;m just getting started, and I need all the help I can get.</p>
<p style="text-align: left;">Now that this book is out, I will resume posting here at Happenchance, assuming the little fellow lets me get some rest:</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-3261" title="seth and miles" src="https://www.happenchance.net/wp-content/uploads/2012/03/seth-and-miles.jpg" alt="Seth and baby Miles" width="259" height="334" srcset="https://www.happenchance.net/wp-content/uploads/2012/03/seth-and-miles.jpg 720w, https://www.happenchance.net/wp-content/uploads/2012/03/seth-and-miles-232x300.jpg 232w" sizes="(max-width: 259px) 100vw, 259px" /></p>
<p style="text-align: left;">
<div class='yarpp-related-rss'>
<p><b>You may also enjoy: </b><ol>
<li><a href="https://www.happenchance.net/14-ways-to-maintain-your-creative-output-during-a-50-hour-work-week/" rel="bookmark" title="14 Ways to Maintain Your Creative Output (During a 50 Hour Work Week)">14 Ways to Maintain Your Creative Output (During a 50 Hour Work Week) </a></li>
<li><a href="https://www.happenchance.net/week-44-roundup-gaps-ruts-and-word-births/" rel="bookmark" title="Week 44 Roundup: Gaps, Ruts, and Word Births">Week 44 Roundup: Gaps, Ruts, and Word Births </a></li>
</ol></p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.happenchance.net/two-years-five-countries-and-one-baby-later-my-sci-fiadventure-novel-reaction-is-out-and-free-for-the-next-72-hours/feed/</wfw:commentRss>
			<slash:comments>13</slash:comments>
		
		
			<dc:creator>seth@happenchance.net  (Seth)</dc:creator></item>
		<item>
		<title>2011 in Review</title>
		<link>https://www.happenchance.net/2011-in-review/</link>
		
		
		<pubDate>Sat, 24 Dec 2011 04:00:16 +0000</pubDate>
				<category><![CDATA[Tips and Tactics]]></category>
		<guid isPermaLink="false">https://www.happenchance.net/?p=3205</guid>

					<description><![CDATA[In this last post of 2011, I reveal readership stats, future plans, and more...<div class='yarpp-related-rss yarpp-related-none'>

No related posts.
</div>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-3211" title="The End of the Year" src="https://www.happenchance.net/wp-content/uploads/2011/12/happenchance_review_2011.jpg" alt="Sunset on a purple beach" width="368" height="448" srcset="https://www.happenchance.net/wp-content/uploads/2011/12/happenchance_review_2011.jpg 526w, https://www.happenchance.net/wp-content/uploads/2011/12/happenchance_review_2011-246x300.jpg 246w" sizes="(max-width: 368px) 100vw, 368px" /></p>
<p>Here at Happenchance, 2011 looked a lot like <a href="https://www.happenchance.net/2010-in-review-plus-happenchances-2-dirty-secrets-o/">2010</a>, only with a bigger readership, a clearer message, and a bit more self-deprecation. (My original title for this post was &#8216;2011: A Slow Year at a Mediocre Blog&#8217;).</p>
<p>In the late winter and early spring, I focused on writing longer articles. For the middle of the year, I slowed down my posting as I tried and failed to make a living outside the 9-to-5.</p>
<p>In the fall, at the request of my more faithful readers, I revived the roundup posts. While the roundups are easier to write (2 hours vs. 15-20 hours), they attract far less engagement than the longer posts and are of dubious long-term value to you. Whether they&#8217;ll continue in 2012 remains to be seen.</p>
<p>As I said before, my strategy for 2012 is to <strong><em>do less, better. </em></strong>With a baby on the way, a full-time job, and <a title="super-secret link to my unfinished fiction website" href="http://www.sethmbaker.com/fiction/">fiction to write</a>, I&#8217;m going to be a busy boy, and as much as I enjoy writing for you, I only have so much energy and attention.</p>
<p>For now, I intend to take a couple months off from <em>regular</em> posting here at this fine site. I&#8217;ll likely start something up again in the spring. Until then, watch for longer, resource-rich articles, perfect for bookmarking and sharing (not just quick consumption).</p>
<h2>A Few Stats</h2>
<p>For 2011, Happenchance had 71,283 total visitors, about 5000-7,000 visitors/month. Most people read about 2.8 pages per visit.Of these visitors, 85% were new, 15% were returning. As of today, 165 people receive updates by email.</p>
<p>I created no products and earned less that $500 in commissions from the General Store and a couple affiliate products. Since I&#8217;ve never put any serious effort into monetizing this site, this comes as no surprise.</p>
<h2>Popular Articles</h2>
<p>Perhaps because it was picked up on Y-Combinator,  this silly-yet-fun article on <a title="standing desks" href="https://www.happenchance.net/after-three-months-of-using-a-standing-desk/">standing desks</a> was far and away <strong>my most viewed post.</strong></p>
<p>Here are a few other popular articles I&#8217;m still proud of:</p>
<ul>
<li><a href="https://www.happenchance.net/7-phd-approved-ways-to-increase-your-happiness/">7 PhD-Approved Ways to Increase Your Happiness </a></li>
<li><a href="https://www.happenchance.net/8-lessons-in-creative-work-i-learned-from-my-garden/">8 Lessons in Creative Work I Learned From My Garden</a></li>
<li><a title="creating systems" href="https://www.happenchance.net/how-creating-systems-can-make-your-microbusiness-rock/">How Creating Systems Can Make Your Microbusiness Rock</a> (My microbusinesses actually sucked, but that&#8217;s because I had too many of them. However, the principles are still sound: creating operations manuals and checklists for your endeavors will make your life easier)</li>
<li><a title="It's all about action" href="https://www.happenchance.net/information-is-overrated/">Information is Overrated</a></li>
<li><a href="https://www.happenchance.net/5-simple-yet-powerful-tools-for-defeating-resistance/">5 Simple-Yet-Power Tools for Defeating Resistance </a></li>
<li><a href="https://www.happenchance.net/stop-whining-and-start-grinding/">Stop Whining and Start Grinding</a></li>
</ul>
<p>This year I&#8217;ve also received several kind emails from readers. For the most part, they just wanted to thank me for writing something they read here. This feedback is enormously gratifying, and if you have any suggestions for what you&#8217;d like to see in the coming year, please <a href="https://www.happenchance.net/contact/">contact me </a>and let me know. Your feedback helps me shape this site.</p>
<h2>See You Later!</h2>
<p>As always, thanks for reading. I&#8217;ll be back in a couple months. Until then, I hope you create something amazing!</p>
<p>&nbsp;</p>
<p><small>Photo credit: <a href="http://www.flickr.com/photos/jurvetson/1498601810/sizes/z/in/photostream/">jurvetson</a></small></p>
<div class='yarpp-related-rss yarpp-related-none'>
<p>No related posts.</p>
</div>
]]></content:encoded>
					
		
		
			<dc:creator>seth@happenchance.net  (Seth)</dc:creator></item>
		<item>
		<title>Why I Quit Freelancing and Got a Job (plus the Week 50 roundup)</title>
		<link>https://www.happenchance.net/doing-too-much-and-the-week-50-roundup/</link>
		
		
		<pubDate>Sat, 17 Dec 2011 04:01:20 +0000</pubDate>
				<category><![CDATA[Defeat Resistance]]></category>
		<category><![CDATA[Luck-making]]></category>
		<category><![CDATA[Work Smarter]]></category>
		<category><![CDATA[annual review]]></category>
		<category><![CDATA[endurance]]></category>
		<category><![CDATA[freelancing]]></category>
		<category><![CDATA[health insurance]]></category>
		<category><![CDATA[morbid]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[work smarter]]></category>
		<guid isPermaLink="false">https://www.happenchance.net/?p=3164</guid>

					<description><![CDATA[I&#8217;m not the sharpest scythe in the shed, but sometimes my coal-dust addled brain learns a lesson or two from its mistakes experience. To wit: in 2011, I did all kinds of enterprising work to support myself outside the old 9-to-5: freelance writing, micro-affiliate sites, web design, junk peddling on ebay and craigslist, English teaching, and a couple other [&#8230;]<div class='yarpp-related-rss'>

<b>You may also enjoy: </b><ol>
<li><a href="https://www.happenchance.net/how-creating-systems-can-make-your-microbusiness-rock/" rel="bookmark" title="How Creating Systems Can Make Your Microbusiness Rock">How Creating Systems Can Make Your Microbusiness Rock </a></li>
<li><a href="https://www.happenchance.net/how-to-make-100-per-month-writing-articles-for-the-intertubes/" rel="bookmark" title="How to Make $100 Per Month Writing Articles for the Intertubes">How to Make $100 Per Month Writing Articles for the Intertubes </a></li>
<li><a href="https://www.happenchance.net/lessons-from-2-failed-appalachian-trail-thru-hike-attempts/" rel="bookmark" title="Lessons From 2 Failed Appalachian Trail Thru-Hike Attempts">Lessons From 2 Failed Appalachian Trail Thru-Hike Attempts </a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-3195" title="Scythe on a wall" alt="Scythe on a wall" src="https://www.happenchance.net/wp-content/uploads/2011/12/sycthe.jpg" width="384" height="339" srcset="https://www.happenchance.net/wp-content/uploads/2011/12/sycthe.jpg 640w, https://www.happenchance.net/wp-content/uploads/2011/12/sycthe-300x264.jpg 300w" sizes="(max-width: 384px) 100vw, 384px" /></p>
<p>I&#8217;m not the sharpest scythe in the shed, but sometimes my coal-dust addled brain learns a lesson or two from its <span style="color: #000000;"><del>mistakes </del></span>experience.</p>
<p><em>To wit</em>: in 2011, I did all kinds of enterprising work to support myself outside the old 9-to-5: freelance writing, micro-affiliate sites, web design, junk peddling on ebay and craigslist, English teaching, and a couple other things.</p>
<p>I lived modestly and made enough to get by, but I still put in way too many 70-80-hour weeks. Now, every week, I spend half as many hours promoting tourism in my state for a modest salary and health insurance for my family.</p>
<p>In short, I quit freelancing because a cool opportunity came along and I was tired of getting my ass kicked by the patchwork Franken-career I had created for myself.  I realized I needed a smarter way to earn a living. My decision isn&#8217;t right for everyone, but at this time, it&#8217;s the best decision for me.</p>
<p>#</p>
<p>When I think about all the work I did, I debate whether I&#8217;m the world&#8217;s shittiest businessman, or if I was just trying to do too much.</p>
<p>Because I&#8217;m not without ambition, and since a struggling book publisher once credited me with saving his business, I&#8217;m going to go with the latter.</p>
<p>I suppose I could always sell ebooks that tell you how to make a living selling ebooks about how to make a living selling ebooks [/spammy lifestyle design blog rant].</p>
<p>In all seriousness, if a person diligently pursued any <strong>one</strong> of these activities, they could probably support themselves. My problem was that I just had to try them all.</p>
<p>So what&#8217;s the lesson?</p>
<h3><em>Do less, better. </em></h3>
<p>Or, in the words of productivity guru David Allen: <em>You can do anything, but not everything</em>.</p>
<p><strong>The bonus: </strong>I now have more time to work on things that are wildly fun and stupendously unprofitable!</p>
<p><strong>Links for you</strong></p>
<ul>
<li>The end of the year is a great time to both look back and look forward. While I usually end my year with several marathon journaling sessions, these aren&#8217;t for everybody. If you&#8217;re interested in how to review and prepare for the coming year, Chris at Art of Non-Conformity has a great post on <a href="http://chrisguillebeau.com/3x5/how-to-conduct-your-own-annual-review/">How to Conduct Your Annual Review</a>. While you&#8217;re there, check out his free new report <a href="http://chrisguillebeau.com/3x5/the-tower/">The Tower</a>.</li>
<li><a href="http://everydaybright.com/2011/12/the-last-year-of-your-life/">What if 2012 were the last year of your life?</a> Pro tip: morbid thoughts can do wonders for your work ethic<a href="http://feedproxy.google.com/~r/EverydayBright/~3/5nsVdt6R5o8/" target="_blank"><br />
</a></li>
<li>Another great post from Lateral Action called <a href="http://lateralaction.com/articles/creative-endurance/">6 Steps to Building Your Creative Endurance.</a></li>
<li>If I had read this 12 months ago, would I have listened? <a href="http://the99percent.com/tips/7116/How-To-Accomplish-More-By-Doing-Less">How to Accomplish More by Doing Less</a></li>
<li>Here&#8217;s a<a href="http://www.creativesomething.net/post/14309368349"> cool poster</a> from Tanner at Creative Something.</li>
</ul>
<div>Photo credit: <a href="http://www.flickr.com/photos/sidibousaid/5997697480/sizes/z/in/photostream/">sidibousaid</a></div>
<div class='yarpp-related-rss'>
<p><b>You may also enjoy: </b><ol>
<li><a href="https://www.happenchance.net/how-creating-systems-can-make-your-microbusiness-rock/" rel="bookmark" title="How Creating Systems Can Make Your Microbusiness Rock">How Creating Systems Can Make Your Microbusiness Rock </a></li>
<li><a href="https://www.happenchance.net/how-to-make-100-per-month-writing-articles-for-the-intertubes/" rel="bookmark" title="How to Make $100 Per Month Writing Articles for the Intertubes">How to Make $100 Per Month Writing Articles for the Intertubes </a></li>
<li><a href="https://www.happenchance.net/lessons-from-2-failed-appalachian-trail-thru-hike-attempts/" rel="bookmark" title="Lessons From 2 Failed Appalachian Trail Thru-Hike Attempts">Lessons From 2 Failed Appalachian Trail Thru-Hike Attempts </a></li>
</ol></p>
</div>
]]></content:encoded>
					
		
		
			<dc:creator>seth@happenchance.net  (Seth)</dc:creator></item>
	</channel>
</rss>