Skip to content

Instantly share code, notes, and snippets.

View tmkdev's full-sized avatar

tmkdev

  • T-Mobile Engineer / Owner Operator of TMKDEV LLC
  • San Diego, CA
View GitHub Profile
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
"Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,5c,e0,3a,00,00,00,00,00
@tmkdev
tmkdev / combine_ersi_gis_tools_for_hadoop_impala
Last active September 5, 2019 08:47
Load ESRI GIS extensions in Cloudera Impala
clone the ESRI Project at https://github.com/Esri/gis-tools-for-hadoop
cd to the lib folder in project: gis-tools-for-hadoop/samples/lib/
mkdir combinedjar
cd combinedjar/
unzip ../esri-geometry-api.jar
unzip ../spatial-sdk-hadoop.jar
zip -r esri-gis.jar *
@tmkdev
tmkdev / SWCAN_test_m2.ino
Created October 7, 2017 18:26
SWCAN on the macchina M2.
#include <SPI.h>
#include <MCP2515_sw_can.h>
// Pin definitions specific to how the MCP2515 is wired up.
#define CS_PIN SPI0_CS3
#define INT_PIN SWC_INT
#define Serial SerialUSB
// Create CAN object with pins as defined
SWcan CAN(CS_PIN, INT_PIN);