Reading List
The most recent articles from a list of feeds I subscribe to.
One line of CSS to add basic dark/light mode
When you have your OS set up in dark mode seeing bright form elements is grating. By starting your style sheet with a single line of CSS, you can make sure that people using dark mode get dark form elements and backgrounds and those using light mode, light ones. You can see it in this […]
GitHub Copilot explaining code and translating it from one language to another
GitHub Copilot is already the dog’s bollocks, but I just installed the GitHub Labs extension and my jaw is still open. Code explanation This one allows you to highlight a piece of code and get explanations of what it does: For example: async function downloadZipFile(downloadUrl) { await fs.remove(‘out/edge’); const file = fs.createWriteStream(‘edge.zip’); https.get(downloadUrl, function(response) { […]
Do we have a lack of developers or a false assumption what the job is?
Last week I was at build Europe and talked to a lot of people about the developer market. The general consensus was that there is a huge lack of developers to hire. That there is not enough talent. When I poked further and asked about how people assess talent, it boiled down to people having […]
What people think that web developers do vs. what we really do
What people think web developers do: Code, deploy and use, with coding being the main task What web developers really do: Coding Require random 3rd party framework code Updating Node/NPM Try the last command again with `sudo` Checking on mobile Shaking fist towards Cupertino Looking things up on the web Pasting Stack Overflow solutions Resize […]
A teleprompter script for video recordings
Currently I am recording a lot of videos and I found the fastest way to do them is to write the script and read it out to my camera and then record screencasts and edit them to fit the narration. In order to make sure I read from the top of the screen and reading […]