これは 転職 Advent Calendar 2016 - Qiita の9日目の投稿です。
子供、可愛いですよね。
子供が産まれるまでは正直うるさいだけと思っていて苦手だったのですが、いざ自分に子供が生まれてみると、どんなにうるさくても、鼻水を服に擦りつけてきても、技術書を破ったり落書きして遊んでいても、書いたコードを保存する前にPCの電源ボタンを押されて作業が飛んでしまっても__可愛いから許す!!__と思えてしまうぐらい、まぁ、とにかく可愛い。
これは 転職 Advent Calendar 2016 - Qiita の9日目の投稿です。
子供、可愛いですよね。
子供が産まれるまでは正直うるさいだけと思っていて苦手だったのですが、いざ自分に子供が生まれてみると、どんなにうるさくても、鼻水を服に擦りつけてきても、技術書を破ったり落書きして遊んでいても、書いたコードを保存する前にPCの電源ボタンを押されて作業が飛んでしまっても__可愛いから許す!!__と思えてしまうぐらい、まぁ、とにかく可愛い。
以下転載:
#! /usr/bin/env python3 | |
#coding:utf-8 | |
#require bitstring | |
import bitstring | |
import math | |
import sys | |
filename = sys.argv[1] | |
packet_length = 188 |
#ubuntu preseed file for desktop with disk encryption | |
d-i debian-installer/locale string en_GB.UTF-8 | |
d-i console-setup/ask_detect boolean false | |
d-i keyboard-configuration/variantcode string qwerty | |
d-i keyboard-configuration/layoutcode string British | |
d-i netcfg/choose_interface select auto | |
d-i netcfg/get_hostname string unassigned-hostname | |
d-i netcfg/get_domain string internal.local | |
d-i netcfg/wireless_wep string |
# System language | |
lang en_US | |
# Language modules to install | |
langsupport en_US | |
# System keyboard | |
keyboard us | |
# System mouse |
var Hangul = { | |
startChar: 'ㄱㄲㄴㄷㄸㄹㅁㅂㅃㅅㅆㅇㅈㅉㅊㅋㅌㅍㅎ'.split(''), | |
middleChar: 'ㅏㅐㅑㅒㅓㅔㅕㅖㅗㅘㅙㅚㅛㅜㅝㅞㅟㅠㅡㅢㅣ'.split(''), | |
endChar: ' ㄱㄲㄳㄴㄵㄶㄷㄹㄺㄻㄼㄽㄾㄿㅀㅁㅂㅄㅅㅆㅇㅈㅊㅋㅌㅍㅎ'.split(''), | |
code: '가'.charCodeAt(0) | |
} | |
var HanConv = { | |
start: 'rRseEfaqQtTdwWczxvg'.split(''), | |
middle: 'k,o,i,O,j,p,u,P,h,hk,ho,hl,y,n,nj,np,nl,b,m,ml,l'.split(','), |
#include <vector> | |
#include <iostream> | |
using namespace std; | |
/** | |
\brief Given a complete, undirected, weighted graph in the form of an adjacency matrix, | |
returns the smallest tour that visits all nodes and starts and ends at the same | |
node. This dynamic programming solution runs in O(n^2 * 2^n). |
作: | @voluntas |
---|---|
バージョン: | 1.0.1 |
URL: | https://voluntas.github.io/ |
2015 年 1 月 12 日に行われた 「テレビ連動サーバー」勉強会 向けの発表資料です。
#%%cython -I/usr/local/include -L/usr/local/lib -llas_c | |
# Created by Casey Goodlett | |
cimport cython | |
import numpy as np | |
cimport numpy as np | |
import liblas | |
DTYPE = np.float64 | |
ctypedef np.float64_t DTYPE_t |
## | |
## Copy & Paste Tool for images to PowerPoint(.pptx) | |
## | |
import pptx | |
import pptx.util | |
import glob | |
import scipy.misc | |
OUTPUT_TAG = "MY_TAG" |