Skip to content

A list of commands, cheatsheets, and other resources for reference

Notifications You must be signed in to change notification settings

wesokuhara/genie

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 

Repository files navigation

Genie

Helpful commands, references, and cheatsheets

React

React Cheatsheet
React Tutorials by Egghead.io
Making Sense of React Hooks
8 Ways to Handle React State by Cory House

Libraries

Snippets

Redux

Redux Cheatsheet
Redux Thunks
10 Tips for Better Redux Architecture

MobX

Ten minute introduction to MobX and React

Ruby on Rails

CRUD Actions
Creating a Migration

Git

  • Revert back to the last commit, removing any local changes: git reset --hard HEAD
  • Undo latest commit, keeping any local changes: git reset HEAD^
  • Unstage a staged file or files: git reset [<FILE>]
  • Remove a file from git tracking git rm --cached <FILE>
  • Edit the latest local commit message: git commit --amend
  • Revert a file to last committed local version: git checkout -- <FILE>
  • Rename your current working local branch: git branch -m <NEW_NAME>

Markdown

Markdown Cheatsheet

Ramda

Ramda Cookbook

CSS

Tags are for semantics, IDs are for references, classes are for styles.

Misc

  • Show globally installed NPM packages: npm ls -g --depth=0

About

A list of commands, cheatsheets, and other resources for reference

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published