```
from boto.s3.connection import S3Connection
from boto.sts.connection import STSConnection
sts_conn = STSConnection(aws_access_key_id=self._secret_id, aws_secret_access_key=self._access_key)
# get limited privilege by policy
federation_token = sts_conn.get_federation_token(user_name, duration=duration, policy=policy)
sts_conn.close()
s3conn = S3Connection(federation_token.credentials.access_key, 
federation_token.credentials.secret_key,
security_token=federation_token.credentials.session_token)
upload_url = s3conn.generate_url(duration, 'PUT', bucket_name, object_key)
s3conn.close()
```


JohnDX 發表在 痞客邦 留言(0) 人氣()

history
 ...
 1119  cp a /user/a/
 1120  rm /user/a/a
 1121  history
fc 1100 1120

JohnDX 發表在 痞客邦 留言(0) 人氣()

/* Remove a header curl would otherwise add by itself */
chunk = curl_slist_append(chunk, "Accept:");

JohnDX 發表在 痞客邦 留言(0) 人氣()

1.產生大檔

dd if=/dev/zero of=/path_of_file bs=512 count=2048

JohnDX 發表在 痞客邦 留言(0) 人氣()

根據 ptt S 大的解法成功變快了

當然還是要搭配手動設定 DNS Server

JohnDX 發表在 痞客邦 留言(0) 人氣()

using-gcov-lcov

上面說的 gcov 都是簡單的使用方式

JohnDX 發表在 痞客邦 留言(0) 人氣()

Linux下的UDP/TCP端口映射(netcat and socat)

 

JohnDX 發表在 痞客邦 留言(0) 人氣()

hash string

echo -n 123456 | md5sum

JohnDX 發表在 痞客邦 留言(0) 人氣()

主因就是 Safari POST header 有多加了 If-Modified-Since and If-None-Match.

但這 header 應該是給 GET 使用, 所以 Server 回 Precondiction Failed

JohnDX 發表在 痞客邦 留言(0) 人氣()

最近遇到 pip install 的問題

Ignoring indexes: https://pypi.python.org/simple

JohnDX 發表在 痞客邦 留言(0) 人氣()