This file contains 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
# SSH Environment | |
# SSH_ENV=$HOME/.ssh/environment | |
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) for examples | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
# Don't put duplicate lines in the history. See bash(1) for more options |
This file contains 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
#CUSTOM | |
alias www='cd d:/www' | |
# SSH | |
alias server='ssh [email protected]' | |
#FILE/FOLDER MANAGING | |
alias root='cd ~/' | |
alias cd..='cd ..' | |
alias ll='ls -lah' |
This file contains 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
.no-border { border: 0 !important; } | |
.clearfix { | |
content: ''; | |
clear: both; | |
display: block; | |
} | |
.clearfixAfter() { | |
&:after { |
This file contains 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
TFC - Temp File Cleaner | |
A small utility that will clean out all the folders on your computer that house temporary files. | |
http://www.bleepingcomputer.com/download/tfc/ | |
*** | |
ADW Cleaner | |
AdwCleaner is a program that searches for and deletes Adware, Toolbars, | |
Potentially Unwanted Programs (PUP), and browser Hijackers from your computer. |
This file contains 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
# SSH Environment | |
# SSH_ENV=$HOME/.ssh/environment | |
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) for examples | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
# Don't put duplicate lines in the history. See bash(1) for more options |
This file contains 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
# CUSTOM | |
alias www='cd d:/www' | |
# FILE/FOLDER MANAGING | |
alias root='cd ~/' | |
alias cd..='cd ..' | |
alias ll='ls -lah' | |
alias md='mkdir' | |
alias rd='rm -rf' | |
alias rm='rm -i' |