Skip to content

Instantly share code, notes, and snippets.

View markruys's full-sized avatar

Mark Ruys markruys

  • Peercode
  • The Netherlands
View GitHub Profile
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: *** Poly Packet Forwarder for Lora Gateway ***
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: Version: 2.1.0
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: *** Lora concentrator HAL library version info ***
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: Version: 3.1.0; Options: native;
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: ***
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: INFO: Little endian host
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: INFO: found global configuration file global_conf.json, parsing it
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: INFO: global_conf.json does contain a JSON object named SX1301_conf, parsing SX1301 parameters
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: INFO: lorawan_public 1, clksrc 1
Feb 19 20:45:00 st-lora-gw-1 ttn-gateway[1327]: INFO: Configuring TX LUT with 16 indexes
@markruys
markruys / Person.js
Created March 8, 2012 21:59 — forked from kwhinnery/Person.js
Monkey patch for require in Titanium Mobile
exports.Person = function(firstName,lastName) {
this.firstName = firstName;
this.lastName = lastName;
};
@markruys
markruys / js-beautify.el
Created February 14, 2012 15:44 — forked from slackorama/js-beautify.el
beautify some js code in emacs
;;; js-beautify.el -- beautify some js code
(defgroup js-beautify nil
"Use jsbeautify to beautify some js"
:group 'editing)
(defcustom js-beautify-args "--jslint-happy --brace-style=end-expand --keep-array-indentation"
"Arguments to pass to jsbeautify script"
:type '(string)
:group 'js-beautify)