We cut through the nonsense of the daily world.
Read more at the sourceAll posts by Mike Burns
You Could Invent Object-Oriented Programming
In which we recreate OO using lambdas and closures.
Read more at the sourceMeditations on a Class Method
<p>I keep a file of code I like. When looking for inspiration, I read through the
file. It’s short; I often re-write the samples to be nothing but the minimally
inspiring thought.</p>
<p>Here is the first snippet:</p>
<pre><code>def self.run(user)
new(user).run
end
</code></pre>
An Explained psqlrc
<p>Let’s walk through my short psqlrc(5) to see what I’ve set, and to inspire you
to find your own configuration that fits into your workflow. Here is my
complete psqlrc:</p>
<pre><code>\set ON_ERROR_ROLLBACK interactive
\set COMP_KEYWORD_CASE upper
\set HISTFILE …</code></pre>