As configured in my dotfiles.
start new:
tmux
start new with session name:
| //@root | |
| touch vs-extensions.txt | |
| vim vs-extensions.txt | |
| // Paste all of these | |
| akamud.vscode-theme-onedark | |
| formulahendry.auto-rename-tag | |
| hnw.vscode-auto-open-markdown-preview | |
| coenraads.bracket-pair-colorizer-2 | |
| streetsidesoftware.code-spell-checker |
| My Projects: | |
| loan_calculator: BootStrap -> | |
| TaskList: BootStrap -> Basic HTML page and JS uses Local Storage | |
| crwn-clothing: REACT -> E-Commerce Clothing Store | |
| monsters-rolodex: REACT -> no BackEnd connects to jsonplaceholder |
As configured in my dotfiles.
start new:
tmux
start new with session name:
A collection of links to the excellent "Composing Software" series of medium stories by Eric Elliott.
Edit: I see that each post in the series now has index, previous and next links. However, they don't follow a linear flow through all the articles with some pointing back to previous posts effectively locking you in a loop.
| PROMPT="%(?:%{$fg_bold[green]%}👾:%{$fg_bold[red]%}👾 )" | |
| PROMPT+=' %{$fg[cyan]%}%c%{$reset_color%} $(git_prompt_info)' | |
| ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}git:(%{$fg[red]%}" | |
| ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} " | |
| ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗" | |
| ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" |
| // Smooth Scrolling | |
| $('.btn').on('click', function(e) { | |
| if (this.hash !== '') { | |
| e.preventDefault(); | |
| const hash = this.hash; | |
| $('html, body').animate( | |
| { | |
| scrollTop: $(hash).offset().top | |
| }, | |
| 800 |