- 玉葱: 1/2個
- マルタイ棒ラーメン: 1把
- サラダオイル: 大さじ1
- 鶏肉: てきとー
- 生姜: てきとー
- クミンシード: てきとー
- コリアンダーパウダー: てきとー
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
/** | |
* Usage | |
* var nodes = [{x:x0,y:y0},{x:x1,y:y1},{x:x2,y:y2}.....]; | |
* var edges = new Delauney(w, h).triangulate(nodes); | |
*/ | |
var Delauney = function (width, height) { | |
//init | |
this.width = width; | |
this.height = height; | |
this.triangles = []; |
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
http://en.wikipedia.org/wiki/List_of_black_holes | |
http://heasarc.nasa.gov/docs/swift/results/transients/BlackHoles.html | |
http://www.johnstonsarchive.net/relativity/bhctable.html |
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
#!/usr/bin/perl | |
# replace_resource_ids.pl | |
# It replaces resource IDs (R.string.xxx) in source files with resource string | |
# and write in STDOUT. | |
# usage: ./replace_resource_ids.pl strings.xml Hoge.java | |
use strict; | |
my $dictFile = $ARGV[0]; | |
my $convertFile = $ARGV[1]; |
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 <avr/interrupt.h> | |
#include <avr/io.h> | |
ISR(INT0_vect) { | |
//Do Something | |
} | |
int main(void) { | |
EIMSK |= (1 << INT0); | |
PCMSK = (1 << PCINT0); |
- 所要時間: 20分
- 参考写真: https://twitter.com/MaripoGoda/status/501925686114648065/photo/1
- 安定したのでcookpadに投稿してみた http://cookpad.com/recipe/2763199
- 豚ひき肉50g
- うどん 肉のハナマサあたりで売ってる乾燥麺を1束
- Create a bookmark
- Edit the bookmark
- Copy & paste the code below into the "URL" textbox.
javascript:(function(){var d=new Date(new Date().getTime()+86400000);location.href="https://www.rarejob.com/reservation/bookmark/"+(d.getYear()+1900)+"/"+(d.getMonth()+1)+"/"+d.getDate()+"/";})();
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
#import <Foundation/Foundation.h> | |
@interface NSDate (Comparison) | |
- (BOOL) isBefore: (NSDate*) date; | |
- (BOOL) isAfter: (NSDate*) date; | |
@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
<?xml version="1.0"?> | |
<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0" author="Maripo GODA and contributors" description="日本でよく見られる樹木のプリセットです" shortdescription="日本の樹木"> | |
<chunk id="japan_trees"> | |
<text key="operator" text="運営者"/> | |
<text key="ref" text="参照番号"/> | |
<text key="height" text="高さ(m)"/> | |
<text key="circumference" text="幹の外周(m)"/> | |
<combo key="denotation" text="特徴" values="landmark,natural_monument,avenue,urban"/> | |
<check key="monument" text="記念樹"/> | |
</chunk> |
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
<?xml version="1.0"?> | |
<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0" author="Maripo GODA and contributors" description="日本でよく見られる樹木のプリセットです" shortdescription="日本の樹木"> | |
<chunk id="japan_trees"> | |
<text key="operator" text="運営者"/> | |
<text key="ref" text="参照番号"/> | |
<text key="height" text="高さ(m)"/> | |
<text key="circumference" text="幹の外周(m)"/> | |
<combo key="denotation" text="特徴" values="landmark,natural_monument,avenue,urban"/> | |
<check key="monument" text="記念樹"/> | |
</chunk> |