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
#-*- coding:utf-8 -*- | |
import re | |
class textshredder: | |
def fileopen(self,fileopen): | |
self.textdata = open(fileopen,"r").read() | |
self.textsplit("[email protected]") | |
def textsplit(self,email): | |
self.textpage = [] | |
self.textpage = re.split("This PDF is prepared for [email protected], personal use only.\n",self.textdata) |
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
# -*- coding:utf-8 -*- | |
# 社会学評論・過去アーカイヴ Downloader | |
# http://www.journalarchive.jst.go.jp/japanese/jnltop_ja.php?cdjournal=jsr1950 | |
import urllib | |
import urllib2 | |
from BeautifulSoup import BeautifulSoup | |
import re | |
class System_html(object): |
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
# -*- coding:utf-8 -*- | |
import urllib | |
import urllib2 | |
from BeautifulSoup import BeautifulSoup | |
import re | |
import os | |
import zipfile | |
""" |
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
# -*- coding:utf-8 -*- | |
import pygame | |
from pygame.locals import * | |
import random | |
import time | |
def main(): | |
pygame.init() | |
screen = pygame.display.set_mode((640,480),pygame.FULLSCREEN) | |
pygame.display.set_caption("Denki") |
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
require "rubygems" | |
require "mechanize" | |
max_id = 50000 | |
min_id = 1 | |
account = "robot666" | |
password = "xxxx" | |
user_id = 1909 | |
browser = Mechanize.new | |
print "Login... \n" |
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
var image_word = { | |
elem : "h1,h2,h3,h4,h5,h6,span,li,ul,img".split(","), | |
count : 0, | |
} | |
var tag_p_and_a = { | |
p : [], | |
p_count : 0, | |
a : [], | |
a_count : 0 |
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
;;P01 | |
;;command | |
(defn my-last [fseq] (list(last fseq))) | |
;;P02 | |
(defn my-but-last [fseq] (list (last(butlast fseq)) (last fseq)) | |
;;other | |
(take-last 2 '(a b c)) | |
;;P03 |
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
--http://ameblo.jp/programming/entry-10001721422.html | |
cardlist::String -> Int -> [String] | |
cardlist cardset member = lines(getcard cardset member 0) | |
getcard::String -> Int -> Int -> [Char] | |
getcard cardset member start = if start == member | |
then "" | |
else returncard cardset (start + 1) member ++ "\n" ++ getcard cardset member (start + 1) |
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
// ==UserScript== | |
// @name 死ぬまでの時間 | |
// @namespace youdeathtime | |
// @description 貴方が2038年1月19日3時14分7秒になるまでに何秒かかるか | |
// @include http*://* | |
// @require http://jquery.com/src/jquery-latest.js | |
// ==/UserScript== | |
(function(){ | |
if(window != unsafeWindow.top){ | |
return; |
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
import sys | |
class line_manager: | |
def __init__(self): | |
self.first_line = True | |
self.in_data = True | |
self.data_finish_line = 0 | |
self.readline = 0 | |
self.is_one_line = True |
OlderNewer