All Projects → cherkavi → cheat-sheet

cherkavi / cheat-sheet

Licence: other
collection of cheat sheets

Projects that are alternatives of or similar to cheat-sheet

Asciidots-Cheat-Sheet
My personal Asciidots Cheat Sheet in .jpg .odt .pdf .png and obviously in .txt
Stars: ✭ 17 (-88.67%)
Mutual labels:  cheat-sheets, cheatsheet, cheatsheets, cheat-sheet
systems-programming-cheat-sheet
Cheat sheet for x86-64 Unix systems programming
Stars: ✭ 328 (+118.67%)
Mutual labels:  cheat-sheets, cheatsheet, cheatsheets, cheat-sheet
memo-dev
Knowledge base, Today I Learned, Cheatsheet ... Call this as you want ...
Stars: ✭ 13 (-91.33%)
Mutual labels:  cheat-sheets, cheatsheet, cheatsheets, cheat-sheet
cheat-sheets
Awesome Cheat Sheets
Stars: ✭ 44 (-70.67%)
Mutual labels:  cheat-sheets, cheatsheet, cheat-sheet
Kubectl Sheetcheat
The Definitive Kubectl Sheetcheat. ⭐ Give it a star if you like it. Work (always) in progress !
Stars: ✭ 119 (-20.67%)
Mutual labels:  snippets, cheatsheet, cheatsheets
dev-cheatsheets
A collection of code snippets and CLI guides for quick and easy reference while coding
Stars: ✭ 33 (-78%)
Mutual labels:  snippets, cheatsheet, cheatsheets
cheat-sheet-pdf
📜 A Cheat-Sheet Collection from the WWW
Stars: ✭ 728 (+385.33%)
Mutual labels:  cheat-sheets, cheatsheet, cheat-sheet
Cheatsheets.pdf
📚 Various cheatsheets in PDF
Stars: ✭ 159 (+6%)
Mutual labels:  cheat-sheets, cheatsheet, cheatsheets
Cmd Command Cheat Sheet
CMD - Command Cheat Sheat ✅
Stars: ✭ 50 (-66.67%)
Mutual labels:  cheat-sheets, cheatsheet, cheatsheets
Algorithms Cheatsheet Resources
🤓All the geeky stuffs you need to know at one place!
Stars: ✭ 60 (-60%)
Mutual labels:  cheat-sheets, cheatsheet, cheatsheets
Python Cheatsheet
Basic Cheat Sheet for Python (PDF, Markdown and Jupyter Notebook)
Stars: ✭ 1,334 (+789.33%)
Mutual labels:  cheat-sheets, cheatsheet, cheatsheets
Javascripter
Helping junior developers navigate the complex world of software engineering without experiencing information overload.
Stars: ✭ 203 (+35.33%)
Mutual labels:  cheat-sheets, cheatsheet, cheatsheets
process-handbook
📗 Contains our processes, questions and journey to creating ateam
Stars: ✭ 70 (-53.33%)
Mutual labels:  howto, how-to
CLI-Cheat-Sheet
The essential tasks on the command line interface for web developers.
Stars: ✭ 19 (-87.33%)
Mutual labels:  how-to, cheat-sheet
cheat-sheets
Cheat sheets to help you in daily hands-on tasks of trouble shooting, configuration, and diagnostics with Fortinet, HP/Aruba, Cisco, Checkpoint and others' gear.
Stars: ✭ 63 (-58%)
Mutual labels:  cheat-sheets, cheatsheet
guides
Dealerdirect guides for getting things done, be a programming role-model, coding in style and being the better colleague.
Stars: ✭ 21 (-86%)
Mutual labels:  cheat-sheets, how-to
linux-cheatsheet
This is Day to Day Work Linux Cheatsheet for Software Engineers.
Stars: ✭ 26 (-82.67%)
Mutual labels:  cheatsheet, linux-cheatsheet
UltimateGitResource
📚 The ultimate collection of git commands and resources to power up your programming!
Stars: ✭ 388 (+158.67%)
Mutual labels:  git-cheatsheet, cheat-sheet
html-cheatsheet
See the basic syntax of HTML and the terminologies around it
Stars: ✭ 146 (-2.67%)
Mutual labels:  cheatsheet, cheatsheets
Snippet2
A simple Code Snippet with user account and share feature
Stars: ✭ 20 (-86.67%)
Mutual labels:  snippets, snippets-collection

Other cheat sheets:

useful tools:

graphicals

tools

regular expressions regexp

sed escape, sed online escape

online coding

search function

function cheat-grep(){
    if [[ $1 == "" ]]; then
        echo "nothing to search"
        return;
    fi

    search_line=""
    for each_input_arg in "$@"; do
        if [[ $search_line == "" ]]; then
            search_line=$each_input_arg
        else
            search_line=$search_line".*"$each_input_arg
        fi
    done

    grep -r $search_line -i -A 2 $HOME_PROJECTS/cheat-sheet/*.md $HOME_PROJECTS/bash-example/*
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].