git config --global user.name hoge
git config --global user.email [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
117a118,128 | |
> /// \brief bindings for links between different spaces | |
> class LinkBinding | |
> { | |
> public: | |
> domNodeRef node; | |
> domLinkRef domlink; | |
> domInstance_rigid_bodyRef irigidbody; | |
> domRigid_bodyRef rigidbody; | |
> domNodeRef nodephysicsoffset; |
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
function hoge(next) { | |
fuga(function(err, piyo) { | |
if (err != null) { | |
next(err); | |
} | |
else { | |
... | |
} | |
}); | |
} |
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
program helloworld | |
print *, "Hello, world." | |
end program helloworld |
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
all: hello lesson1 lesson2_a lesson2_b lesson3 | |
hello: hello.f90 | |
gfortran $< -o $@ | |
lesson1: lesson1.f90 | |
gfortran $< -o $@ | |
lesson2_a: lesson2_a.f90 | |
gfortran $< -o $@ | |
lesson2_b: lesson2_b.f90 |
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
var url = $('meta[property="og:video"]').attr("content"); | |
var parser = document.createElement('a'); | |
parser.href = url; | |
var cid = parser.search.match(/cid=([0-9a-zA-Z]+)/)[1]; | |
alert("ffmpeg -re -i http://iphone-streaming.ustream.tv/uhls/" + cid + "/streams/live/iphone/playlist.m3u8 -c copy out.ts") |
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
InteractiveTestRecord.find().exec(function(err, records) { | |
console.log(records); | |
}); | |