You are here |
ianozsvald.com | ||
| | | |
blog.martinig.ch
|
|
| | | | Architecture is an important asset for good programming and the notion of "pattern" is here to help us apply already trusted code architecture solutions to common problems. Jason McDonald has done a wonderful job to group some of them in a document that should be useful to most software developers. Go to his blog to | |
| | | |
lincolnmullen.com
|
|
| | | | I often have small snippets of Markdown that I want to copy to the clipboard and then paste as HTML. I thought about writing an extension for Visual Studio Code, or a custom script for Boop. But that seemed like a lot of work for a simple task. And then I remembered: Unix. pbpaste | pandoc | pbcopy There is a one-liner which will work on a Mac to paste Markdown into Pandoc and then copy the resulting HTML back to the clipboard. | |
| | | |
www.ryangittings.co.uk
|
|
| | | | At the beginning of this year, I wanted to review my workspace setup, in terms of both physical and technical worlds, and try to become more productive, both when on the road traveling, and at home. During this process, quite a few tools have been changed to try and become more efficient, and make my transition between devices easier. | |
| | | |
aimatters.wordpress.com
|
|
| | There is a strong principle in software engineering of reusing code wherever possible. It's considered so important, that it's got its own TLA: DRY ("Don't Repeat Yourself"). In other words, don't reinvent the wheel. There are obvious benefits to this. Nobody wants to type the same piece of code over and over. Sowrite it... |