更新: | 2014-11-20 |
---|---|
バージョン: | 0.0.5 |
作者: | @voluntas |
URL: | http://voluntas.github.io/ |
概要
更新: | 2014-11-20 |
---|---|
バージョン: | 0.0.5 |
作者: | @voluntas |
URL: | http://voluntas.github.io/ |
概要
# -*- coding: utf-8 -*- | |
# answer_q684.py | |
# ===== DEFINITIONS ===== | |
# メモ化再帰のためのキャッシュ | |
cache = {} | |
# 与えられた数値のリストから、各文字がその数だけある場合の全パターン総数を計算(メモ化再帰) | |
def calc_count(num_list): |
http://docs.aws.amazon.com/AmazonVPC/latest/GettingStartedGuide/GetStarted.html
phpMyAdmin
Type | Protocol | Port Range | Destination |
---|---|---|---|
SSH | TCP | 22 | 0.0.0.0/0 |
# coding=utf-8 | |
import sys | |
import socket | |
import select | |
from urlparse import urlparse, parse_qs | |
import word2vec | |
argvs = sys.argv | |
port = 8000 |
package main | |
import ( | |
"log" | |
"os" | |
"syscall" | |
) | |
func main() { | |
f, err := os.Open("not-found-file.txt") |
--- | |
- name: Deploy new site release | |
user: deployer | |
hosts: all | |
tasks: | |
- name: Fetch repo updates | |
git: > | |
[email protected]:my/repo.git |
# 人生初gulpfile | |
gulp = require "gulp" | |
coffee = require "gulp-coffee" | |
jade = require "gulp-jade" | |
stylus = require "gulp-stylus" | |
del = require "del" | |
paths = | |
coffee: 'src/coffee/*.coffee' |