Blog
My best month in years
What causes motivation? Damned if I know! 06 Jan 2021I’ve just had the most productive month since I was laid off in April, and the most productive month without pay in years. Why?
Top 11 principles & practices of programming
Fourth draft 08 Apr 2020“For the year 2020, we determined the total Cost of Poor Software Quality (CPSQ) in the US is $2.08 trillion (T).” - CISQ report published after this blog post
Better floating point: posits in plain language
All about fractional numbers inside a computer 15 Dec 2019Welcoming all unums!
Participate in the issues!
The blog is dead, long live the blog 20 May 2019So, I’m starting a new job tomorrow, which leaves me several hours to write this post, finish the issue I’m writing on GitHub right now (concurrently with myself over on this page) and maybe fiddle with LES3 a little.
Mostly-CSS Drop-down Combo Boxes
Line-by-line: advanced CSS tricks for click-to-open drop-down lists and menus 14 Aug 2018For as long as I can remember, there were always two kinds of selectors:
How to put a site on GitHub
28 Jun 2018GitHub has made it very easy to get started. If you already have a repo that you want to add web site for, just create a docs folder in the repo and start adding .md (Markdown) files to it; in particular index.md will be recognized as the home page. Then you can select a theme and view your pages as explained here. Links to other markdown files will automatically be converted to html links (for example if you write [link](file.md)
, it becomes <a href="file.html">link</a>
.) You can also write content pages in HTML, but it is rarely necessary. It is possible to insert bits of HTML in your Markdown code if necessary (and Markdown in your HTML).
TypeScript+React Primer
12 May 2018For anyone interested in understanding the JavaScript ecosystem so they can start making TypeScript/React apps, I’ve just posted a detailed five-part tutorial on the subject at http://typescript-react-primer.loyc.net… with GitHub repo of all the examples here. Enjoy!
My failure with WebAssembly
03 Jul 2017In my efforts to contribute to WebAssembly, there’s no doubt that I failed completely. I knew how important it was - as I told my wife, “if I can make this happen, it will be the most important thing I have ever done in my life.” But I allowed myself to lose confidence and let fear of failure - fear of being ignored - to take over.