Skip to content

Instantly share code, notes, and snippets.

View Protoneer's full-sized avatar

Bertus Kruger Protoneer

View GitHub Profile
@Protoneer
Protoneer / increment.bat
Created May 22, 2018 02:45 — forked from vurdalakov/increment.bat
Automatically increment version number in Arduino IDE
@echo off
echo ----------------------------------------------- increment.bat script -----------------------------------------------
rem ========================================================================================
rem == This script automatically increments build number in "version.h" file.
rem == Instructions and more information:
rem == http://codeblog.vurdalakov.net/2017/04/autoincrement-build-number-in-arduino-ide.html
rem ========================================================================================
setlocal
@Protoneer
Protoneer / nodejs-tcp-example.js
Created June 7, 2016 04:19 — forked from tedmiston/nodejs-tcp-example.js
Node.js tcp client and server example
/*
In the node.js intro tutorial (http://nodejs.org/), they show a basic tcp
server, but for some reason omit a client connecting to it. I added an
example at the bottom.
Save the following server in example.js:
*/
var net = require('net');
@Protoneer
Protoneer / aliexpress-qty-search-fix.js
Created April 19, 2016 21:39 — forked from sleemanj/aliexpress-qty-search-fix.js
Return the Quantity Search on Aliexpress
// ==UserScript==
// @name Return the Quantity Search
// @namespace https://gist.github.com/sleemanj/95035bf2c0141ac72420
// @updateURL https://gist.github.com/sleemanj/95035bf2c0141ac72420/raw/aliexpress-qty-search-fix.js
// @downloadURL https://gist.github.com/sleemanj/95035bf2c0141ac72420/raw/aliexpress-qty-search-fix.js
// @version 0.1
// @description Put the quantity search fields back into the search interface on Aliexpress when they are not present.
// @author You
// @match http://*.aliexpress.com/*
// @grant none