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 stash # Stash changes if any | |
| git symbolic-ref HEAD refs/heads/${NEW_BRANCH} # Change head to a new, non-existing ref | |
| git rm -rf . # Delete files from version control and working directory | |
| rm -r . # Delete files from file system | |
| git commit --allow-empty -m "Created new branch ${NEW_BRANCH}" # Commit changes in the new branch |
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
| # apt-get | |
| build-essential | |
| curl | |
| git-core | |
| git-svn | |
| gitk | |
| gnome-do | |
| libreadline-dev | |
| libreadline-ruby | |
| libsqlite3-dev |
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
| http://gatherer.wizards.com/Pages/Search/Default.aspx?output=spoiler&method=text&action=advanced&name=+%5b%5d |
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
| REGEDIT4 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout] | |
| "Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,1d,00,3a,00,00,00,00,00 |
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
| CREATE USER 'monty'@'localhost' IDENTIFIED BY 'some_pass'; | |
| GRANT ALL PRIVILEGES ON *.* TO 'monty'@'localhost' WITH GRANT OPTION; | |
| CREATE USER 'monty'@'%' IDENTIFIED BY 'some_pass'; | |
| GRANT ALL PRIVILEGES ON *.* TO 'monty'@'%' WITH GRANT OPTION; |
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
| #!/bin/bash | |
| git submodule foreach ' | |
| git checkout master; | |
| git fetch --all; | |
| git --no-pager log --oneline --reverse master..origin/master; | |
| git reset --hard origin/master | |
| ' |
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
| -------------------------------------------------------------- | |
| DoomRL (v.0.9.9.2) roguelike post-mortem character dump | |
| -------------------------------------------------------------- | |
| John Romero, level 6 Former Human Private, baptized by a brusier brother | |
| on level 15 of the Phobos base. | |
| He survived 51031 turns and scored 30244 points. | |
| He played for 1 hour, 1 minute and 39 seconds. | |
| He didn't like it too rough. |
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
| #RENAME | |
| DO SET '%ann' | |
| IF E(!^[\d]+) DO ADD ' - %enr' | |
| ELSE IF X(!1) DO ADD ' - %enr' | |
| IF I(ver) DO ADD '%ver' | |
| IF E(!^[\d]+) DO ADD ' - %epn' | |
| ELSE IF E(^Part \d of \d$) DO ADD ' - %epn' | |
| DO ADD ' - %src[%res](%vid.%aud)[%grp]' | |
| #MOVE |
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
| #!/usr/bin/env ruby | |
| # Download a file: | |
| # download http://fake.com/file.zip | |
| # | |
| # Download multiple files: | |
| # download http://fake.com/file1.zip http://fake.com/file2.zip | |
| # | |
| # Download file(s) to a directory: | |
| # download http://fake.com/file.zip /tmp/ | |
| # download http://fake.com/file1.zip http://fake.com/file2.zip . |
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
| if [ -f "$rvm_path/scripts/rvm" ] && [ -f ".ruby-version" ]; then | |
| source "$rvm_path/scripts/rvm" | |
| if [ -f ".ruby-gemset" ]; then | |
| rvm use `cat .ruby-version`@`cat .ruby-gemset` | |
| else | |
| rvm use `cat .ruby-version` | |
| fi | |
| fi |
OlderNewer