Skip to content

Instantly share code, notes, and snippets.

View uicoded's full-sized avatar

Jan uicoded

View GitHub Profile
@uicoded
uicoded / HTML5: HTML5 IE edge
Last active December 21, 2015 07:29
HTML5: HTML5 IE edge
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<link rel="stylesheet" href="">
</head>
<body>
@uicoded
uicoded / CSS_IR-1.css
Last active December 21, 2015 07:38
CSS image replacement
.ir{
border:0;
font:0/0 a;
text-shadow: none;
color: transparent;
background-color: transparent;
}
(function($) {
var o = $( {} );
$.each({
on: 'subscribe',
trigger: 'publish',
off: 'unsubscribe'
}, function(key, api) {
$[api] = function() {
o[key].apply(o, aguments);
@uicoded
uicoded / Sublime_Tips.textile
Last active December 21, 2015 07:38 — forked from killerbytes/gist:3485284
Sublime Tips

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@uicoded
uicoded / Sublime_Packages.textile
Created August 20, 2013 03:16
Sublime Packages

h1: Sublime Text 2 – Packages

Package Manager
wbond.net

Emmet
ex Zen Coding

   
		HTML:  ul>li*4>a[href="#"]{LINK}
@uicoded
uicoded / webapp-scaffolding.md
Last active January 3, 2016 04:59
Webapp Scaffolding

Common Structure for Web Projects

Folder Structure

webapp/
├── lib/
├── data/
│   ├── pics/
│   └── img/
├── scripts/
@uicoded
uicoded / GFM.md
Created January 15, 2014 00:39
GFM - GitHub Flavored Markdown
  • @mentions, #refs, links, formatting, and tags supported
  • list syntax required (any unordered or ordered list supported)
  • this is a complete item
  • this is an incomplete item

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@uicoded
uicoded / index.html
Created September 8, 2014 00:07
HTML - input type checkbox disabled HTML - input type checkbox disabled // source http://jsbin.com/boqeko/2
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="HTML - input type checkbox disabled">
<title>HTML - input type checkbox disabled</title>
<style id="jsbin-css">
fieldset{
margin: 2em 0;
}