TIL
read more
Python String Interpolation
Python string interpolation is available via few of interfaces, as Chris at Hashrocket taught me.
TIL
read more
Light Bulb Series Encoding
I needed to replace an “A19” light bulb. What does “A19” mean?
TIL
read more
Vim Jump to Previous Occurrence
In Vim Normal mode, *
searches forward for the next occurrence of word. But what goes back?
TIL
read more
Print Python Function Definition With Getsource
If I’ve defined a function in the Python REPL, I can read its definition with
inspect.getsource
.
TIL
read more
Python REPL Help
In the Python REPL, the help
function provides a help message about its argument.
TIL
read more
Kill MacOS Processes by Name
I have a cron job that opens a program every day at a certain time. How can I also close it with a cron job?
TIL
read more
pbcopy, no cat
My friend Josh recently wrote about a common mistake using pbcopy
, Apple’s pasteboard utility.
TIL
read more
Pause Script Execution in Chrome
Anytime Chrome loads a webpage, you can pause script execution without a debugger.