This file contains 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
class Pair | |
attr_accessor :one, :two | |
def initialize(one, two) | |
@one = one | |
@two = two | |
end | |
end |
This file contains 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
UP seek 59 | |
DOWN seek -59 | |
RIGHT seek 9.5 | |
LEFT seek -9.5 |
This file contains 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
$ brew tests | |
Loaded suite /Users/henry/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/rake-10.1.1/lib/rake/rake_test_loader | |
Started | |
............................................................................... | |
............................................................................... | |
............................................................................... | |
................................................................F | |
=============================================================================== | |
Failure: | |
test_update_homebrew_with_tapped_formula_changes(UpdaterTests) |
This file contains 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 X264DownloadStrategy < CurlDownloadStrategy | |
def tarball_path | |
Pathname.new("#{HOMEBREW_CACHE}/#{name}-#{resource.version}#{ext}") | |
end | |
def ext | |
'.tar.gz' | |
end |
This file contains 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 LSmash < Formula | |
homepage "http://up-cat.net/L%252DSMASH.html" | |
url "https://github.com/l-smash/l-smash/archive/v1.3.2.tar.gz" | |
sha1 "1d95da3d90df1b4d549b7cccacf8575b4f8ead8b" | |
head "https://github.com/l-smash/l-smash.git" | |
option "disable-static", "doesn't compile static library" | |
option "enable-shared", "also compile shared library besides static library" |
This file contains 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
x264: using random seed 1760353617 | |
x264: MMX | |
- pixel sad : [OK] | |
- pixel sad_aligned : [OK] | |
- pixel ssd : [OK] | |
- pixel satd : [OK] | |
- pixel sad_x3 : [OK] | |
- pixel sad_x4 : [OK] | |
- pixel var : [OK] | |
- pixel hadamard_ac : [OK] |
This file contains 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
public function action_index() | |
{ | |
Model_Test::test(); exit; | |
} |
This file contains 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
# vim: syntax=config | |
# https://github.com/pigoz/dotfiles/blob/master/mpv/config | |
################################################################################ | |
# General | |
################################################################################ | |
#use-filedir-conf=yes # load config file from file directory | |
correct-pts=yes | |
msgcolor=yes |
This file contains 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 | |
/** | |
* Make php.dict for neosnippet.vim | |
* | |
* Require: | |
* PHP 5.4 or later | |
* | |
* Usage: | |
* php make_php_dict.php > php.dict |
This file contains 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
! | |
!= | |
!~ | |
% | |
& | |
* | |
** | |
+ | |
+@ | |
- |