Protocol | Type | Port Range (Code) | Source |
---|---|---|---|
SSH | TCP | 22 | Anywhere 0.0.0.0/0 |
Custom TCP | TCP | 25565 | Anywhere 0.0.0.0/0 |
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
# Install git for RBEnv and gcc for Ruby. | |
sudo apt-get install git gcc | |
git clone git://github.com/sstephenson/rbenv.git $HOME/.rbenv | |
# Create /etc/init.d/rbenv.sh | |
sudo touch /etc/init.d/rbenv.sh | |
sudo cat <<EOF > /etc/init.d/rbenv.sh | |
export RBENV_ROOT=$HOME/.rbenv | |
export PATH="${RBENV_ROOT}/bin:$PATH" |
Tuesday is regular schedule, except for a "Holiday" Program (I'm almost positive they're going to do just Christmas songs and one "Hanukkah Song") I'm taking my HUSH (7) exam at 1:05 - 3:05.
Wednesday | Thursday | Friday | |
---|---|---|---|
8:00 - 10:00 | Biology I (1) | Geometry H. (3) | Theater I (5) |
10:00 - 10:20 | Break | Break | Break |
10:20 - 12:20 | Latin I (2) | ILC (4) | Health 9 (6) |
12:20 - 1:10 | Lunch | Lunch | Lunch |
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 bash | |
if [ -f $HOME/.zshrc ] | |
then | |
SHELL_INIT="$HOME/.zshrc" | |
elif [ -f $HOME/.bashrc ] | |
then | |
SHELL_INIT="~/.bashrc" | |
elif [ -f $HOME/.bash_profile ] | |
then |
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
# Become sudo | |
sudo su - | |
# Update | |
yum update | |
# Install git for RBEnv and gcc for Ruby. | |
yum install git gcc | |
git clone git://github.com/sstephenson/rbenv.git /usr/local/rbenv |
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
rm -f ~/.zcompdump |
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
require 'json' | |
require 'httparty' | |
class Googl | |
include HTTParty | |
base_uri "https://www.googleapis.com" | |
headers "Content-Type" => "application/json" | |
def self.shorten(url) | |
post("/urlshortener/v1/url", :body => {:longUrl => url}.to_json)["id"] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
// Code: | |
var exec = require('child_process').exec; | |
var execute = function(command, callback){ | |
exec(command, function(error, stdout, stderr){ callback(stdout); }); | |
}; | |
// Example: | |
execute("git --version", function(version){ | |
console.log(version); | |
}); |
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
name: Your New Jekyll Site | |
markdown: redcarpet | |
pygments: true | |
username: UserName | |
server_url: ftp.myserver.com | |
remote_dir: /public_html |