I hereby claim:
- I am i90rr on github.
- I am i90rr (https://keybase.io/i90rr) on keybase.
- I have a public key whose fingerprint is 31BC 13E1 6D68 3ECD 4DB0 7449 1839 0461 D96E 287D
To claim this, I am signing this object:
| ### BEGIN /etc/grub.d/00_header ### | |
| set pager=1 | |
| if [ -s $prefix/grubenv ]; then | |
| load_env | |
| fi | |
| if [ "${next_entry}" ] ; then | |
| set default="${next_entry}" | |
| set next_entry= | |
| save_env next_entry |
| # mongod.conf, Percona Server for MongoDB | |
| # for documentation of all options, see: | |
| # http://docs.mongo.org/manual/reference/configuration-options/ | |
| # Where and how to store data. | |
| storage: | |
| dbPath: /var/lib/mongo | |
| journal: | |
| enabled: true | |
| # engine: mmapv1 |
| # Fixex the error 'Failed: restore error: listDB.lists: error creating collection \ | |
| # listDB.lists: error running create command: exception: specify size: when capped is true' | |
| # | |
| # Credits: Juan Pablo Nogueira, https://ar.linkedin.com/in/juan-pablo-nogueira-30645514/en | |
| grep -rl ', "capped" : { "$undefined" : true }, "size" : { "$undefined" : true }' \ | |
| /path/to/DB/to/be/restored/* | xargs sed -i 's/, "capped" : { "$undefined" : true }, \ | |
| "size" : { "$undefined" : true }//g' | |
| git clone [email protected]:croaky/dotfiles.git | |
| cd dotfiles | |
| git remote add upstream [email protected]:thoughtbot/dotfiles.git | |
| # ~/.bash_profile: executed by the command interpreter for login shells. | |
| # see /usr/share/doc/bash/examples/startup-files for examples. | |
| # the files are located in the bash-doc package. | |
| # if running bash | |
| if [ -n "$BASH_VERSION" ]; then | |
| # include .bashrc if it exists | |
| if [ -f "$HOME/.bashrc" ]; then | |
| . "$HOME/.bashrc" |
I hereby claim:
To claim this, I am signing this object:
| #301 Redirects for .htaccess | |
| #Redirect a single page: | |
| Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
| #Redirect an entire site: | |
| Redirect 301 / http://www.domain.com/ | |
| #Redirect an entire site to a sub folder | |
| Redirect 301 / http://www.domain.com/subfolder/ |
rsync (Everyone seems to like -z, but it is much slower for me)
| #!/bin/bash | |
| # File: core-values-greeting.sh | |
| # Author: ichramm | |
| # Description: Prints a core value in ASCCI art | |
| # Usage: core-values-greeting.sh [core-value|login] | |
| # Params: | |
| # core-value: The core value to print , Accepted values: become,enjoy,more,strive,team,think,wow | |
| # Prints a random core value if not set, | |
| # Orints a greeting plus a random core value if it is set to 'login' |
| #!/bin/bash | |
| # Don't put duplicate lines in the history | |
| export HISTCONTROL=ignoredups | |
| # Store a lot history entries in a file for grep-age | |
| shopt -s histappend | |
| export HISTFILE=~/long_history | |
| export HISTFILESIZE=50000 |