Skip to content

Instantly share code, notes, and snippets.

var xhr;
function requestFile( data , method , fileName , async ){
xhr = new XMLHttpRequest();
xhr.open( method , fileName , async ) ;
xhr.onreadystatechange = function(){
if (xhr.readyState==4){
//alert("hello!")
}
};
pre {
font-size: 12px;
background: #000;
color:white;
line-height: 20px;
overflow: auto;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
opacity:0.9;
}
//ウィンドウサイズ
const WIDTH=600;
const HEIGHT=450;
//canvas context
var ctx;
//キー入力
var key=[0,0,0,0,0]; // left, right, up, down
//マップ定義
const RIGHT=0;
const LEFT=1;
const UP=2;
const DOWN=3;
const START_POS=-1;
const GOAL_POS=-2;
# -*- coding: utf-8 -*-
class DataObj
attr_accessor :score
def initialize
@score=0
end
end
class SaveData
#-*- coding: utf-8 -*-
# 今までのインスンタンス変数を引き継ぎながら
# オブジェクトにインスタンス変数を追加するには
# どのようしたらいいでしょうか
class DataObj
attr_accessor :ver,:a,:b,:c
def initialize(obj) #
@ver=0
@a,@b,@c=0,1,2
#! /usr/bin/python
#coding:utf-8
import MeCab
import twitter
import os
import re
username=""
password=""
#/usr/bin/python
# -*- encoding:utf8 -*-
import mechanize
br = mechanize.Browser()
br.set_handle_robots(False)
url='http://mixi.jp'
username="<your email>"
password="<your password>"
#/usr/bin/python
# -*- encoding:utf8 -*-
import sqlite3 , twitter
from time import strftime ,sleep
"""
Twitterのログをとる
要:Python-Twitter
$sudo easy_install twitter などする
<!--
Togetterがなんか気持ち悪いので書き直した。
stylish @Firefox用
-->
@namespace url(http://www.w3.org/1999/xhtml);