Skip to content

Instantly share code, notes, and snippets.

View whywaita's full-sized avatar

Tachibana waita whywaita

View GitHub Profile
image: whywaita/docker-latex-jlisting:latest
before_script:
- ruby --version
media:
stage: build
script:
- cd media
- mkdir tmp
#!/bin/sh
set -euo pipefail
REPORT_NAME=$1
git clone https://github.com/kakakaya/mics_report ${REPORT_NAME}
rm -rf ${REPORT_NAME}/.git
@whywaita
whywaita / ffmpeg_maxpower_install_http_proxy.sh
Created April 21, 2016 03:54
Install ffmpeg in proxy environment if you can use only http(s)
#!/usr/bin/env bash
export http_proxy=http://proxy.uec.ac.jp:8080 ## PLEASE CHANGE!!!
export https_proxy=http://proxy.uec.ac.jp:8080 ## PLEASE CHANGE!!!
#uninstall
# apt-get remove ffmpeg x264 libx264-dev -y
apt-get remove ffmpeg -y
## install build-tools and library
apt-get update
@whywaita
whywaita / 2016spring.md
Last active April 11, 2016 22:27
2016年春季アニメ録画リスト

録画リスト

名前 放送時間 done
宇宙パトロールルル子 MX 4/1 (金) 23:00 done
神撃のバハムート MX 4/1 (金) 23:00 done
ぷちます MX 4/1 (金) 23:00 done
ジョジョの奇妙な冒険 ダイヤモンドは砕けない MX 4/1 (金) 24:30 done
Classroom☆Crisis パッケージマスター版 MX 4/1 done
ぼのぼの フジテレビ 4/2 (土) 4:52 done
逆転裁判 日本テレビ 4/2 (土) 17:30 done
@whywaita
whywaita / gitlab.py
Last active March 31, 2016 17:15
for GitLab 8.5. use ICT Trouble Shooting Contest 5. in detail (http://icttoracon.net/tech-blog/2016/03/31/question11/) (japanese)
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
# GitLabのベースURL
#url = ["http://localhost:8001",
# "http://localhost:8002"]
url = ["http://localhost:8001"]
# チームのID
#!/usr/bin/env bash
#uninstall
# sudo apt-get remove ffmpeg x264 libx264-dev -y
sudo apt-get remove ffmpeg -y
## install build-tools and library
sudo apt-get update
sudo apt-get install -y build-essential checkinstall git libfaac-dev libjack-jackd2-dev \
libmp3lame-dev libopencore-amrnb-dev libopencore-amrwb-dev libsdl1.2-dev libtheora-dev \
libva-dev libvdpau-dev libvorbis-dev libx11-dev libxfixes-dev texi2html yasm zlib1g-dev
sudo apt-get install -y libtool automake autoconf checkinstall libtheora-dev libvorbis-dev libopencore-amrwb-dev libopencore-amrnb-dev
@whywaita
whywaita / 2016winter.md
Last active January 7, 2016 17:05
2016年冬季(新春)アニメ録画リスト

録画リスト

名前 放送時間 done
無彩限のファントム・ワールド MX 1/6(水) 24:00 done
ハルチカ〜ハルタとチカは青春する〜 MX 1/6(水) 25:35 done
アクティヴレイド -機動強襲室第八係- MX 1/7(木) 22:00 done
少女たちは荒野を目指す MX 1/7(木) 23:30 done
僕だけがいない街 フジテレビ 1/7(木) 24:55 done
だがしかし TBS 1/7(木) 26:16 done
暗殺教室 フジテレビ 1/7(木) 25:25 done
@whywaita
whywaita / lt.md
Last active October 25, 2015 08:35
タイトル お名前
飛び入り neotaso
資格の話 #2 kyontan
並列処理・MPIの第一歩 n_scattering
かの有名なOSでTwitter Clientを作るためのハードル 白鷹
Alt TeX開発中というお話 himomikai.green
歯舞 alstamber
@whywaita
whywaita / 2015autumn.md
Last active October 6, 2015 14:40
2015年秋季アニメ録画リスト

録画リスト

名前 放送時間 done
ヤング ブラック・ジャック TBS 10/1(木) 25:16 done
ルパン三世(第4シーズン) 日本テレビ 10/1(木) 25:29 done
Lance N' Masques(ランス・アンド・マスクス) TBS 10/1(木) 25:46 done
ハッカドール MX 10/2(金) 23:00 done
ヘヴィーオブジェクト MX 10/2(金) 24:30 done
ノラガミ ARAGATO MX 10/2(金) 25:05 done
K RETURN OF KINGS TBS 10/2(金) 25:55 done
@whywaita
whywaita / ruby_191_hacks.rb
Last active August 29, 2015 14:27 — forked from andre/ruby_191_hacks.rb
for redmine
# Drop this file in config/initializers to run your Rails project on Ruby 1.9.
# This is three separate monkey patches -- see comments in code below for the source of each.
# None of them are original to me, I just put them in one file for easily dropping into my Rails projects.
# Also see original sources for pros and cons of each patch. Most notably, the MySQL patch just assumes
# that everything in your database is stored as UTF-8. This was true for me, and there's a good chance it's
# true for you too, in which case this is a quick, practical solution to get you up and running on Ruby 1.9.
#
# Andre Lewis 1/2010
# encoding: utf-8