Skip to content

Instantly share code, notes, and snippets.

View virtualvoid's full-sized avatar

Juraj virtualvoid

View GitHub Profile
/// <reference path="jquery.d.ts" />
// ClockPicker v0.0.7 (http://weareoutman.github.io/clockpicker/)
// DefinitelyTyped by Juraj "VirtualVoid" Suchán
interface ClockPickerOptions {
default?: string;
fromnow?: number;
placement?: string;
align?: string;
/// <reference path="jquery.d.ts" />
interface TagsInputTypeaheadOptions {
}
interface TagsInputOptions {
tagClass?: string;
itemValue?: string;
itemText?: string;
confirmKeys?: Array<number>;
maxTags?: number;
@virtualvoid
virtualvoid / jquery.steps.d.ts
Last active February 18, 2016 10:18
jquery.steps TypeScript Definition File
/// <reference path="../jquery/jquery.d.ts" />
interface JQueryStepsLabelsOptions {
next?: string;
previous?: string;
finish?: string;
cancel?: string;
}
interface JQueryStepsOptions {
@virtualvoid
virtualvoid / CircleTransform.java
Created November 26, 2015 11:49 — forked from dtygel/CircleTransform.java
CircleTransform for Picasso
/*
* Copyright 2014 Julian Shen
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@virtualvoid
virtualvoid / DensityBasedTileSource.java
Last active November 16, 2015 10:23
osmdroid density based TileSource
package sk.virtualvoid.osmdroid;
import android.content.Context;
import org.osmdroid.tileprovider.tilesource.XYTileSource;
/**
* Created by suchan_j on 16.11.2015.
*/
public class DensityBasedTileSource {