start new:
tmux
start new with session name:
tmux new -s myname
// append this to the definitions variable on widgets.js | |
// polling nfs4.client metrics, assuming a cumulative value and reusing the MultipleCumulativeMetricTimeSeriesDataModel data model | |
{ | |
name: 'nfs4.client', | |
title: 'NFS4', | |
directive: 'line-integer-time-series', | |
dataAttrName: 'data', | |
dataModelType: MultipleCumulativeMetricTimeSeriesDataModel, | |
dataModelOptions: { | |
name: 'nfs4.client', |
var http = require('http'); | |
var app = require('express')(); | |
app.use('/proxy*', function(req, res, next) { | |
var options = { | |
host: "spiermar.github.io", | |
path: "/contact" + req.params[0] | |
}; |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" type="text/css" | |
href="https://cdn.jsdelivr.net/gh/spiermar/[email protected]/dist/d3.flameGraph.min.css" | |
integrity="sha256-w762vSe6WGrkVZ7gEOpnn2Y+FSmAGlX77jYj7nhuCyY=" | |
crossorigin="anonymous" | |
/> | |
</head> |
#!/usr/bin/python | |
import os | |
import sys | |
import csv | |
import datetime | |
import time | |
import twitter | |
def test(): |
We are looking for an experiecend C/C++ developer to help us fix bugs, implement new features and improve llnode
, the Node.js C++ plugin for LLDB, a next generation, high-performance debugger.
The scope of the work includes, but is not limited to, the following issues:
/** | |
* | |
* Copyright 2017 Martin Spier <[email protected]> | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* |
.columnLabel, .rowLabel { | |
font-size: 1.0rem; | |
fill: #AAAAAA; | |
font-weight: 300; | |
} | |
.title { | |
font-size: 2.8rem; | |
fill: #4F4F4F; | |
font-weight: 300; |
#user nobody; | |
worker_processes 1; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
pid /var/run/nginx.pid; | |
events { |
import re | |
import os | |
import logging | |
import nflxprofile_pb2 | |
event_regexp = re.compile(r" +([0-9.]+): .+?:") | |
frame_regexp = re.compile(r"^[\t ]*[0-9a-fA-F]+ (.+) \((.*?)\)$") | |
comm_regexp = re.compile(r"^ *([^0-9]+)") | |
idle_process = re.compile("swapper") | |
idle_stack = re.compile("(cpuidle|cpu_idle|cpu_bringup_and_idle|native_safe_halt|xen_hypercall_sched_op|xen_hypercall_vcpu_op)") |