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
○○株式会社 人事担当様: | |
莫迦田大学利口学研究科の鈴木うどんです。 | |
先日の説明会に参加させていただきありがとうございました。 | |
参加させていただいたことにより、貴社へ入社したいという思いが高まり、 | |
このたび選考に応募させていただきたく存じます。 | |
つきましては、エントリーシートを添付させていただきしたので | |
よろしくお願い致します。 |
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
<?php | |
$ci = curl_init('http://udonchan.tumblr.com/api/read/json?num=1&type=photo&start='. mt_rand(0,1000)); | |
curl_setopt($ci, CURLOPT_RETURNTRANSFER, TRUE); | |
$value = json_decode(str_replace(";","",str_replace("var tumblr_api_read = ","",curl_exec($ci))), true); | |
header("Location: " . $value["posts"][0]["photo-url-400"]); |
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
CPU=`sysctl -a hw 2>&1 | grep 'hw.availcpu' | sed 's|hw.availcpu = *||'` | |
let J=$CPU*4 | |
CFLAGS="-O3 -finline-limit=8000 -fstack-protector -param=ssp-buffer-size=4 -mieee-fp -funroll-loops -fpeel-loops -march=core2 -fno-trapping-math -fno-tree-pre -ftree-vectorize -ftracer -fsee" | |
CXXFLAGS="${CFLAGS}" | |
# As used here, arguments in $MOZ_BUILD_PROJECTS are suitable as arguments | |
# to gcc's -arch parameter. | |
mk_add_options MOZ_BUILD_PROJECTS="x86_64 i386" |
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
#!/bin/sh | |
export LANG=ja_JP.UTF-8 | |
USERLIST='/etc/.notify_users' | |
DOMAIN="udonchan.org" | |
SUBJECT="[${DOMAIN}]SpamMail Notify From MailServer" | |
for user in `grep -v "^#" $USERLIST`; | |
do | |
CNT=0 |
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
#define COLOR_HEX(c) [UIColor colorWithRed:((c>>16)&0xFF)/255.0 \ | |
green:((c>>8)&0xFF)/255.0 \ | |
blue:(c&0xFF)/255.0 \ | |
alpha:1.0] |
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 <UIKit/UIKit.h> | |
@interface UIMonthAndDayPickerView : UIPickerView<UIPickerViewDelegate, UIPickerViewDataSource> { | |
int month; | |
int day; | |
} | |
@property (nonatomic,readonly) int month; | |
@property (nonatomic,readonly) int day; | |
@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
#define _COMPONENT_MONTH_LABEL 0 | |
#define _COMPONENT_DAY_LABEL 1 | |
@implementation UIMonthAndDayPickerView | |
@synthesize month, day; | |
- (id)initWithFrame:(CGRect)aRect { | |
if ([super initWithFrame:aRect] != nil) { | |
self.delegate = self; | |
self.dataSource = self; | |
self.showsSelectionIndicator = YES; |
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
@implementation Qreki | |
+(NSString *)month2Qmonth:(int)month { | |
switch (month) { | |
case 1: | |
return @"睦月"; | |
case 2: | |
return @"如月"; | |
case 3: | |
return @"弥生"; | |
case 4: |
NewerOlder