Skip to content

Instantly share code, notes, and snippets.

View ryancsf's full-sized avatar
😁
Every day is a roll of the dice

ryancsf ryancsf

😁
Every day is a roll of the dice
View GitHub Profile
This is my atom configuration
Atom Shortcuts
1. Multiple cursors. Select a word/statement, press cmd+d multiple times to select multiple, then edit multiple
2. Delete entire line : ctrl + shift + k
3. Multiple cursors plus, alt + up or down to create own multiple cursors
4. alt+cmd+o to open or create new file in the current directory
5. shift+cmd+c color picker
6. ctrl + cmd + a = auto align
7. beautify
@ryancsf
ryancsf / PULL_REQUEST_TEMPLATE.md
Last active August 29, 2018 10:11
Pull Request Template

Screenshots

Setup Procedure:

  1. Deploy branch EXP-49 first to get backend API
  2. yarn to install new package
  3. yarn start

Testing Procedure:

  • Have you tested in expense?
  • Can we do CRUD (Create/Read/Update/Delete) operation on expense item?
@import url('https://fonts.googleapis.com/css?family=Merriweather|Open+Sans');
body {
font-family: 'Open Sans', sans-serif;
}
div#navbarone,
div#navbartwo {
position: absolute;
}
@ryancsf
ryancsf / cobalt-dark.css
Last active September 14, 2019 12:59
Just Read Theme
@import url('https://fonts.googleapis.com/css?family=Lora|Source+Sans+Pro:400,700');
body {
font-family: 'Lora', serif;
background-color: #0c1b34;
font-size: 25px;
color: rgb(221, 221, 221);
text-rendering: optimizelegibility;
line-height: 1.5em;
}