View www.conf
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
# | |
# Directory List: | |
# | |
# /srv/www <- base | |
# /srv/www/webpage <- root directory | |
# /srv/www/pages/40x.html <- 40x error page | |
# /srv/www/pages/50x.html <- 50x server error page | |
# | |
server { |
View installer.sh
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
#!/usr/bin/env bash | |
# see: https://qiita.com/a_yasui/items/40ec1c30afc9f90acd0e | |
PHP_VERSION=7.2.13 | |
INSTALL_DIR=/opt/phpenv | |
MYSQL_YUM_REPOSITORY_RPM=https://dev.mysql.com/get/mysql80-community-release-el7-1.noarch.rpm | |
MY_CNF=https://gist.githubusercontent.com/a-yasui/9b3a185f2920e5f1bfd0dbba10aa2261/raw/6a5ec116dc6295aeeda1ca3599fe11da687e1bb3/my.cnf | |
# 必要なものをインストール |
View convert.php
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
<?php | |
/** | |
* php ./convert.php -f <json file> | |
*/ | |
/** | |
* Class Block | |
*/ | |
class Block | |
{ | |
/** |
View test.swift
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
class ViewController: NSViewController | |
{ | |
func load(){ | |
let attributeText = NSMutableAttributedString(string: "テスト") | |
let field = NSTextField(frame: NSRect(x: 0, y: 0, width: 30, height: 30)) | |
let attr = [ | |
NSLinkAttributeName: "https://google.com/", | |
] as [String : Any] | |
View log.py
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
#!/usr/bin/env python | |
import logging | |
from logging import getLogger, StreamHandler, DEBUG | |
logging.basicConfig( | |
level=logging.INFO, | |
format="%(asctime)s (%(threadName)-10s) %(levelname)s %(message)s") | |
logger = getLogger(__name__) | |
handler = StreamHandler() |
View gist:7940da69a17ce385a43a4cd0a1d26846
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/sh | |
ps uax | awk 'BEGIN{FS=" ";OFS="\t";}{print $1,$2,$3,$4,$5,$6/1024 " MB",$7,$8,$9,$10,$11;}' |
View httpd.conf
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
# /usr/local/Cellar/etc/apache2/httpd.conf | |
ServerRoot "/usr/local/Cellar/httpd/2.2.25" | |
Listen 8888 | |
LoadModule authn_file_module libexec/mod_authn_file.so | |
LoadModule authn_dbm_module libexec/mod_authn_dbm.so | |
LoadModule authn_anon_module libexec/mod_authn_anon.so | |
LoadModule authn_dbd_module libexec/mod_authn_dbd.so | |
LoadModule authn_default_module libexec/mod_authn_default.so | |
LoadModule authz_host_module libexec/mod_authz_host.so | |
LoadModule authz_groupfile_module libexec/mod_authz_groupfile.so |
View PHP53.log
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
$ /usr/local/Cellar/php53/5.3.27/bin/php switch_or_array.php | |
start arr ... Finish: 10.038110971451 | |
start sw ... Finish: 6.0564711093903 |
View loop_reader.php
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
<?php | |
/** 兎に角ループさせる */ | |
while (true) { | |
echo " [x] If you wanna stop, you push Ctrl-C","\n"; | |
require("reader.php"); | |
sleep(1); | |
} |
View .tmux.conf
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
set-option default-shell /bin/zsh | |
# Prefix | |
set-option -g prefix C-z | |
# 日本語環境なら必須?? | |
setw -g utf8 on | |
set -g status-utf8 on | |
# status |