https://lolipop-teru.ssl-lolipop.jp/gunsou/index.html
俺たちは、仕様も知らされぬまま横須賀に送り込まれた。
依頼主も孫請けらしく、正確な情報はかなり伝言ゲーム的にそれも口頭でしか伝えられない。 俺たちは、経験5年の軍曹1人と、経験2年の上等兵1人と、新人の2等兵3人の小隊だった。 現地に就くなり、現場は火を噴いた有様だった。果てしないデバッグの果てに
https://lolipop-teru.ssl-lolipop.jp/gunsou/index.html
俺たちは、仕様も知らされぬまま横須賀に送り込まれた。
依頼主も孫請けらしく、正確な情報はかなり伝言ゲーム的にそれも口頭でしか伝えられない。 俺たちは、経験5年の軍曹1人と、経験2年の上等兵1人と、新人の2等兵3人の小隊だった。 現地に就くなり、現場は火を噴いた有様だった。果てしないデバッグの果てに
# See: https://blog.amedama.jp/entry/2015/10/16/224740 | |
import inspect | |
def context(session = Session): | |
def _decorator(func): | |
def __decorator(*args, **kwargs): | |
name = "context" | |
value = "some thing" | |
try: | |
args_names = inspect.getargspec(func)[0] | |
target_pos = args_names.index(name) |
rom datetime import datetime | |
from apscheduler.schedulers.twisted import TwistedScheduler | |
from scrapy.crawler import CrawlerProcess | |
from scrapy.crawler import CrawlerRunner | |
from scrapy.utils.project import get_project_settings | |
from scrapy.utils.log import configure_logging | |
from twisted.internet import reactor, defer | |
spiders = [] |
import codecs | |
import re | |
import sys | |
import unicodedata | |
REGEXP_ALIAS = re.compile(r'_\(.*?\)') | |
REGEXP_NUMBER = re.compile(r'^[0-9]+$') | |
def IsSyllabaryType(char, syllabaryType): | |
return unicodedata.name(char).startswith(syllabaryType) |
environment = {} | |
input1 = ''' | |
def say(self): | |
print("hello") | |
print(self.NAME) | |
self.hoo("say! hoo!") | |
''' | |
func_string = ''' |
// 参考 | |
// http://blog.amedama.jp/entry/2016/11/20/173932 | |
// http://www.koka.ac.jp/morigiwa/sjs/chi-square_distribution.htm | |
//ピアソンのカイ二乗検定 | |
//http://blog.amedama.jp/entry/2016/11/20/173932 | |
//npi >= 10 | |
var pi = Xorshift.MAX_VALUE; | |
var n = 10000; //標本数 var dist = 10; |
var Event = function(type, target, sender, payload){ | |
this.type = type; | |
this.target = target; | |
this.sender = sender; | |
this.payload = payload; | |
}; | |
var EventTarget = function(){ | |
this.eventListeners = []; | |
}; |
Thu Aug 25 17:02:59 2016 Profile.prof | |
2477285 function calls (2477047 primitive calls) in 1.954 seconds | |
Ordered by: internal time | |
ncalls tottime percall cumtime percall filename:lineno(function) | |
108413 0.295 0.000 0.426 0.000 cyzipfile.pyx:556(readline) | |
288222 0.294 0.000 0.316 0.000 random.py:175(randrange) | |
249 0.232 0.001 0.242 0.001 cyzipfile.pyx:1117(write) |
$ emacs . | |
Fatal error 11: Segmentation fault | |
Backtrace: | |
0 emacs 0x000000010009e92f emacs_backtrace + 87 | |
1 emacs 0x0000000100084c4e terminate_due_to_signal + 97 | |
2 emacs 0x000000010009f33a tcsetpgrp_without_stopping + 0 | |
3 emacs 0x000000010009e7d8 maybe_fatal_sig + 0 | |
4 libsystem_platform.dylib 0x00007fff892205aa _sigtramp + 26 | |
5 emacs 0x000000010043bfb8 globals + 0 | |
6 emacs 0x000000010013f948 composition_compute_stop_pos + 1248 |
FROM centos:centos7 | |
MAINTAINER Ike Tohru "[email protected]" | |
RUN yum -y update; yum clean all | |
RUN yum -y install epel-release; yum clean all | |
RUN yum -y install python-pip; yum clean all | |
RUN yum groupinstall -y development && \ | |
yum install -y bzip2-devel git hostname openssl openssl-devel sqlite-devel sudo tar zlib-dev |