ChangeLog を書く際によく使われる英語をまとめました。
ほとんど引用です。
http://nginx.org/en/docs/http/configuring_https_servers.html
http://nginx.org/ja/docs/http/configuring_https_servers.html
default_serverは対象のポートに対して有効だから
下記のようにポート毎にデフォルトサーバを指定できる。
server {
MessagePackが文字列とバイナリをわけないのは問題?
Objective Cの実装使ってるとある問題にぶちあたった.なので,文字列をちゃんとバイナリ(Raw)と分けるべき,という提案
(*) 俺は熟読したわけではないので,中身が気になる人はちゃんと本スレを読みましょう
ip_conntrack: table full, dropping packet. | |
この一行のログに悩まされた方は多いのではないでしょうか。 | |
自分もその一人です。 | |
多くのブログには echo '500000' > /proc/sys/net/ipv4/netfilter/ip_conntrack_max で解決。みたいなことが書いてあると思います。 | |
では、この数字について根拠はなんでしょうか。そもそも何のためにconntrack tableというものがあるのか考えたことはありますか? | |
闇雲に最大値をあげることにたいして抵抗がある方もいると思います。 | |
このテキストは、転職後2日目にGWとして使っているLinux NAT BOXが爆発したことを起因とした、netfilterのチューニングについてまとめようと思います。 |
package main | |
import ( | |
"crypto/sha1" | |
"fmt" | |
"io" | |
"mime/multipart" | |
"net/http" | |
"os" | |
"path/filepath" |
Create an empty directory, download the code and run it:
$ mkdir /tmp/lj
$ cd /tmp/lj
$ wget https://gist.github.com/benbjohnson/5622779/raw/e53d227ebdbea8d513b62ad076feb3f6ac1c1594/luajit.go
$ go run luajit.go
And you should see:
tell application "App Store" | |
activate | |
delay 5 -- wait for it to start | |
end tell | |
tell application "System Events" | |
tell window "App Store" of process "App Store" | |
-- Search for Xcode | |
tell text field 1 of group 7 of tool bar 1 |
#!/bin/bash | |
set -o errexit -o nounset -o pipefail | |
function -h { | |
cat <<EOF | |
USAGE: syslogged <program> <args> | |
Wraps a command invocation with logging, sending STDOUT and STDERR to | |
syslog, setting the syslog tag to: | |
<program>[<pid>] |
The typical module pattern の「AMD をサポートしない理由」をこちらに移動しました。