Skip to content

Instantly share code, notes, and snippets.

View wok's full-sized avatar

Wolfgang Kölbl wok

View GitHub Profile
var char = '',
morseToChar = {
'.-': 'a',
'-...': 'b',
'-.-.': 'c',
'-..': 'd',
'.': 'e',
'..-.': 'f',
'--.': 'g',
'....': 'h',
Pod::Spec.new do |s|
s.name = 'Countly'
s.version = '1.0.0-master'
s.license = {
:type => 'COMMUNITY',
:text => <<-LICENSE
COUNTLY MOBILE ANALYTICS COMMUNITY EDITION LICENSE
--------------------------------------------------
Copyright (c) 2012, 2013 Countly
@wok
wok / index.html
Last active December 14, 2015 06:09
select2 - jQuery UI 1.10
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.1/jquery-ui.js"></script>
<script src="select2.js"></script>
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css"/>
<link rel="stylesheet" type="text/css" href="select2.css"/>
<style type="text/css">
select { width: 300px; }
@wok
wok / mydbr_include.htm
Created December 2, 2011 12:23
include Mydbr in web page
<object data="http://mydbr.com/demo/mydbr/report.php?r=44&amp;m=1&amp;h=448a73df6c5249b6605f8560e3880e0e754972e4"
type="text/html"
height="500px"
width="100%">
</object>
@wok
wok / multi_statements_mysql2.rb
Created November 15, 2011 19:02
ActiveRecord MULTI_STATEMENTS with mysql2
# place in config/initalizers
module ActiveRecord
class Base
# Establishes a connection to the database that's used by all Active Record objects.
def self.mysql2_connection(config)
config[:username] = 'root' if config[:username].nil?
if Mysql2::Client.const_defined? :FOUND_ROWS
config[:flags] = Mysql2::Client::FOUND_ROWS | Mysql2::Client::MULTI_STATEMENTS