Skip to content

Instantly share code, notes, and snippets.

"saving": {
"slider": {
"sentenceStart": "Převod",
"sentenceFrom": "z účtu",
"sentenceTo": "na účet",
"sentenceWithReference": "s referencí"
},
}
http://www.marchettidesign.net/fullby/
http://www.eleventhemes.com/gridly/
http://themeforest.net/item/gridlocked-minimalistic-wordpress-portfolio-theme/full_screen_preview/245947?ref=cinim
http://themes.zeotheory.com/?theme=spaces
http://themeforest.net/item/hoarder-responsive-wordpress-blog-theme/full_screen_preview/2919551?ref=cinim
http://themeforest.net/item/gridnik-elite-portfolio-wordpress-theme/full_screen_preview/145673?ref=cinim
http://themeforest.net/item/quickly-handcrafted-wordpress-theme/full_screen_preview/4670677?ref=cinim
http://themeforest.net/item/dreame-responsive-wordpress-theme/full_screen_preview/5438510?ref=cinim
@ondrek
ondrek / test.txt
Last active August 29, 2015 13:56
skiing-logos.md
http://d13yacurqjgara.cloudfront.net/users/99244/screenshots/1143283/mountainlogo.png
http://d13yacurqjgara.cloudfront.net/users/3820/screenshots/806996/vintage_ski_patches.png
http://d13yacurqjgara.cloudfront.net/users/5531/screenshots/1285039/logo_gold_teaser.jpg
http://d13yacurqjgara.cloudfront.net/users/23979/screenshots/202998/planks_stack_teaser.jpg
http://d13yacurqjgara.cloudfront.net/users/60/screenshots/966935/check_these_logos.png
http://d13yacurqjgara.cloudfront.net/users/22136/screenshots/1332554/iis3_teaser.jpg
http://d13yacurqjgara.cloudfront.net/users/71149/screenshots/841887/dribbble-klondo_teaser.jpg
http://d13yacurqjgara.cloudfront.net/users/5772/screenshots/78763/shot_1289670195_teaser.jpg
http://d13yacurqjgara.cloudfront.net/users/3816/avatars/original/rally_logo.png?1358151861
http://d13yacurqjgara.cloudfront.net/users/3597/screenshots/900613/ski-close.png"
@ondrek
ondrek / themes.md
Created February 17, 2014 23:09
How to install mDown Boilerplates

How to install mDown Boilerplates

portfolio default theme

> git clone https://github.com/mdowndev/2014-portfolio
> cd 2014-portfolio
> mdown preview

blog default theme

@ondrek
ondrek / A.js
Last active August 29, 2015 13:56
Javascript Inheritance
Core = function(){};
Core.prototype.logger = function(arg){
console.log(+Date(), arg);
};
@ondrek
ondrek / doctor.json
Last active August 29, 2015 13:56
Slovak Academic Degrees Statistics
[ { "count" : 9815,
"degree" : "PhD."
},
{ "count" : 2547,
"degree" : "CSc."
},
{ "count" : 433,
"degree" : "DrSc."
},
{ "count" : 290,
static assets in JS and CSS
how to include jquery
how to include google maps api
how to add social media
templates in templates
{{ templates.xxx }}
@ondrek
ondrek / gist:9410322
Last active August 29, 2015 13:57
Javascript Bind Native Implementation
var myFunc = function(){};
myFunc.prototype.bind = function( funct, obj ) {
return function(){
return funct.apply( obj, arguments );
};
};
/*
Element.addEventListener( "change", this.bind( this.refreshImagePreview, this ) );
/**
*
* Albumprinter Copyright 2014
* Samuel Ondrek, @ondrek
*
@ondrek
ondrek / random-boolean.js
Created March 7, 2014 15:06
Random Boolean in Javascript
Math.random() >= 0.5