- ニコニコ生放送 (ドワンゴ)
- SHOWROOM (DeNA)
- LINE LIVE (LINE)
- FRESH! (CyberAgent)
- YouTube Live (YouTube, Google)
- Instagram live (Instagram)
- Twitch (Amazon.com)
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
# Ansible | |
- hosts: 127.0.0.1 | |
connection: local | |
sudo: yes | |
vars: | |
etcd_version: v2.2.1-linux-amd64 | |
kubermetes_version: v1.0.6 | |
src: /tmp |
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
import java.io.File; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.Comparator; | |
import java.util.List; | |
public class FileManager { | |
public static List<File> getParseFileList(String path){ | |
List<File> fileList = new ArrayList<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
- hosts: 127.0.0.1 | |
connection: local | |
sudo: yes | |
vars: | |
etcd_version: v2.2.2 | |
kubernetes_version: v1.1.3 | |
src: /tmp | |
tasks: | |
#- name: Yum install Docker |
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
postgresql: | |
image: quay.io/sameersbn/postgresql:9.4-5 | |
environment: | |
- DB_USER=gitlab | |
- DB_PASS=password | |
- DB_NAME=gitlabhq_production | |
volumes: | |
- /srv/docker/gitlab/postgresql:/var/lib/postgresql | |
gitlab: | |
image: quay.io/sameersbn/gitlab:8.0.5-1 |
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
# GridDB | |
FROM centos:6.7 | |
MAINTAINER lulichn <[email protected]> | |
RUN set -ex \ | |
&& yum update -y \ | |
&& yum install -y unzip \ | |
&& yum groupinstall -y "Development Tools" |
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
#!/bin/bash | |
# | |
# Backup mimicking Time Machine from Mac OS X using rsync | |
# --- Variables --- # | |
OS=$(uname -s) | |
HOST=$(hostname) |
https://forum.pine64.org/showthread.php?tid=5319
ethtool -K eth0 tx off
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
sudo apt-get install python3-pip | |
pip3 install docopt gmusicapi-wrapper | |
wget https://raw.githubusercontent.com/thebigmunch/gmusicapi-scripts/master/gmusicapi_scripts/gmupload.py | |
sudo mv gmupload.py /usr/bin/gmupload | |
sudo chmod +x /usr/bin/gmupload |
OlderNewer