Command Palette
Search for a command to run...
Comments
Join the discussionNo comments yet. Be the first to comment.
More from this blog
The real unfair advantage is focus
"unfair" advantages are often associated with things that are external. Better network, funding, timing. But in practice, the biggest one I've seen is focus. I recently changed my working hours from 9
Vibe-engineering an OpenAPI compatible API authoring tool
As an engineering lead, I spent most of my time architecting systems, writing issues, and translating business requirements into clean technical requirements which involve some form of API documentation and authoring DTOs. Defining the API as a contr...
You aren't qualified until you've lived the role
We overestimate preparation. There are parts of a role which you simply cannot simulate. Intelligence and effort alone will never make a fresher "qualified" for a job on day one. You can learn syntax,
Race conditions in async code
What do you think is wrong with this particular block of code? async function createEntity(name: string) { const existing = await this.userRepo.findOne({ where: { name } }); if (existing) throw new ConflictException('Name already exists'); awai...