Skip to content

Instantly share code, notes, and snippets.

View vlsulliv's full-sized avatar
🧍
Hire me for your Full Stack Web Developer role.

viiincee vlsulliv

🧍
Hire me for your Full Stack Web Developer role.
View GitHub Profile
@vlsulliv
vlsulliv / .bash_profile
Last active May 13, 2023 18:14
Bash Profile
# generated by Git for Windows
if test -f ~/.bashrc && . ~/.bashrc; then
fi
if echo $PATH | grep -v $HOME/bin > /dev/null; then
export PATH="$HOME/bin:$PATH"
fi
# =======================
# Auto-launching ssh-agent on Git for Windows
@vlsulliv
vlsulliv / Bash Shortcuts
Last active May 13, 2023 15:51
Bash Cheat Sheet
Bash Shortcuts
==============
![visual cheetsheet](https://raw.githubusercontent.com/fliptheweb/bash-shortcuts-cheat-sheet/master/moving_cli.png)
## Moving
| command | description |
|----------|--------------------------------|
| ctrl + a | Goto BEGINNING of command line |
@vlsulliv
vlsulliv / .bash_aliases
Last active May 13, 2023 15:51
Bash Aliases
# =============================================================================
# ALIASES
# =============================================================================
# misc
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
alias path='echo -e ${PATH//:/\\n}'
@vlsulliv
vlsulliv / github_emoji.md
Created November 14, 2021 09:41
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
^ matches beginnig of a line
$ matches end of line
. matches any chatacter (except eol)
\s matches whitespace
\S matches any non whitespace
* matches a repeat of a character zero or more times
*? matches a repeat of a characrer zero or more times (non-greedy)
+ matches a repeat of a character one or more times
+? matches a repeat of a character one or more times (non greedy)
[aeiou] matches a single character in the lisetd set