../curl-7.53.1/configure \
--prefix=/usr/local \
--libdir=/usr/local/lib64 \
--enable-optimize \
--enable-http \
--enable-ftp \
--enable-file \
--enable-telnet \
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
LANG=C xdg-user-dirs-update --force | |
rm -rf {ダウンロード,テンプレート,ビデオ,公開,デスクトップ,音楽,ドキュメント,画像} | |
sudo dnf remove \ | |
baobab \ | |
cheese \ | |
disk-quote \ | |
empathy \ | |
empathy \ | |
eog \ |
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 centos:latest | |
MAINTAINER Gofer (@gofer_ex) <[email protected]> | |
ARG RUBY_VERSION=2.3.3 | |
RUN yum -y install make git gcc | |
RUN yum -y install gdbm openssl readline zlib | |
RUN yum -y install gdbm-devel openssl-devel readline-devel zlib-devel |
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
delete system ntp server 0.pool.ntp.org | |
delete system ntp server 1.pool.ntp.org | |
delete system ntp server 2.pool.ntp.org | |
set system ntp server ntp.nict.jp | |
set system ntp server ntp.jst.mfeed.ad.jp | |
set system ntp server jp.pool.ntp.org | |
set system time-zone Asia/Tokyo |
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 | |
# LinuxのTimeZoneを変更 | |
# 参考 | |
# http://qiita.com/azusanakano/items/b39bd22504313884a7c3 | |
# タイムゾーンの変更 | |
cp /etc/localtime /etc/localtime.original | |
ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime |
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
#include <iostream> | |
#include <vector> | |
template<typename T> | |
struct Node | |
{ | |
T value; | |
unsigned inf, sup; | |
Node<T> *left, *right; | |