👍🎉 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]
options: | |
formatter: stylish | |
files: | |
include: | |
- '**/*.s+(a|c)ss' | |
- '**/*.vue' | |
rules: | |
# Extends | |
extends-before-mixins: 1 | |
extends-before-declarations: 1 |
{ | |
"env": { | |
"mocha": true, | |
"node": true, | |
"browser": true, | |
"es6": true | |
}, | |
"parserOptions": { | |
"ecmaVersion": 8, | |
"sourceType": "script" |
# 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 |
# 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" |
{ | |
"maxerr": 50, | |
"camelcase": true, | |
"eqeqeq": true, | |
"forin": false, | |
"latedef": false, | |
"noempty": true, | |
"maxcomplexity": 6, | |
"maxdepth": 6, | |
"nocomma": true, |
#!/bin/sh | |
echo "hello world"; |
#!/bin/bash | |
#Personal beautifiers for js | |
#needs js-beuatify (npm package) | |
js-beautify --indent-with-tabs --brace-style collapse -r $@ |
Easy and comprehensive example of Brainf*uck language | |
@angrykoala | |
Writes text | |
>++++++++[<+++++++++++>-]<-. | |
>+++[<+++++++++>-]<. | |
---------. | |
+++++++++++. | |
---------------. | |
>+++++++[<---------->-]<+. |
#!/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 |