Developers Notes

My Journey as Software Architect

Entries from 2019-06-01 to 1 month

React Native Dark Mode

in some apps, there is dark mode features, you can easily build the theme to set the theme to color you want using this code as base gistc5d4a450365051edc98b7df71e113d6a after that you can call it from the component gist59321741af999708a4d…

Sequelize CheatSheet

Join Queries First, assign the related table in the model, you can put it on bottom of model, before export function User.hasMany(Post, {foreignKey: 'user_id'}) Post.belongsTo(User, {foreignKey: 'user_id'}) then you can call it using Post.…

Git CLI Cheatsheet

Git

Basic git Init ( on your code root directory run ) git init git commit -m "Initial Commit" git remote add origin "<path to git url>" git push -u origin master Basic git push git add . git commit -m "<your commit text>" git push origin master / git push origin <branch> Checkout to b</branch></your></path>…