Skip to content

Instantly share code, notes, and snippets.

View davidoort's full-sized avatar
🏠
Working from home

David Oort Alonso davidoort

🏠
Working from home
View GitHub Profile
@davidoort
davidoort / web_typing_animation.html
Last active February 22, 2022 15:44
Web Typing Animation
<style>
html,
body {
font-family: 'Poppins', sans-serif;
padding: 0em 0em;
font-size: 16px;
background: #222;
color: #000;
background-color: transparent;
}
@davidoort
davidoort / history-search.sh
Last active October 28, 2020 11:07
History search bash
# Run the following in your terminal replacing USERNAME by your username
# Incremental history searching
sudo bash -c 'cat > /home/USERNAME/.inputrc << "EOF"
"\e[A": history-search-backward
"\e[B": history-search-forward
"\e[C": forward-char
"\e[D": backward-char
EOF'