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
##### | |
# OS Xの一時ファイル | |
.DS_Store | |
*.swp | |
*.lock | |
profile | |
#### |
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
module.exports = (grunt)-> | |
grunt.initConfig | |
pkg: grunt.file.readJSON 'package.json' | |
jade: | |
options: | |
pretty: true | |
compile: | |
files:[ | |
expand: true | |
cwd: 'src/jade/' |
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
\documentclass[a4j]{jarticle} | |
\usepackage[dvipdfm]{graphicx} | |
\usepackage{listings,jlisting} | |
\usepackage{color,graphicx} | |
\usepackage{geometry} | |
\usepackage{type1cm} | |
\title{<TITLE>} | |
\author{<AUTHOR>} | |
\date{\today} |
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
from __future__ import print_function | |
import sys | |
def spinner_gen(): | |
while 1: | |
yield '|' | |
yield '/' | |
yield '-' | |
yield '\\' |
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
function send_yo() { | |
curl -s -d "api_token=API_TOKEN" -d "username=$1" http://api.justyo.co/yo/ | |
} | |
function yome() { | |
if [ $# -gt 0 ]; then | |
for arg in $@ | |
do | |
send_yo $arg > /dev/null | |
done |
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
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] |
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
alias activate='f=`find . -regex ".*/bin/activate"`; source $f' |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import os | |
import sqlite3 | |
import time | |
from enum import Enum | |
from bottle import request, response, route, run, static_file |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import hashlib | |
import json | |
import os | |
import sqlite3 | |
import time | |
import urllib.request |
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
FROM python:3 | |
RUN apt-get update && apt-get upgrade -y | |
RUN apt-get install -y libfreetype6-dev libatlas-base-dev liblapack-dev gfortran cron | |
RUN pip install matplotlib | |
RUN pip install pandas | |
RUN pip install bottle |
OlderNewer