Web Components are a new browser feature that provides a standard component model for the Web — WICG/web-components
<my-element>Hello</my-element>
A web native alternative to, eg. React and Vue.
Web Components are a new browser feature that provides a standard component model for the Web — WICG/web-components
<my-element>Hello</my-element>
A web native alternative to, eg. React and Vue.
{ | |
"sublimeTextKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.formatOnPaste": true, | |
"git.path": "C:\\Program Files (portable)\\cmder\\vendor\\git-for-windows\\bin\\git.exe", | |
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\bash.exe", | |
"terminal.external.windowsExec": "ubuntu", | |
"workbench.colorTheme": "Afterglow Remastered", | |
"files.insertFinalNewline": true, |
A command line fuzzy finder
https://github.com/junegunn/fzf
Simplified and community driven man pages with useful examples
## Git | |
alias ga='git add' | |
alias gb='git branch --sort=-committerdate' | |
alias gbr="git for-each-ref --sort=-committerdate refs/heads --format='%(HEAD)%(color:yellow)%(refname:short)|%(color:bold green)%(committerdate:relative)|%(color:blue)%(subject)|%(color:magenta)%(authorname)%(color:reset)'|column -ts'|'" | |
alias gco='git checkout' | |
alias gcm='git commit -m' | |
alias gcv='git commit -v' | |
alias gd='git diff' | |
alias gl="git log -n 15 --graph --date-order --date=relative --pretty=format:'%C(red)%h%C(reset)%C(auto)%d%C(reset) %s %C(green)(%cr) %C(yellow) %an %C(reset)'" | |
alias gm='git merge' |
Win + Alt + P
{bash}
with the following settings:
/icon "%CMDER_ROOT%\cmder.exe"
/icon "C:\Program Files (x86)\Git\etc\git.ico"
"C:\Program Files (x86)\Git\bin\sh.exe" -l -new_console:d:%USERPROFILE%
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"AdvancedNewFile", | |
"ApacheConf", | |
"Color Highlighter", |
// Super simple mobile-first breakpoint mixin: | |
@mixin breakpoint($from) { | |
@media screen and (min-width: $from) { @content; } | |
} | |
// Example usage: | |
$small: 480px; | |
nav { | |
@include breakpoint($small) { | |
display: none; |
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Theme - Afterglow/Afterglow.tmTheme", | |
"default_line_ending": "unix", | |
"enable_tab_scrolling": false, | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
"*~", | |
"*.exe", |
## Global variables: | |
export PATH=/c/Program\ Files/cwRsync/:/c/Users/Nick/AppData/Roaming/npm/:$PATH | |
export VAGRANT_HOME=/c/HashiCorp/Vagrant/.vagrant.d/ | |
## Custom Bash Prompt: | |
export PS1='\[\033]0;$MSYSTEM:${PWD//[^[:ascii:]]/?}\007\]\n\[\033[32m\]\u@\h \[\033[33m\]\w\[\033[36m\]`__git_ps1`\[\033[0m\]\n$ ' | |
## For nice diffs: | |
# install diff-so-fancy (npm -g diff-so-fancy) | |
# set pager to use it (git config --global core.pager "diff-so-fancy | less --tabs=4 -RFX") |