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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>topic 152717 answer</title> | |
<style> | |
ul{ | |
list-style: none; | |
} | |
ul li a{ |
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
/** | |
* jQueryの読み込みコードはこちらを使っています。 | |
* http://qiita.com/otchy/items/5c4f2e1b2a93ac200f1c | |
**/ | |
javascript:(function(f,s){s=document.createElement("script");s.src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js";s.onload=function(){f(jQuery.noConflict(true))};document.body.appendChild(s)})(function($){ $("*").css("font-family", "sans-serif"); }) |
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
@route('/') | |
def index(): | |
# Logic | |
return template("index") | |
@route('/', method="POST") | |
def do_process(): | |
# Logic | |
value = request.forms.get('foo') | |
return template("result", value) |
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 ketai.sensors.*; | |
KetaiSensor sensor; | |
float x, y, z, r; | |
float vx, vy, vz; | |
void setup(){ | |
sensor = new KetaiSensor(this); | |
sensor.start(); | |
orientation(LANDSCAPE); | |
x = width/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
#!/usr/local/bin/python | |
#coding:utf-8 | |
import sys | |
import base64 | |
def s2b64_encode(file): | |
#bytes -> base64 | |
#in filename(string) |
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
#!python2 | |
#coding:utf-8 | |
import sys | |
from ctypes import * | |
if __name__ == '__main__': | |
lib = windll.tssns2 | |
ID = "YourID" | |
PASS = "YourPassword" |
NewerOlder