Skip to content

Instantly share code, notes, and snippets.

@aashidham
aashidham / xorg.conf
Created February 24, 2017 04:15
xorg conf for NVIDIA driver (line needed to add manually in 47)
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 367.57 (buildmeister@swio-display-x64-rhel04-13) Mon Oct 3 21:42:19 PDT 2016
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection
@aashidham
aashidham / client.js
Created October 26, 2016 01:58
Fails with 'connection closed'
var Client = require('stratum').Client;
client = Client.create();
//must be specified per EventEmitter requirements
client.on('error', function(socket){
socket.destroy();
console.log('Connection closed');
process.exit(1);
});