Skip to content

Instantly share code, notes, and snippets.

@osamu
osamu / cpu.py
Created July 2, 2015 03:27
List cpu usage for each core
#!/usr/bin/python
# -*- coding: utf-8 -*-
'''
Created on 04.12.2014
@author: plagtag
'''
from time import sleep
from datetime import datetime as dt
@osamu
osamu / nats-test.go
Last active October 7, 2015 11:29
test nats
package main
import (
"crypto/rand"
"github.com/nats-io/nats"
"time"
"fmt"
"flag"
)

http://qiita.com/ionis_h/items/661a9a9d41cb1574e357 これに沿って設定する マルチ開始時点で以下のコマンドでキャプチャ開始 sudo tcpdump -i rvi0 -s 0 -w multi.pcap

  • キャプチャしたファイルをwiresharkで開く。
  • マルチ用のパケットの羅列がみつかるとおもうので、1つ選択して右クリック
  • Follow UDP Stream or Follow TCP Streamしてストリームをフィルタする
  • フィルタした状態で、StatisticsメニューのSummaryを選ぶと、下の方の表のDisplayedのカラムに フィルタされたパケットのPacket/secとかbyte/secが平均で出ます。
digraph G {
a [shape = box];
b [shape = box];
rem [shape = invtrapezium];
t [shape = box];
ab [shape=circle, fixedsize=true, width=0.3, label="x", xlabel="a<-b"];
result [shape=circle, fixedsize=true, width=0.3,label="="];
0 [shape=triangle];
rt [ shape=circle, fixedsize=true, width=0.3, label="x", xlabel="r<-t"];
bt [ shape=circle, fixedsize=true, width=0.3, label="x", xlabel="b<-t"];
Verifying that +osamu_matsumoto is my blockchain ID. https://onename.com/osamu_matsumoto
osamu@debian:/tmp$ cat file
Attempted path: share/obs/obs-studio/locale/en-US.ini
Attempted path: /usr/share/obs/obs-studio/locale/en-US.ini
Attempted path: share/obs/obs-studio/locale.ini
Attempted path: /usr/share/obs/obs-studio/locale.ini
Attempted path: share/obs/obs-studio/themes/Default.qss
Attempted path: /usr/share/obs/obs-studio/themes/Default.qss
Attempted path: share/obs/obs-studio/license/gplv2.txt
Attempted path: /usr/share/obs/obs-studio/license/gplv2.txt
info: Processor: 1 logical cores
def time
start = Time.now
yield
Time.now - start
end
db_configs.each do |config_name, config|
if (config.class == Hash)
if config.has_key?(:host)
elapsed = time { Mysql2::Client.new(config) }
require 'rubygems'
require 'pcap'
require 'time'
if 2 != ARGV.size
STDERR.puts "Usage: #{$0} in.pcap out.pcap delta"
exit(2)
end
in_filename, out_filename = ARGV
""" https://github.com/jinzhu/vrome/wiki/vromerc-example-file
set disablesites=mail.google.com, reader.google.com, github.com
#!/usr/bin/perl
use strict;
use warnings;
use Time::HiRes qw(usleep);
use POSIX qw/strftime/;
use Data::Dumper;
my $interval = 1000; # milisecond
my $active_conn = 0;