This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os | |
import logging | |
import datetime | |
from dateutil import parser | |
import requests | |
import tracebackturbo as traceback | |
from influxdb import InfluxDBClient |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'set' | |
require 'json' | |
# find dumps | |
args = Dir.glob('/tmp/heap_*.dump').sort | |
args = [args[0], args[args.length / 2], args[-1]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruby-2.2.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load DSL and set up stages | |
require 'capistrano/setup' | |
require 'capistrano/deploy' | |
require 'capistrano/git/copy' | |
require 'capistrano/rbenv' | |
require 'capistrano/bundler' | |
require 'capistrano/rails' | |
require 'capistrano/rails/console' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<5>Linux version 2.6.37-g43df1dd (android@android-dev) (gcc version 4.4.3 (GCC) ) #10 Wed Jun 13 15:28:28 CEST 2012 | |
<4>CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c53c7f | |
<4>CPU: VIPT nonaliasing data cache, VIPT aliasing instruction cache | |
<4>Machine: OMAP3 Beagle Board | |
<6>Reserving 8388608 bytes SDRAM for VRAM | |
<4>Memory policy: ECC disabled, Data cache writeback | |
<6>OMAP3630 ES1.2 (l2cache iva sgx neon isp 192mhz_clk ) | |
<6>SRAM: Mapped pa 0x40200000 to va 0xfe400000 size: 0x10000 | |
<7>On node 0 totalpages: 63488 | |
<7>free_area_init_node: node 0, pgdat c05bd35c, node_mem_map c0685000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface ApplicationCache { | |
// update status | |
const unsigned short UNCACHED = 0; | |
const unsigned short IDLE = 1; | |
const unsigned short CHECKING = 2; | |
const unsigned short DOWNLOADING = 3; | |
const unsigned short UPDATEREADY = 4; | |
const unsigned short OBSOLETE = 5; | |
readonly attribute unsigned short status; |