I started getting this error while pip installing a package from PyPi today: ssl.SSLError: [SSL: […]
Category: Code
High-Level SIL Optimization in the Swift Compiler
Matt Rajca discovered last year that Swift’s Array.append(element) is 6x faster than Array operator+=(collection). This […]
Toggling Transparency in iTerm2
I recently started developing full-time in Vim again because all my code has to run […]
Algebraic Data Types in Swift
An algebraic data type is a type that’s the union of other data types. That […]
A Faster Horse: The Future Of Web Development
Let’s talk about the rise and fall of technologies. There’s a neat graphical representation of […]
Requiring Modules in CouchDB
Thanks to node.js, using the same code on the server and client is easier than […]
Jankproof Javascript
Javascript is getting faster all the time, but things like long lists of complex cells […]
Tips For Debugging JavaScript Race Conditions
Race conditions are tedious to debug, even in a single-threaded language like JavaScript. Here are […]