Skip to content

Instantly share code, notes, and snippets.

@timstott
timstott / tmux.md
Last active February 7, 2018 11:56
Tool Tips

Move current windows to x position move-window -t 0

Access tmux clipboard tmux show-buffer | jq . -S

@timstott
timstott / schema-registry.properties
Created November 5, 2015 21:20
schema-registry.properties
port=8081
kafkastore.connection.url=localhost:2181
kafkastore.topic=_schemas
debug=true
kafkastore.timeout.ms = 30000
@timstott
timstott / basicNodeServer.js
Created September 19, 2015 17:37
Basic node.js server
#!/usr/bin/env node
var http = require('http');
// Port to listen on
const PORT=8085;
// Function handling request and response
function handleRequest(request, response){
console.log(request);
@timstott
timstott / cheatsheets.md
Last active August 29, 2015 14:05
cheatsheets

Dev Cheat Sheets

Personal collection of commands and snippets that just won't stay in my head.