名前 | 局 | 放送時間 | 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 |
This file contains hidden or 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
image: whywaita/docker-latex-jlisting:latest | |
before_script: | |
- ruby --version | |
media: | |
stage: build | |
script: | |
- cd media | |
- mkdir tmp |
This file contains hidden or 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
#!/bin/sh | |
set -euo pipefail | |
REPORT_NAME=$1 | |
git clone https://github.com/kakakaya/mics_report ${REPORT_NAME} | |
rm -rf ${REPORT_NAME}/.git |
This file contains hidden or 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 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 |
This file contains hidden or 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 selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
# GitLabのベースURL | |
#url = ["http://localhost:8001", | |
# "http://localhost:8002"] | |
url = ["http://localhost:8001"] | |
# チームのID |
This file contains hidden or 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 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 |
タイトル | お名前 |
---|---|
飛び入り | neotaso |
資格の話 #2 | kyontan |
並列処理・MPIの第一歩 | n_scattering |
かの有名なOSでTwitter Clientを作るためのハードル | 白鷹 |
Alt TeX開発中というお話 | himomikai.green |
歯舞 | alstamber |
This file contains hidden or 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
# 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 |