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
一歳半のちびっ子が認識しない件 | |
Kinect本はKinect-Hackにぴったりです | |
OpenNI | |
Generator | |
MetaData | |
NITE | |
Session | |
Detector | |
idea |
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
一歳半のちびっ子が認識しない件 | |
Kinect本はKinect-Hackにぴったりです | |
OpenNI | |
Generator | |
MetaData | |
NITE | |
Session | |
Detector | |
idea |
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> | |
main(){ | |
prinrf("this is test."); | |
} |
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 re | |
hoge = "1,2, 3,4 ,5" | |
str = re.sub(" ","",hoge).split(",",) |
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
char hoge[4] = "hoge"; |
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
SecoundB { | |
public: | |
string name[40] = {"hoge fuga", | |
"foo bar",...}; | |
private: | |
room skypeRoomChat; | |
history blackHistory; | |
} |
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<math.h> | |
#include<stdio.h> | |
void main(){ | |
int i,times,vo,vi; | |
printf("please input Vi\n"); | |
scanf("%d", &vi); | |
times = 1; | |
for(i = 0; i < 4; i++) { | |
times = times*10; |
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<math.h> | |
#include<stdio.h> | |
void main(){ | |
int i,times; | |
float vo,vi; | |
printf("please input Vi\n"); | |
scanf("%f", &vi); | |
times = 1; | |
for(i = 0; i < 4; i++) { |
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
; PIC test program | |
; | |
list p=16f84 | |
; | |
; define config fuses | |
; | |
include "p16f84.inc" | |
__CONFIG _HS_OSC & _PWRTE_ON & _WDT_OFF | |
DELAYT EQU 0DH |
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
irb(main):003:0> if nil | |
irb(main):004:1> print hoge | |
irb(main):005:1> end | |
=> nil | |
irb(main):006:0> if !nil | |
irb(main):007:1> print hoge | |
irb(main):008:1> end | |
100=> nil | |
irb(main):009:0> if 1 | |
irb(main):010:1> print hoge |