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 'formula' | |
| class Newt < Formula | |
| url 'https://fedorahosted.org/releases/n/e/newt/newt-0.52.13.tar.gz' | |
| homepage 'https://fedorahosted.org/newt/' | |
| md5 '77de05b3f58540152a4ae32a1a64e5d0' | |
| depends_on 'gettext' | |
| depends_on 'slang' | |
| depends_on 'popt' |
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 'formula' | |
| class Httpd < Formula | |
| url 'http://httpd.apache.org/dev/dist/httpd-2.4.0.tar.gz' | |
| homepage 'http://httpd.apache.org/' | |
| sha1 'c30d7035a2888aa28424f8ed1497843cbb1c2270' | |
| skip_clean :all | |
| def install |
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 'formula' | |
| class Vim < Formula | |
| # url 'ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2' url 'https://vim.googlecode.com/hg/', :tag => 'v7-3-600' version '7.3.600' | |
| homepage 'http://www.vim.org/' | |
| # md5 '5b9510a17074e2b37d8bb38ae09edbf2' | |
| head 'https://vim.googlecode.com/hg/' | |
| # depends_on 'cmake' => :build |
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
| // ==UserScript== | |
| // @name CybouzuAutoLogon | |
| // @namespace http://cbz.example.co.jp/ | |
| // @include http://cbz.example.co.jp/cgi-bin/ag.cgi | |
| // @include http://cbz.example.co.jp/cgi-bin/ag.cgi?page=AGIndex | |
| // ==/UserScript== | |
| (function() { | |
| var member_id = 00000; | |
| var member_name = 'member_name'; | |
| var check = 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
| ARGF.each do |path| | |
| path.force_encoding("UTF-8") unless path.nil? | |
| puts path | |
| if path =~ /^smb:/ | |
| puts path.gsub(%r|^smb://|, "\\\\\\").gsub(%r|/|, "\\") | |
| else | |
| puts "smb:#{path.gsub("\\", "/")}" | |
| end | |
| end |
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 'faker' | |
| require 'date' | |
| now = Time.now | |
| 100000.times do |i| | |
| line = [ | |
| i+1, | |
| Faker::Name.name, | |
| Faker::Internet.email, | |
| Faker::PhoneNumber.phone_number, |
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
| <?php | |
| require_once ("../Spyc.php"); | |
| class SyckModuleTest extends PHPUnit_Framework_TestCase { | |
| public function testLoad() { | |
| $spyc = new Spyc(); | |
| $data = file_get_contents('./example.yaml'); |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>test</title> | |
| <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script> | |
| <script type="text/javascript"> | |
| jQuery(function($) { | |
| // mouse event | |
| var box = document.getElementById("box"); | |
| var outer = document.getElementById("outer"); |
OlderNewer