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
#!/bin/bash | |
cd ~/Downloads/ | |
wget https://download.jetbrains.com/toolbox/jetbrains-toolbox-1.8.3868.tar.gz | |
sudo add-apt-repository ppa:cleishm/neo4j | |
sudo apt-get update | |
sudo apt install -y net-tools aptitude apt-file open-vm-tools-desktop build-essential gdebi | |
curl -fsSL https://github.com/rbenv/rbenv-installer/raw/master/bin/rbenv-installer | bash | |
~/.rbenv/bin/rbenv init | |
rbenv install 2.5.1 | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
"child"|"parent" | |
"B0"|"A0" | |
"B1"|"A0" | |
"B2"|"A0" | |
"C0"|"B1" | |
"C1"|"B2" | |
"C3"|"B1" |
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
#!/usr/bin/env bash | |
_TMP="${TMP:-/tmp}" | |
FILTHYDIR="$_TMP/bash_filthy_console_prank_files" | |
if [ ! -d "$FILTHYDIR" ]; then | |
THISDIR="$PWD" | |
cd "$_TMP" | |
mkdir bash_filthy_console_prank_files | |
cd bash_filthy_console_prank_files | |
URL="https://www.freewebheaders.com/wordpress/wp-content/uploads/full-list-of-bad-words-csv-file_2018_03_26_26.zip" |
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
development: | |
adapter: mysql2 | |
encoding: utf8 | |
database: my_database | |
username: root | |
roles: | |
- admin | |
- developer | |
- guest | |
password: |
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
# easily add aliases to ~/.bash_aliases | |
function alias2bash { | |
cat ~/.bash_aliases > ~/.bash_aliasesx; | |
echo -e "\n# ($(date)) $1\nalias $2=\"$3\"\n" > ~/.bash_aliasesy; | |
cat ~/.bash_aliasesx ~/.bash_aliasesy > ~/.bash_aliases; | |
rm ~/.bash_aliasesx ~/.bash_aliasesy; | |
nubash; | |
cat ~/.bash_aliases; | |
} |
NewerOlder