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
" for CRuby | |
if &filetype=='c' | |
setlocal noexpandtab tabstop=8 shiftwidth=4 softtabstop=4 | |
endif |
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
aycabta@x250:~/rcodetools$ rake | |
/home/aycabta/.rbenv/versions/2.3.1/bin/ruby -w -I"lib:ext/rcovrt" -I"/home/aycabta/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/rake-11.2.2/lib" "/home/aycabta/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/rake-11.2.2/lib/rake/rake_test_loader.rb" "test/test_completion.rb" "test/test_doc.rb" "test/test_functional.rb" "test/test_method_analyzer.rb" "test/test_method_args.rb" "test/test_options.rb" "test/test_ruby_toggle_file.rb" "test/test_xmpfilter.rb" "test/test_xmptestunitfilter.rb" | |
test/test_completion.rb | |
test/test_doc.rb | |
test/test_functional.rb | |
test/test_method_analyzer.rb | |
test/test_method_args.rb | |
test/test_options.rb | |
test/test_ruby_toggle_file.rb | |
test/test_xmpfilter.rb |
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
0000010010101010010000000100010000101000010000000000000000000000 | |
0000010010101110111010001010100001000100111001000000000000000000 | |
0000010000001010110000100100000001000100010001000000000000000010 | |
0000010000001010011001000110000001000100101011100000111000000100 | |
0000000000001110111010001100000001000100000001000000000000001000 | |
0000010000001010010000101110000001000100000001000100000001000000 | |
0000000000000000000000000000000000101000000000001000000000000000 | |
0000000000000000000000000000000000000000000000000000000000000000 | |
0000000000000000000000000000000000000000000000000000000000000100 | |
0100010011001100001011100110111001000100000000000010000010001010 |
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
class BinaryDotToBraille | |
LEFT_SHIFT_TABLE = { | |
0b00000001 => 7, | |
0b00000010 => 4, | |
0b00000100 => 1, | |
0b00001000 => 3, | |
0b00010000 => 0, | |
0b00100000 => -3, | |
0b01000000 => -5, |
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 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 AWS SDK Doc Function Emphasis | |
// @namespace http://aycabta.github.io/ | |
// @version 0.0.1 | |
// @description | |
// @include /^http:\/\/docs\.aws\.amazon\.com/ | |
// @grant | |
// @copyright 2015+, Code Ass | |
// ==/UserScript== |
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/local/bin/bash | |
if [ $# -ne 1 ]; then | |
echo "Usage: # ./setup_wifi.sh wifi_name" | |
echo "The \`wifi_name' is used for filename: /var/wpa_supplicant_[wifi_name].conf" | |
exit 1 | |
fi | |
if [ $UID -ne 0 ]; then | |
echo "You must be a root." |
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
===> SECURITY REPORT: | |
This port has installed the following files which may act as network | |
servers and may therefore pose a remote security risk to the system. | |
/usr/local/sbin/capiserver | |
/usr/local/sbin/isdnd | |
This port has installed the following startup scripts which may cause | |
these network services to be started at boot time. | |
/usr/local/etc/rc.d/isdnd |
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
archo = [] | |
define_method(:fuck) do |&block| | |
archo << block | |
end | |
meta_anal = proc { | |
this_anal = archo.sample | |
proc { | |
define_method(:anal, meta_anal.call) |
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 GreatestModule | |
def puts arg | |
super arg + " is greatest word" | |
end | |
end | |
module Kernel | |
prepend GreatestModule | |
end |