👍🎉 First off, thanks for taking the time to contribute! 🎉👍
There are many ways you can Contribute to this project!
- [Create issues][issues] or help close them
- Fork, Enhance, Fix Bugs, and send in [Pull Requests][pr]
| #!/bin/bash | |
| #Personal format options for astyle | |
| #by @angrykoala | |
| astyle --style=java --align-pointer=name --delete-empty-lines --indent-col1-comments --unpad-paren -n -Q $@ |
| #!/bin/bash | |
| #md2pdf: small flavored markdown converter to pdf using pandoc | |
| #by @angrykoala | |
| if [ $# -eq 0 ] | |
| then echo "Need at least one argument md2pdf [files]"; | |
| else | |
| for var in "$@" | |
| do | |
| filename=$(basename "$var") |
| #!/bin/bash | |
| #hasselhoff attack taken to a new level | |
| #@angrykoala | |
| DIR=/home/$(whoami)/hasselhoff.jpg | |
| MESSAGE="you have been hasselhoffed" | |
| IMAGE_URL=http://www.ljpaez.es/imagen/hasselhoff.jpg | |
| wget $IMAGE_URL -q | |
| mv ./hasselhoff.jpg $DIR | |
| gsettings set org.gnome.desktop.background picture-uri file://$DIR |
| Easy and comprehensive example of Brainf*uck language | |
| @angrykoala | |
| Writes text | |
| >++++++++[<+++++++++++>-]<-. | |
| >+++[<+++++++++>-]<. | |
| ---------. | |
| +++++++++++. | |
| ---------------. | |
| >+++++++[<---------->-]<+. |
| #!/bin/bash | |
| #Personal beautifiers for js | |
| #needs js-beuatify (npm package) | |
| js-beautify --indent-with-tabs --brace-style collapse -r $@ |
| #!/bin/sh | |
| echo "hello world"; |
| { | |
| "maxerr": 50, | |
| "camelcase": true, | |
| "eqeqeq": true, | |
| "forin": false, | |
| "latedef": false, | |
| "noempty": true, | |
| "maxcomplexity": 6, | |
| "maxdepth": 6, | |
| "nocomma": true, |
| # My Custom bash | |
| ## Statup commands | |
| echo "Hello, today is" | |
| date +%A','%x | |
| date +'['%X']' | |
| fortune | cowsay -T "U " -e o- | |
| ## New Promt | |
| PS1="\e[01;32m[\u]\e[m\t\e[01;34m\w->\e[m" |
| # Basic Makefile | |
| # by @angrykoala | |
| CXX = g++ | |
| CPPFLAGS = -Wall -O1 -std=c++11 -g | |
| ASTYLE_FLAGS = --style=java --align-pointer=name --delete-empty-lines --indent-col1-comments --unpad-paren -n -Q | |
| EXE = output_file |