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
| function INTERNETS() { | |
| # Fucking computer forgets how to connect to unsecured & WEP networks | |
| # after going to sleep. I GET. WPA IS BETTER. SOMETIMES ITS NOT MY | |
| # FUCKING CHOICE AND I STILL WANT INTERNET. (Reloads the wireless | |
| # module & restarts the wireless daemon.) | |
| sudo rmmod wl | |
| sudo /etc/rc.d/wicd stop | |
| sudo modprobe wl | |
| sudo /etc/rc.d/wicd start | |
| } |
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
| foo |
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
| This is bar.txt and it was added remotely. |
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
| <html> | |
| <head><title>Hello</title></head> | |
| <body> | |
| <h1>Hello</h1> | |
| <p>This file was updated by Bryan from remote</p> | |
| </body> | |
| </html> |
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
| module Smarticus | |
| class Prs | |
| PLAYS = %w[p r s] | |
| def play(previous=[]) | |
| PLAYS[rand(3).to_i] | |
| end | |
| def name |
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
| make your changes now |
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
| foo |
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
| foo |
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 'rubygems' | |
| require "test/unit" | |
| require "shoulda" | |
| def score(roll) | |
| accum = 0 | |
| raise ArgumentError unless roll.is_a? Array | |
| raise RuntimeError unless roll.any?{|r| r.is_a? Fixnum } | |
| raise RuntimeError if roll.any?{|r| r < 1} |
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
| here is some text |
OlderNewer