reddituploads.com
500px.com
abload.de
anony.ws
deviantart.com
deviantart.net
fav.me
fbcdn.net
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
conflicts = diff --name-only --diff-filter=U | |
l=log --graph --all --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(white)- %an, %ar%Creset' | |
ll=log --stat --abbrev-commit | |
lg=log --color --graph --pretty=format:'%C(bold white)%h%Creset -%C(bold green)%d%Creset %s %C(bold green)(%cr)%Creset %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative | |
llg=log --color --graph --pretty=format:'%C(bold white)%H %d%Creset%n%s%n%+b%C(bold blue)%an <%ae>%Creset %C(bold green)%cr (%ci)' --abbrev-commit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[a4paper]{article} | |
\usepackage[margin=1.2cm]{geometry} | |
\usepackage{mathtools} | |
\usepackage{dsfont} | |
\usepackage{multicol} | |
\setlength{\columnsep}{1cm} | |
\usepackage[utf8]{inputenc} | |
\usepackage{enumitem} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:: Elevate.cmd - Version 4 | |
:: Automatically check & get admin rights | |
:: Taken from: https://stackoverflow.com/a/12264592 | |
:::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
@echo off | |
CLS | |
ECHO. | |
ECHO ============================= | |
ECHO Running Admin shell |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="hidden-lg hidden-md hidden-sm">Extra Small</div> | |
<div class="hidden-lg hidden-md hidden-xs">Small</div> | |
<div class="hidden-lg hidden-sm hidden-xs">Medium</div> | |
<div class="hidden-md hidden-sm hidden-xs">Large</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git remote prune origin && (git branch --merged master | grep -v 'master$' | xargs git branch -d) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gitbehind() { | |
TIME=$(date +%s); | |
git checkout -b $TIME; | |
git checkout $TIME; | |
echo $TIME >> $TIME.file; | |
git add $TIME.file; | |
git commit -m "Behind Commit"; | |
git push -u origin $TIME; | |
git checkout master; | |
git branch -D $TIME; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for x in 0 1 4 5 7 8; do for i in `seq 30 37`; do for a in `seq 40 47`; do echo -ne "\e[$x;$i;$a""m\\\e[$x;$i;$a""m\e[0;37;40m "; done; echo; done; done; echo ""; |