Reading List
The most recent articles from a list of feeds I subscribe to.
Reminder: JSON.stringify can create Multi-line, formatted and filtered strings from JSON
You can use `JSON.stringify()` to turn a JSON object into a string. let obj = {“a”: 1, “b”: 3, “c”: “boo!”}; console.log(JSON.stringify(obj)) This results in a single line string: {
The Developer Advocacy Handbook is now available as an eBook on Leanpub and Amazon Kindle
People often asked me if I can make the Developer Advocacy Handbook available as an eBook to read on their devices. When Jens Oliver Meiert also asked me I told him there were no immediate plans, so he took on that task and converted the book. You can now purchase the eBook either on Amazon […]
Unless you’re in the mafia, your company isn’t your family
Dedication to your employer is a tradition in some cultures. My father was a dedicated coal miner and when the mine closed up he became a factory worker. He worked 40+ years in that factory in three shifts. He kept complaining about “those up there” in the hierarchy and yet the company was a big […]
AI Code completion is like cruise control – and that’s great news for bigger teams
When machine learning assisted code completion came around in the form of GitHub CoPilot and the fast-follow Amazon Codewhisperer it was impressive to see just how fast new ideas follow the Gartner Hype Cycle. The first impression was that this would be the end of development as we know it and that it is yet […]
Dear Console,…
The browser developer tools Console is so much more than a place to log your messages. It is a way for you to programatically access the currently shown document and window, read out values and change them. On top of that, it has a powerful API of helper methods to make that easier than with […]