Home
Canaan's Blog
Cancel

blog database design

we’ll be designing a simple blog database schema, with functionality that’ll allow us to do CRUD and some other operations in postgres flavored sql, the end result will look like this: link to...

Android dev environment

basically an on the go linux development environment for your tablet and phone, i mainly use it to sync data between my devices using git, and some light dev work when i don’t have access to my pc....

Windows scheduled tasks

sometimes you wanna automate a process like backing up a folder or cleaning up the desktop or some other thing, to do that you can schedule a task to be executed by windows task scheduler. on linu...

on-demand DBMS

instead of running multiple server (mySql, SQLServer, Postgres, . . .) and have to either stop/start their service, you can just set them up using docker and use them when u want, or have multiple ...

Home lab identity server

before we begin always see the Documentation and examples provided by the creators ! Why you would do this it can be a one stop shop for authentication to all new apps / projects you’d create in ...

dapper auto apply migrations

Using Dapper to auto-migrate a postgres database and create the database code example : HERE create an Extension folder with a HostExtensions static class. inside it create a static gene...

SSH setup

what’s ssh? SSH stands for Secure Shell. It is a secure network protocol that allows secure communication and remote access between two devices. Gen a key Both win and Unix share the sam...