Tag: code
-
Technical debt and vibe-coding
When looking at a system as-it-is, my perspective remains: tech debt is the state of a system that captured the understanding of the problem when it was created and doesn’t fully reflect today’s understanding. The (obsolete) understanding applies to both functional and non-functional requirements, so it might be about the business, technical, scaling, or another…
-
First online article on technical debt
Ward Cunningham introduced the metaphor underlying the term technical debt in a 1992 experience report, where he described how his company incrementally extended a piece of financial software: Shipping first time code is like going into debt. A little debt speeds development so long as it is paid back promptly with a rewrite. Objects make…
-
Encounter: Cursorless is alien magic from the future – Xe Iaso
Is the future of code input voice? Just imagine if you started this way… Source: Cursorless is alien magic from the future – Xe Iaso
-
ribosome (A simple generic code generation tool)
A simple generic code generation tool Source: ribosome
-
Convert XML to JSON using XSLT
With increasing service reuse came the need for portable data formats, XML was one of the first widely used, but lately JSON is in bloom. I needed to convert XML into JSON format for easier consumption on the client, so here’s an article describing the way to do it using XSLT with code and examples.
-
Once upon a browser
Fun bookmarklet to randomly rotate elements on the page, based on Eric Meyer’s idea.
-
Evolution Of The JavaScript Loop
Sometimes, the way the syntax is changing can lead to huge improvements in coding and readability. One great example is JavaScript’s forEach.
-
Game Of Life JavaScript Implementation
An article about implementing and redesigning the Conway’s Game Of Life in JavaScript.