Skip to content

Instantly share code, notes, and snippets.

@tnmt
tnmt / stns-query-wrapper.te
Created December 19, 2017 10:20
STNSのsshクエリラッパー用SELinuxのポリシーファイル
module stns-query-wrapper 1.0;
require {
type bin_t;
type chkpwd_t;
type policykit_t;
type sshd_t;
type sysctl_net_t;
type sysfs_t;
type system_dbusd_t;
@tnmt
tnmt / ghost-to-hugo.py
Created September 25, 2017 11:57
data exporter from Ghost (ready for 1.X) to Hugo (also Octopress) data format.
#!/bin/env python
# coding: utf-8
import os
import json
from datetime import datetime
def main():
# Read the Ghost export file
f = open('GhostData.json', 'r')
InnoDBの要注意パラメータをピックアップしてってる
innodb_adaptive_flushing_lwm
innodb_change_buffer_max_size
innodb_io_capacity
innodb_io_capacity_max
@tnmt
tnmt / idea.yml
Created January 20, 2016 08:05 — forked from kentaro/idea.yml
---
service: minne
enable:
- h2
- mruby
mrbgems:
- mruby-foo
- mruby-bar
@tnmt
tnmt / .zshrc
Created June 22, 2015 05:27
いつかの.zshrc
# Emacs style key binding
bindkey -e
# プロンプトのカラー表示を有効
autoload -U colors
colors
# デフォルトの補完機能を有効
autoload -U compinit
compinit
@tnmt
tnmt / ldap_centos6_7.diff
Last active August 29, 2015 14:14
LDAPでsshログインするときのCentOS6用設定とCentOS7用設定の差分
--- modules/ldap/files/password-auth-ac
+++ modules/ldap/files/password-auth-ac
@@ -3,24 +3,25 @@
# User changes will be destroyed the next time authconfig is run.
auth required pam_env.so
auth sufficient pam_unix.so nullok try_first_pass
-auth requisite pam_succeed_if.so uid >= 500 quiet
+auth requisite pam_succeed_if.so uid >= 1000 quiet_success
auth sufficient pam_ldap.so use_first_pass
auth required pam_deny.so
@tnmt
tnmt / pretty_format_fio.pl
Created August 8, 2013 01:53
fioの出力をgithub wikiのtable形式にフォーマットする
#!/usr/bin/perl
use strict;
use warnings;
print <<EOT;
- | bandwidth | iops
--------------|-------------|--------
EOT
TAG_PREFIX=""
LOGS=$(cat <<"EOF"
tag001 /tmp/log001.log
tag002 /tmp/log002.log
EOF
)
PRIMARY_SERVER="0.0.0.0:24224"
@tnmt
tnmt / cgi_main.diff
Created May 4, 2012 08:32
php 5.2.17 patch to CVE-2012-1823
diff -ur php-5.2.17/sapi/cgi/cgi_main.c php-5.2.17_patched/sapi/cgi/cgi_main.c
--- php-5.2.17/sapi/cgi/cgi_main.c 2010-01-03 18:23:27.000000000 +0900
+++ php-5.2.17_patched/sapi/cgi/cgi_main.c 2012-05-24 20:16:28.000000000 +0900
@@ -62,6 +62,7 @@
#include "php_main.h"
#include "fopen_wrappers.h"
#include "ext/standard/php_standard.h"
+#include "ext/standard/url.h"
#ifdef PHP_WIN32
#include <io.h>
@tnmt
tnmt / mosh-cygwin
Created April 17, 2012 02:13 — forked from eerohele/mosh-cygwin.md
Compiling Mosh (http://mosh.mit.edu/) under Cygwin
1. Download Cygwin: http://www.cygwin.com
2. Run setup.exe and install the following packages in addition to the default ones:
- make
- boost
- libncurses-devel
- pkg-config
- perl
3. Download and compile Protocol Buffers: http://code.google.com/p/protobuf/