I hereby claim:
- I am yous on github.
- I am yous (https://keybase.io/yous) on keybase.
- I have a public key whose fingerprint is 1BF1 AFE8 682E 45A2 11FF 2C0E 891B 7A9E 1D5A 400A
To claim this, I am signing this object:
@@ -166,20 +166,6 @@ article { | |
} | |
-figure.code { | |
- .highlight { | |
- background: #212C3B !important; | |
- | |
- .gutter { | |
- display: none; |
@@ -1,10 +1,10 @@ | |
.highlight, html .gist .gist-file .gist-syntax .gist-highlight { | |
- table td.code { width: 100%; } | |
+ table td.code, td.line-data { width: 100%; } | |
border: 1px solid $pre-border !important; | |
} | |
.highlight .line-numbers, html .gist .gist-file .gist-syntax .highlight .line_numbers { | |
text-align: right; | |
- font-size: 13px; | |
+ font-size: 13px !important; |
I hereby claim:
To claim this, I am signing this object:
require 'unicode' | |
Dir.glob('*') do |f| | |
normalized_f = Unicode::normalize_C(f) | |
if f != normalized_f | |
puts "Renaming #{f} to #{normalized_f}" | |
File.rename(f, normalized_f) | |
end | |
end |
y=gets.to_i;puts (1..12).select{|m|Time.new(y,m).wday<1} |
[General] | |
Name=Custom | |
Icon=..\mactray.exe.ico,0 | |
;【自动挂钩子进程】 | |
;[0:Disable] 1:Enable | |
HookChildProcesses=1 | |
;【字体微调】 | |
;0:Normal 1:NoHinting 2:AutoHinting 3:Light+AutoHinting |
class String | |
def to_s | |
'String' | |
end | |
end | |
class Fixnum | |
def to_s | |
'Fixnum' | |
end |
def print_maze(width, height, hori_walls, vert_walls) | |
puts ' ' + '-' * (width * 2 - 1) | |
(height - 1).times do |y| | |
print '|' | |
(width - 1).times do |x| | |
print ' ' | |
print hori_walls[y][x] ? '|' : ' ' | |
end | |
puts ' |' |
class Happy | |
def initialize | |
print "#{self.class} New " | |
@year = Time.new.year | |
end | |
def method_missing(meth) | |
puts "#{__method__.to_s[/\w+/].capitalize} #{@year}#{meth.to_s[/\W+/]}" | |
end | |
end |