I find myself using Linux more and more as my go-to OS, since I’m not developing anything windows specific most of the time. Occasionally I’d…
fullstack thoughts
I find myself using Linux more and more as my go-to OS, since I’m not developing anything windows specific most of the time. Occasionally I’d…
So, let’s say you’re working on a shiny new piece of software, which needs to somehow integrate with existing legacy software. The big problem is…
Changing database configuration settings in a production environment is not (or should no bet) a common thing. Having similar staging or test environments helps ruling…
As many .NET developers transitioning to the world of Node, I started looking for an ORM. After some research, I found sequelize which seems widely adopted by the community.
I’m using typescript, and I quickly found the way to define the model with sequelize a bit too verbose, and especially a duplication of the typescript class.
That’s when I discovered sequelize-typescript, which provides this bridge, and leverages typescript’s typings, so mapping can be transparent if so we wish. All it takes is to extend a base Model class, and some annotations.
I’ve just cleared the AWS Cloud Solutions Architect – Associate exam with 95%, and this post contains a comprehensive list of the resources that helped getting there.
Having to temporarily wear the DBA hat for a couple of days, I found myself backing up and restoring lots of databases, across different environments.
Lately I had to provide the location of our SQL server error logs to an infra team, so they could be copied somewhere else. Raising a…
One of these days I had the need to create and extensible enum. Extensible in a way that allows people to add items to it,…
We are always learning, sometimes not the best way As most of the times, when I develop in JavaScript, I end up using the chrome…
After programatically provisioning a new SPWeb object, it is sometimes necessary to create a new entry on the root web top bar menu.So far so…