Today I came across A Guide to Streams in PHP: In-Depth Tutorial With Examples.
Author Archives: Jay Jay
Falsehoods Programmers Believe About Phone Numbers
Some notes from Google about Falsehoods Programmers Believe About Phone Numbers.
Brother P-touch PT-H105 settings
I made some notes about the settings of my Brother PT-H105 label maker.
Best solder wire
So over here the author recommends C511 solder:
Once you find a good brand of solder that flows smoothly, doesn’t make a mess, and gives you excellent joints, you don’t easily switch to something else. A spool of C511 solder isn’t cheap, but it offers amazing quality. I’ve been forced to use cheap solder in the workplace before, and usually end up taking in my Loctite solder to use. Some cheap solder flows like mud or has flux that makes a huge mess on your board. C511 is a no-clean solder that is an RoHS compliant Tin/Silver/Copper blend. You can get it in a range of diameters; I’ll typically have a roll of 0.56mm and a roll of 1.63mm on hand. The 0.56mm is good for fine pitch components, and the 1.63mm for tinning thick wires or large components.
Soldering Crash Course
Today I watched Soldering Crash Course: Basic Techniques, Tips and Advice.
How to create a file and mount it as a filesystem
As seen over on How do I create a file and mount it as a filesystem? the answer is that you need to use the -o loop option:
mount -o loop /path/to/file /path/to/mount
Basic schema inference for JSON
Today via lobsters: Shape a TypeScript library for schema inference.
ES2021 Features
Today via r/programming: ES2021 Features.
The Baked Data architectural pattern
Today via r/programming: The Baked Data architectural pattern. It’s a good idea. Basically deploy your data/content with your code.