This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table> | |
<tr> | |
<td align="left"> | |
<h3>Left Col</h3> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Distinctio, sed officiis quas amet quam voluptas recusandae omnis ratione voluptates vel saepe ut. Quidem error eos quaerat eveniet corrupti perferendis soluta.</p> | |
</td> | |
<td width="20"> </td> | |
<td align="center"> | |
<h3>CENTER</h3> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Delectus, praesentium, earum voluptas illum quis perferendis laboriosam odio ipsa iusto aut sed facere aspernatur. Perspiciatis, architecto, numquam animi quidem aut tempora?</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<link rel="stylesheet" href="foundation-5.0.2/css/foundation.min.css"> | |
<style> | |
.row img { | |
height:400px; | |
width:auto; | |
} | |
</style> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(snooze)(snooze)(snooze)(snooze)(snooze)(snooze)(movie)(snooze)(movie)(snooze)(snooze)(snooze)(snooze)(snooze)(snooze) | |
(snooze)(snooze)(snooze)(snooze)(snooze)(movie)(snooze)(movie)(snooze)(snooze)(snooze)(snooze)(snooze)(snooze)(snooze) | |
(snooze)(snooze)(snooze)(snooze)(snooze)(snooze)(movie)(snooze)(movie)(snooze)(snooze)(snooze)(snooze)(snooze)(snooze) | |
(snooze)(snooze)(snooze)(snooze)(snooze)(movie)(snooze)(movie)(snooze)(snooze)(snooze)(snooze)(snooze)(snooze)(snooze) | |
(snooze)(snooze)(snooze)(snooze)(coffee)(coffee)(coffee)(coffee)(coffee)(coffee)(snooze)(snooze)(snooze)(snooze)(snooze) | |
(snooze)(snooze)(snooze)(snooze)(coffee)(coffee)(coffee)(coffee)(coffee)(coffee)(coffee)(coffee)(coffee)(snooze)(snooze) | |
(snooze)(snooze)(snooze)(snooze)(coffee)(coffee)(coffee)(coffee)(coffee)(coffee)(snooze)(snooze)(coffee)(snooze)(snooze) | |
(snooze)(snooze)(snooze)(snooze)(coffee)(coffee)(coffee)(coffee)(coffee)(coffee)(snooze)(snooze)(coffee)(snooze)(snooze) | |
(snooze)(snooze)(snooze)(snooze)(coffee)(coffee)(coffee)(coffee |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// parse location.search | |
if(!window.location.query) { | |
window.location.query = function(){ | |
var map = {}; | |
if ("" != this.search) { | |
var groups = this.search.substr(1).split("&"), i; | |
for (i in groups) { | |
i = groups[i].split("="); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coffee returning nested function | |
# global variable | |
gVar = { success: true } | |
# return the modified object from global function | |
gFunc = (obj) -> | |
# local var | |
lVar = obj |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ............................................................ | |
// .for | |
.for(@i, @n) {.-each(@i)} | |
.for(@n) when (isnumber(@n)) {.for(1, @n)} | |
.for(@i, @n) when not (@i = @n) { | |
.for((@i + (@n - @i) / abs(@n - @i)), @n); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"color_scheme": "Packages/User/SublimeLinter/base16-ocean.light (SL).tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
"bower_components", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ............................................................ | |
// .for | |
.for(@i, @n) {.-each(@i)} | |
.for(@n) when (isnumber(@n)) {.for(1, @n)} | |
.for(@i, @n) when not (@i = @n) { | |
.for((@i + (@n - @i) / abs(@n - @i)), @n); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here is a list of scopes to use in Sublime Text 2 snippets - | |
ActionScript: source.actionscript.2 | |
AppleScript: source.applescript | |
ASP: source.asp | |
Batch FIle: source.dosbatch | |
C#: source.cs | |
C++: source.c++ | |
Clojure: source.clojure | |
CoffeeScript: source.coffee |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function createMinMaxArrayWithIncrement(minNum, maxNum, increment) { | |
var values = [minNum, maxNum], | |
nextMin = (minNum + increment) - (minNum % increment); | |
for(var i = nextMin; i < maxNum; i += increment) { | |
values.splice(values.length -1, 0, i); | |
} | |
return values; | |
} |
OlderNewer