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
{ | |
"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
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
#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
. | |
├── 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
7ae0ae7 HEAD@{0}: checkout: moving from d3db4a7d4eb3394286e0ca815edc5c66d5b45120 to master | |
d3db4a7 HEAD@{1}: commit: Another boop | |
3ff7027 HEAD@{2}: checkout: moving from master to 3ff7027 | |
7ae0ae7 HEAD@{3}: commit: Boop | |
3ff7027 HEAD@{4}: clone: from https://github.com/xiagu/2015-advent-of-code.git |
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 some reason select2 interferes with the space key for multiple | |
// selects. It doesn't in its own examples, but it does here. This is a | |
// workaround to manually add a space to the input. It uses JQuery event | |
// delegation because the actual element that the event is triggered on | |
// doesn't exist at the time this gets set up. | |
element.parent().on('keypress', '.select2-selection', awfulSpaceHack); | |
element.on('$destroy', function () { | |
element.parent().off('keypress', '.select2-selection', awfulSpaceHack); | |
}); | |
function awfulSpaceHack(evt) { |
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
import java.awt.event.*; | |
import java.awt.image.*; | |
import java.text.NumberFormat; | |
import java.awt.*; | |
import java.io.*; | |
import java.util.*; | |
import java.nio.*; | |
import javax.media.opengl.*; | |
import javax.media.opengl.glu.*; | |
import javax.swing.*; |
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
if (pos_start <= pos_end) | |
{ | |
completion->position_replace = pos_start; | |
completion->base_word = malloc (pos_end - pos_start + 2); | |
for (i = pos_start; i <= pos_end; i++) | |
{ | |
completion->base_word[i - pos_start] = data[i]; | |
} | |
completion->base_word[pos_end - pos_start + 1] = '\0'; | |
} |