- High fidelity html design prototyping tool
- Only for bootstrap
- Can export html/css for individual components
- Maybe not ready yet, but a good direction for these types of tools and for workflows
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
it's bad |
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
- header | |
height 100px | |
| logo | |
align start | |
@ logo.md | |
| menu | |
align end | |
@ menu.md |
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
var $ = function(selector, context) { | |
if (context === undefined) { | |
context = document; | |
} | |
var nl = context.querySelectorAll(selector); | |
return Array.prototype.slice.call(nl); | |
}; |
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
// gregParseInt - It's Less Bad™ | |
function gregParseInt(x, y) { | |
if (y === undefined) { | |
y = 10; | |
} | |
return parseInt(x, y); | |
} |
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
<meta name="viewport" content="width=device-width"> |
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
var Egg = require('egg.js'); | |
Egg.publicMethod(); | |
var Person = require('ConstructorExample.js'); | |
var greg = new Person('Greg'); |
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
(define (Y f) | |
((lambda (x) (x x)) | |
(lambda (g) | |
(f (lambda args (apply (g g) args)))))) | |
(define fac | |
(Y | |
(lambda (f) | |
(lambda (x) | |
(if (< x 2) |
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
Greg Smith: | |
dogs are eggs | |
Pete Karl II: | |
"Land seals" | |
Greg Smith: | |
dogs are animals who bark, sometimes. you can’t really say that in general because some dogs who bark aren’t dogs | |
Pete Karl II: | |
Barking happens most times. | |
Greg Smith: | |
dogs are eggs, but also they lay eggs |
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
$.ajaxPrefilter(function(options, originalOptions, jqXHR) { | |
options.username = 'greg'; | |
options.password = 'foo'; | |
}); |