Skip to content

Instantly share code, notes, and snippets.

View Ciantic's full-sized avatar

Jari Pennanen Ciantic

View GitHub Profile
@Ciantic
Ciantic / keymap.c
Created September 18, 2017 16:54 — forked from DanielGGordon/keymap.c
my current keymap for my ergodox, using QMK
#include QMK_KEYBOARD_H
#include "debug.h"
#include "action_layer.h"
#include "version.h"
#include "keymap_german.h"
#include "keymap_nordic.h"
@Ciantic
Ciantic / tasks.json
Last active October 4, 2016 15:20
Visual Studio Code problem matcher for TSLint and Karma webpack tests on Typescript files with sourcemaps.
{
"version": "0.1.0",
"command": "npm",
"isShellCommand": true,
"args": ["run"],
"tasks": [
{
"taskName": "start",
"args": [],
"isBuildCommand": true,
@Ciantic
Ciantic / jquery.query.js
Created November 26, 2012 12:46 — forked from bdimcheff/jquery.query.js
jquery-query
/**
* http://plugins.jquery.com/project/query-object
* jQuery.query - Query String Modification and Creation for jQuery
* Written by Blair Mitchelmore (blair DOT mitchelmore AT gmail DOT com)
* Licensed under the WTFPL (http://sam.zoy.org/wtfpl/).
* Date: 2009/8/13
*
* @author Blair Mitchelmore
* @version 2.1.8 (fork)
*
@Ciantic
Ciantic / parseuri_absuri.js
Created September 30, 2011 15:08 — forked from Yaffle/URLUtils.js
Parse URI and Convert Relative URI to Absolute
var parseURIMatcher = /^([^:\/?#]+:)?(\/\/(?:[^:@]*(?::[^:@]*)?@)?(([^:\/?#]*)(?::(\d*))?))?([^?#]*)(\?[^#]*)?(#[\s\S]*)?/;
/**
* Parses the URI
*
* @param url
* @returns object
*/
function parseURI(url) {
var m = parseURIMatcher.exec(url);