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
/opt/local/lib/ruby/vendor_ruby/2.0.0/rubygems/version.rb:290: [BUG] Segmentation fault | |
ruby 2.0.0p353 (2013-11-22 revision 43784) [x86_64-solaris2.11] | |
-- Control frame information ----------------------------------------------- | |
c:0015 p:---- s:0069 e:000068 CFUNC :scan | |
c:0014 p:0025 s:0065 e:000064 METHOD /opt/local/lib/ruby/vendor_ruby/2.0.0/rubygems/version.rb:290 | |
c:0013 p:0049 s:0062 e:000061 METHOD /opt/local/lib/ruby/vendor_ruby/2.0.0/rubygems/version.rb:318 | |
c:0012 p:0042 s:0050 e:000049 BLOCK /opt/local/lib/ruby/vendor_ruby/2.0.0/rubygems/specification.rb:696 [FINISH] | |
c:0011 p:---- s:0045 e:000044 CFUNC :sort! | |
c:0010 p:0008 s:0042 e:000041 METHOD /opt/local/lib/ruby/vendor_ruby/2.0.0/rubygems/specification.rb:693 |
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
diff --git a/core/plugin/openimg/openimg.rb b/core/plugin/openimg/openimg.rb | |
index 4e070de..5e642df 100644 | |
--- a/core/plugin/openimg/openimg.rb | |
+++ b/core/plugin/openimg/openimg.rb | |
@@ -30,6 +30,10 @@ Plugin.create :openimg do | |
w.set_size_request(320, 240) | |
w.set_default_size(*@size).move(*@position) | |
w.signal_connect(:destroy){ w.destroy } | |
+ w.ssc(:key_press_event) { |widget, event| | |
+ if "Escape" == Gtk::keyname([event.keyval, event.state]) |
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
diff --git a/core/mui/cairo_sub_parts_voter.rb b/core/mui/cairo_sub_parts_voter.rb | |
index ae53e07..ac2f86a 100644 | |
--- a/core/mui/cairo_sub_parts_voter.rb | |
+++ b/core/mui/cairo_sub_parts_voter.rb | |
@@ -12,57 +12,30 @@ class ::Gdk::SubPartsVoter < Gdk::SubParts | |
def initialize(*args) | |
super | |
@icon_width, @icon_height, @margin, @votes, @user_icon = 24, 24, 2, get_default_votes.to_a, Hash.new | |
- @avatar_rect = [] | |
@icon_ofst = 0 |
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
0000000: 545a 6966 3200 0000 0000 0000 0000 0000 TZif2........... | |
0000010: 0000 0000 0000 0003 0000 0003 0000 0000 ................ | |
0000020: 0000 0009 0000 0003 0000 000c c3ce 8570 ...............p | |
0000030: d73e 1e90 d7ec 1680 d8f9 1690 d9cb f880 .>.............. | |
0000040: db07 1d10 dbab da80 dce6 ff10 dd8b bc80 ................ | |
0000050: 0201 0201 0201 0201 0200 007e 9000 0000 ...........~.... | |
0000060: 008c a001 0400 007e 9000 0843 5554 0055 .......~...CUT.U | |
0000070: 4454 0055 5354 0000 0000 0000 0054 5a69 DT.UST.......TZi | |
0000080: 6632 0000 0000 0000 0000 0000 0000 0000 f2.............. | |
0000090: 0000 0000 0500 0000 0500 0000 0000 0000 ................ |
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
$port = 10000 | |
require "socket" | |
server = TCPServer.open($port) | |
loop do | |
Thread.start(server.accept) do |cli| | |
puts "connected: " + cli.__id__.to_s | |
while line = cli.gets | |
puts cli.__id__.to_s + ": " + line.chomp | |
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
TITECH_ID=00X00000 | |
TITECH_PASS= | |
curl -d "username=$TITECH_ID" \ | |
--data-urlencode "password=$TITECH_PASS" \ | |
-d "buttonClicked=4" \ | |
https://wlanauth.noc.titech.ac.jp/login.html \ | |
>/dev/null 2>&1 | |
# wlanauth.noc.titech.ac.jp = 131.112.253.250 |
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
diff --git a/ext/openssl/extconf.rb b/ext/openssl/extconf.rb | |
index b1a527c..a11d40e 100644 | |
--- a/ext/openssl/extconf.rb | |
+++ b/ext/openssl/extconf.rb | |
@@ -111,6 +111,7 @@ have_func("TLSv1_2_method") | |
have_func("TLSv1_2_server_method") | |
have_func("TLSv1_2_client_method") | |
have_macro("OPENSSL_NPN_NEGOTIATED", ['openssl/ssl.h']) && $defs.push("-DHAVE_OPENSSL_NPN_NEGOTIATED") | |
+have_func("SSL_CTX_set_alpn_protos") && $defs.push("-DHAVE_OPENSSL_ALPN") | |
unless have_func("SSL_set_tlsext_host_name", ['openssl/ssl.h']) |
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
diff --git a/array.c b/array.c | |
index 39e10a3..cb5d8d3 100644 | |
--- a/array.c | |
+++ b/array.c | |
@@ -82,12 +82,10 @@ ary_new() | |
return ary_new2(ARY_DEFAULT_SIZE); | |
} | |
-#include <varargs.h> | |
+#include <stdarg.h> |
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
#include "ruby.h" | |
#include "ruby/debug.h" | |
VALUE | |
xxx(VALUE self) | |
{ | |
VALUE buf[10]; | |
int lines[10]; | |
int n; |
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
diff --git a/builtin/branch.c b/builtin/branch.c | |
index 7b45b6b..07b7afb 100644 | |
--- a/builtin/branch.c | |
+++ b/builtin/branch.c | |
@@ -20,6 +20,7 @@ | |
#include "utf8.h" | |
#include "wt-status.h" | |
#include "ref-filter.h" | |
+#include "worktree.h" | |