This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"errors": { | |
"session": [], | |
"playlist": [] | |
}, | |
"session": { | |
"currentUser": { | |
"id": 444, | |
"username": "sys-g", | |
"follow_playlists_ids": [663, 664, 668, 723, 734, 735, 744, 758, 759, 767, 776, 778, 780], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
/* | |
// Place your snippets for JavaScript here. Each snippet is defined under a snippet name and has a prefix, body and | |
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
// same ids are connected. | |
// Example: | |
"Print to console": { | |
"prefix": "log", | |
"body": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.colorTheme": "Material Theme", | |
"terminal.external.linuxExec": "xterm", | |
"atomKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.formatOnPaste": true, | |
"workbench.iconTheme": "eq-material-theme-icons", | |
"workbench.colorCustomizations": { | |
"activityBarBadge.background": "#498e38", | |
"list.activeSelectionForeground": "#388E3C", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
alias sl="ls" | |
alias ls="ls -G" | |
alias irb="pry" | |
alias be="bundle exec" | |
alias gaa="git add -A" | |
alias gcm="git commit -m " | |
alias ber="bundle exec rspec" | |
alias bi="bundle install" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### load extenstions ### | |
source "$HOME/.git-completion.bash" | |
source "$HOME/.git-prompt.sh" | |
### ENV variables ### | |
# look for commands in these places | |
export PATH="/Applications/Postgres.app/Contents/Versions/latest/bin:$PATH" | |
# make vim the default text editor | |
export EDITOR="vim" |