タイトル | お名前 |
---|---|
飛び入り | 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
#!/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 |
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 | |
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
#!/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
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
## Configuration options with # in front are not active and they were | |
## valid at install time. Updating the package does not update this file | |
## automatically. | |
## Latest options listed at: | |
## https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/files/gitlab-config-template/gitlab.rb.template | |
## Url on which GitLab will be reachable. | |
## For more details on configuring external_url see: | |
## https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/doc/settings/configuration.md#configuring-the-external-url-for-gitlab |
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
## Url on which GitLab will be reachable. | |
## For more details on configuring external_url see: | |
## https://gitlab.com/gitlab-org/omnibus-gitlab/blob/629def0a7a26e7c2326566f0758d4a27857b52a3/README.md#configuring-the-external-url-for-gitlab | |
external_url 'http://gitlab.example.com' | |
## Note: configuration settings below are optional. | |
## Uncomment and change the value. | |
############################ | |
# gitlab.yml configuration # |