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
. | |
├── arcs.html | |
├── _config.yml | |
├── _config.yml.default | |
├── css/ | |
│ └── main.scss* | |
├── Gemfile | |
├── Gemfile.lock | |
├── _includes/ | |
│ ├── footer.html |
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
#log p.ooc { | |
background: #222; | |
padding: .5em; | |
margin-left: -1em; | |
margin-right: -1em; | |
box-shadow: inset 0em 0em 4px 0px #000; | |
} | |
#log p.ooc + p.ooc { | |
margin-top: -2.5em; |
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 HouseLocation | |
DIRS = "^>v<" | |
attr_accessor :x, :y | |
def initialize(x = 0, y = 0) | |
@x = x | |
@y = y | |
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
{ | |
"badgeTypeString": "Press Badge", | |
"badgePaymentType": "Comp", | |
"badges": [["Firstname Lastname","Badge name","[email protected]"],["Joe Smith","Joe","[email protected]"]] | |
} |
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
{ | |
"mappings": { | |
"file://localhost/X:\\music\\CLOVER STUDIO - 大神 オリジナル・サウンドトラック [Disc 1]": "file://localhost/X:\\music\\Okami OST [Disc 1]", | |
"file://localhost/X:\\music\\CLOVER - Okami Original Soundtrack [Disc 2]": "file://localhost/X:\\music\\Okami OST [Disc 2]", | |
"file://localhost/X:\\music\\CLOVER STUDIO - Okami Original Soundtrack Disc 3": "file://localhost/X:\\music\\Okami OST [Disc 3]", | |
"file://localhost/X:\\music\\CLOVER STUDIO - Okami Original Soundtrack [Disc 4]": "file://localhost/X:\\music\\Okami OST [Disc 4]", | |
"file://localhost/X:\\music\\Masami Ueda [上田雅美] - Okami Original Soundtrack [大神]": "file://localhost/X:\\music\\Okami OST [Disc 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
require 'csv' | |
prereg = CSV.read("boomset_prereg_attendance_report_35918_08312015180554.csv") | |
at_door = CSV.read("boomset_at_door_attendance_report_35998_08312015180637.csv") | |
# puts prereg[0] | |
# Remove first row | |
prereg.shift | |
at_door.shift |
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 'set' | |
TIMESTAMP = /^(?<timestamp>[-0-9 :]{19})/ | |
BOT_NAME = /\tSkyBot\t/ | |
SKYPE_MSG = /#{TIMESTAMP}#{BOT_NAME}<(?<nick>[^>]+)>(?<text>.*)$/ | |
SKYPE_ACTION = /#{TIMESTAMP}#{BOT_NAME}\* (?<text>.*)$/ | |
# NICK = /([\w\-\\\[\]\{\}\^\`\|]+)/ | |
# Characters that can't be in a nick | |
NOT_NICK = /[^\w\-\\\[\]\{\}\^\`\|]/ |
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 "set" | |
CHARS = [] | |
("0".."9").each { |x| CHARS << x } | |
("A".."Z").each { |x| CHARS << x } | |
def create_code(prefix, length) | |
code = "" | |
length.times { code << random_character } |
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
3535d6b HEAD@{0}: rebase -i (finish): returning to refs/heads/master | |
3535d6b HEAD@{1}: rebase -i (start): checkout HEAD~8 | |
93aeaa2 HEAD@{2}: rebase: aborting | |
3535d6b HEAD@{3}: rebase -i (start): checkout HEAD~1 | |
93aeaa2 HEAD@{4}: rebase: aborting | |
3535d6b HEAD@{5}: rebase -i (start): checkout HEAD~4 | |
93aeaa2 HEAD@{6}: rebase: aborting | |
4784953 HEAD@{7}: rebase: More README updates | |
4c8ba22 HEAD@{8}: rebase: Update README with hopefully clearer instructions | |
331612c HEAD@{9}: rebase: checkout HEAD~4 |
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
source 'https://rubygems.org' | |
group :jekyll_plugins do | |
gem "jekyll-rp_logs" | |
end |