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
| sudo aptitude -y install nginx | |
| cd /etc/nginx/sites-available | |
| sudo rm default | |
| sudo cat > jenkins | |
| upstream app_server { | |
| server 127.0.0.1:8080 fail_timeout=0; | |
| } | |
| server { | |
| listen 80; |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>com.github.mxcl.homebrew.daemontools</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/usr/local/bin/svscanboot</string> | |
| </array> |
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
| use strict; | |
| use warnings; | |
| use Filesys::Notify::Simple; | |
| use Spork; | |
| use lib 'lib'; | |
| while ( 1 ) { | |
| my $watcher = Filesys::Notify::Simple->new(['.']); | |
| $watcher->wait(sub {}); | |
| Spork->new->load_hub->command->process('-make', @ARGV); |
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
| // | |
| // C++0x から <algorithm> に追加される関数を C++03 で使えるよう実装したヘッダ | |
| // やっつけテストも記述しました。 | |
| // | |
| #ifndef ETUDE_INCLUDED_ALGORITHM_HPP_ | |
| #define ETUDE_INCLUDED_ALGORITHM_HPP_ | |
| #include <algorithm> | |
| #include <iterator> | |
| #include <utility> |
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
| --- rubygems/remote_fetcher.rb.orig 2009-07-28 19:01:30.000000000 +0900 | |
| +++ rubygems/remote_fetcher.rb 2009-07-28 19:05:47.000000000 +0900 | |
| @@ -4,6 +4,7 @@ | |
| require 'uri' | |
| require 'rubygems' | |
| +require 'http_configuration' | |
| ## | |
| # RemoteFetcher handles the details of fetching gems and gem information from |
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
| diff --git a/urllib.py b/urllib.py | |
| index 802d9b7..d13ddb7 100644 | |
| --- a/urllib.py | |
| +++ b/urllib.py | |
| @@ -35,7 +35,7 @@ __all__ = ["urlopen", "URLopener", "FancyURLopener", "urlretrieve", | |
| "localhost", "thishost", "ftperrors", "basejoin", "unwrap", | |
| "splittype", "splithost", "splituser", "splitpasswd", "splitport", | |
| "splitnport", "splitquery", "splitattr", "splitvalue", | |
| - "splitgophertype", "getproxies"] | |
| + "splitgophertype", "getproxies", "getnoproxies"] |
NewerOlder