- Frontend Dev – Build Tooling and Deployment
What happens between your source and the files a browser downloads, and how those files get somewhere real. Bundling, the dev server, environment variables and why they are not secret, static hosting on a CDN, cache headers and content hashing, the SPA fallback that 404s every deep link if you forget it, and a CI pipeline worth having.
- Frontend Dev – Testing
How you change code you did not write without being afraid. What is worth testing in a UI and what is not, testing what the user sees rather than what the component holds, querying by role so a test breaks when the app breaks and not when a class name changes, and where end-to-end tests earn their keep.
- Java Code Snippets
The last post in the track is a reference rather than a lesson: the lookups you will make over and over, in one place. Every snippet here compiles as written against Java 21. Strings Numbers and parsing Dates and times Collections Iterating Streams Files Records, Optional and switch Async with…
- React – Interview Questions
Twenty-four senior-level questions and answers — what actually triggers a re-render, why three setState calls only count once, what breaks when you lie to a dependency array, a five-question section on Context, when memo silently does nothing, what error boundaries do not catch, and how to diagnose a slow page. Grounded in real code.
- Python Advanced – Interview Questions
The questions that actually get asked, with answers that show understanding rather than recall. Mutable defaults, is versus ==, the GIL and what it does not mean, shallow copies, decorators, generators, and how to answer when you do not know.