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
http://transit.ekitan.com/norikae/NorikaeSearch? | |
SFNAME //出発駅名(ShiftJISでURLエンコード) | |
STNAME //到着駅名(ShiftJISでURLエンコード) | |
SV1NAME //経由駅名(ShiftJISでURLエンコード) | |
MONTH //年月(例:201306) | |
DAY //日(例:14) | |
HOUR //時(例:13) | |
MIN //分(例:15) | |
SR //0 = 出発 1 = 到着 |
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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Windows.Forms; |
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
#include <stdio.h> | |
#include <stdlib.h> | |
int main() | |
{ | |
int i; | |
srand((unsigned int)time(NULL)); | |
printf("kazu=>"); | |
scanf("%d", &i); | |
if ((rand() % 2) == 1) |
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
void uart_send(unsigned char *str) | |
{ | |
IO.PMR1.BIT.TXD = 1; // 送信ポートをSCI3に設定 | |
SCI3.SCR3.BYTE = 0x00; // SCI3設定 供給は内部クロック | |
SCI3.SCR3.BYTE = 0x30; // 送受信を有効にし割込みは使わない | |
SCI3.BRR = 64; // ボーレート 9600(20MHz = 64, 16MHz = 51) | |
SCI3.SMR.BYTE = 0x00; // N81XN | |
SCI3.SSR.BYTE &= 0x80; // エラーフラグのクリア | |
while(*str != '\0'){ |
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
//ウィンドウサイズは840, 600ぐらいがおすすめ | |
//WebBrowser配置していい感じにイベント設定 | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Windows.Forms; |
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
#!/bin/bash | |
if test $USER = root; then | |
mount -o rw, remount /system | |
cp migu-1c-regular.ttf /system/fonts | |
cp migu-1c-bold.ttf /system/fonts | |
//mv DroidSans.ttf sans_org.ttf | |
//mv DroidSans-Bold.ttf sans_bold_org.ttf | |
rm DroidSans.ttf | |
rm DroidSans-Bold.ttf |
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
!!DICUT26 | |
ながと 長門 固有一般 | |
むつ 陸奥 固有一般 | |
いせ 伊勢 固有一般 | |
ひゅうが 日向 固有一般 | |
ゆきかぜ 雪風 固有一般 | |
あかぎ 赤城 固有一般 | |
かが 加賀 固有一般 | |
そうりゅう 蒼龍 固有一般 |
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
Windows Registry Editor Version 5.00 | |
[HKEY_USERS\.Default\Control Panel\Keyboard] | |
"InitialKeyboardIndicators"="2" |
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
#include "hspsock.as" | |
sockmake 0, 31337 | |
repeat | |
sockwait 0 | |
if stat = 0: break | |
await | |
loop | |
mes "c" | |
x = "" |