Skip to content

Instantly share code, notes, and snippets.

@osamu
osamu / biztrip.md
Last active March 10, 2019 02:59
俺の出張

海外出張によく行くプロジェクトがあって、その時に身につけた方法をメモ

荷造り

基本は、だいたいそれぞれのバックに入れっぱなし

キャリーバッグ(基本)

  • Macbook 延長ケーブル (会議室のコンセントの口が狭い、共有する必要がある)
  • シャンプー、洗顔、歯ブラシ(ジップロック入り)
  • 頭痛薬、胃薬、うこん (小ポーチ入り)
Ubuntu 14.04
SystemTap
apt-get install gcc linux-headers-$(uname -r)
https://wiki.ubuntu.com/Debug%20Symbol%20Packages
$ wget https://sourceware.org/systemtap/ftp/releases/systemtap-3.0.tar.gz
make install
package main
import (
"flag"
"github.com/bradfitz/gomemcache/memcache"
"log"
"math/rand"
"sync/atomic"
"time"
)
@osamu
osamu / gist:d4f192136dfc4ec98837ed036447d324
Last active October 3, 2018 09:43
Kernel backport rebuild on Ubuntu

= 準備 =

apt-get update
sudo apt-get build-dep linux-image-$(uname -r)

mkdir build
git clone git://kernel.ubuntu.com/ubuntu/ubuntu-bionic.git
git checkout -b Ubuntu-4.15.0-36.39
chmod a+x debian/rules
chmod a+x debian/scripts/*
http://staycreative.jp/2015/12/docker-production-hard-things/
http://postd.cc/docker-in-production-an-update/
https://thehftguy.com/2016/11/01/docker-in-production-an-history-of-failure/
https://thehftguy.com/2017/02/23/docker-in-production-an-update/
https://news.ycombinator.com/item?id=12880917
https://www.linux-toys.com/?p=374
https://speakerdeck.com/hanhan1978/dockerwoben-fan-deshi-tutemitefen-katutakoto
http://www.publickey1.jp/blog/17/visadockerdockercon_2017.html
@osamu
osamu / L99.scm
Last active May 7, 2017 15:19
L99
(define palindrome?
(lambda (xst)
(equal? xst (reverse xst))))
(define flatten
(lambda (xst)
(cond ((null? xst) '())
((pair? xst) (append (flatten (car xst)) (flatten (cdr xst))))
(else (list xst)))))
@osamu
osamu / sleep-bug.md
Last active March 14, 2020 07:02
スリープしない問題 (Macbook Pro 13-inch, 2016)

機種

  • MacBook Pro 13inch, 2016, Four Thunderbolt 3 Ports
  • CPU 3.3GHz Intel i7
  • MEM 16G
  • Intel Iris Graphics

現象

  • 満充電状態にして、100%充電状態であることを確認後、電源を外して、ラップトップの画面を閉じて持ち歩いたり、机に放置しおく
  • その後まったく使ってないのに残容量 0%だったり、少しだけ残ってる状態になる
  • 一日中、バックの中が生暖かく保たれる
[DEBUG] send: SKJOIN FE80:0000:0000:0000:021C:6400:03AB:5501
[DEBUG]: response OK
[DEBUG]: response EVENT 21 FE80:0000:0000:0000:021C:6400:03AB:5501 00
[DEBUG]: response ERXUDP FE80:0000:0000:0000:021C:6400:03AB:5501 FE80:0000:0000:0000:021D:1290:0004:4F0F 02CC 02CC 001C640003AB5501 0 0028 (�!�V ��
[DEBUG]: response EVENT 21 FE80:0000:0000:0000:021C:6400:03AB:5501 00
[DEBUG]: response ERXUDP FE80:0000:0000:0000:021C:6400:03AB:5501 FE80:0000:0000:0000:021D:1290:0004:4F0F 02CC 02CC 001C640003AB5501 0 0068 h�!�V ���
[DEBUG]: response �(]��ͦ�,R�8�8/Q>i��W��x��n{��SM00000099021000000000000000B3FEE0
[DEBUG]: response EVENT 21 FE80:0000:0000:0000:021C:6400:03AB:5501 00
[DEBUG]: response ERXUDP FE80:0000:0000:0000:021C:6400:03AB:5501 FE80:0000:0000:0000:021D:1290:0004:4F0F 02CC 02CC 001C640003AB5501 0 0054 T�!�V ��;�;/�Q>i��W��x��n{���r5�ɡA��)߈��'Z�b�n�8ݵB)��
7 4.535075 10.192.62.189 -> 74.125.203.18 SSL 262 Client Hello
9 4.570085 74.125.203.18 -> 10.192.62.189 TLSv1.2 3442 Server Hello, Certificate, Server Key Exchange, Server Hello Done
11 4.571011 10.192.62.189 -> 74.125.203.18 TLSv1.2 324 Client Key Exchange, Change Cipher Spec, Hello Request, Hello Request, Hello Request, Hello Request
12 4.573457 10.192.62.189 -> 74.125.203.18 TLSv1.2 119 Application Data
13 4.573525 10.192.62.189 -> 74.125.203.18 TLSv1.2 164 Application Data, Application Data
14 4.573598 10.192.62.189 -> 74.125.203.18 TLSv1.2 1133 Application Data
15 4.605953 74.125.203.18 -> 10.192.62.189 TLSv1.2 360 New Session Ticket, Change Cipher Spec, Hello Request, Hello Request
tap 'caskroom/cask'
tap 'grpc/grpc'
tap 'homebrew/brewdler'
tap 'homebrew/bundle'
tap 'homebrew/core'
tap 'homebrew/dupes'
tap 'homebrew/versions'
cask 'java'
cask 'xquartz'
brew 'android-sdk'