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
<form action="next.html" name="frm" id="frm"> | |
<input type="text" id="id"/> | |
<input type="submit" id="submit" onClick="return false;"> | |
</form> |
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
<style type="text/css"> | |
div.content-3d{ | |
top: 10px; | |
left: 10px; | |
position: relative; | |
} | |
div.content-3d div{ | |
float: left; | |
opacity: 0.7; | |
position: absolute; |
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
private WebDriver driver; | |
protected void capture(String path) throws IOException { | |
WebDriver driver = this.driver; | |
if (driver instanceof HtmlUnitDriver) { | |
return; | |
} else if (driver instanceof RemoteWebDriver) { | |
driver = new Augmenter().augment(this.driver); | |
} else { | |
// 何もしない | |
} |
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
C:\hoehoe>jitsu deploy | |
info: Welcome to Nodejitsu mitsuruog | |
info: jitsu v0.9.8 | |
info: It worked if it ends with Nodejitsu ok | |
info: Executing command deploy | |
info: Skipping require-analyzer because noanalyze option is set | |
info: Skipping require-analyzer because noanalyze option is set | |
warn: Local package version appears to be old | |
warn: The package.json version will be incremented automatically | |
warn: About to write C:hoehoe\package.json |
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
{ | |
"log": { | |
"version": "1.2", | |
"creator": { | |
"name": "WebInspector", | |
"version": "537.4" | |
}, | |
"pages": [ | |
{ | |
"startedDateTime": "2012-10-02T01:31:17.326Z", |
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 LED_PIN 13 | |
void setup(){ | |
pinMode(LED_PIN, OUTPUT); | |
} | |
void loop(){ | |
digitalWrite(LED_PIN, HIGH); | |
delay(500); | |
digitalWrite(LED_PIN, LOW); |
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 LED_PIN 13 | |
void setup(){ | |
pinMode(LED_PIN, OUTPUT); | |
Serial.begin(9600); | |
} | |
void loop(){ | |
int input; | |
input = Serial.read(); |
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 LED_PIN1 10 | |
#define LED_PIN2 9 | |
void setup(){ | |
pinMode(LED_PIN1, OUTPUT); | |
pinMode(LED_PIN2, OUTPUT); | |
} | |
void loop(){ | |
digitalWrite(LED_PIN1, HIGH); |
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 LED_PIN1 10 | |
#define LED_PIN2 9 | |
void setup(){ | |
pinMode(LED_PIN1, OUTPUT); | |
pinMode(LED_PIN2, OUTPUT); | |
} | |
void loop(){ | |
analogWrite(LED_PIN1, 255); |
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
Request URL:ws://wsping.jit.su/socket.io/1/websocket/dL7NXuBCnWhqnZMPAYkU | |
Request Method:GET | |
Status Code:101 Switching Protocols | |
Request Headersview source | |
Connection:Upgrade | |
Host:wsping.jit.su | |
Origin:http://wsping.jit.su | |
Sec-WebSocket-Extensions:x-webkit-deflate-frame | |
Sec-WebSocket-Key:4EjkGu1WajTwi0MOvQjOyw== | |
Sec-WebSocket-Version:13 |
OlderNewer