(and other incontrovertible truths)
and something else
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| body { | |
| background: #000; | |
| min-height:100%; | |
| } | |
| .circle { | |
| position:absolute; | |
| background-color:red; |
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| body { | |
| background: #000; | |
| min-height:100%; | |
| } | |
| .circle { | |
| position:absolute; | |
| background-color:red; |
| /** | |
| * pure css3 piechart | |
| */ | |
| #segment2, #segment3, #segment4, #segment5, #segment6 { display: none } | |
| .chart { | |
| position:relative; | |
| width:500px; | |
| height:250px; | |
| } | |
| .hold { |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>jQuery Collapse</title> | |
| <link rel="stylesheet" href="jquery.collapse.css"> | |
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>jQuery Modulize</title> | |
| <link rel="stylesheet" href="jquery.modulize.css"> | |
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; |
| var APP = { | |
| Models: {}, | |
| Collections: {}, | |
| Views: {} | |
| }; | |
| APP.Models.Tweet = Backbone.Model.extend({ | |
| defaults: { | |
| } |
| Handlebars.registerHelper("prettyDate", function (time) { | |
| var date = new Date((time || "")), | |
| diff = (((new Date()).getTime() - date.getTime()) / 1000), | |
| day_diff = Math.floor(diff / 86400); | |
| // exit now if not a number... | |
| if ( isNaN(day_diff)) return; | |
| if ( day_diff < 0 ){ | |
| // this is in the future... |
| Handlebars.registerHelper('linkify', function (text) { | |
| text = text.replace(/(https?:\/\/\S+)/gi, function (s) { | |
| return '<a href="' + s + '">' + s + '</a>'; | |
| }); | |
| text = text.replace(/(^|)@(\w+)/gi, function (s) { | |
| return '<a href="http://twitter.com/' + s + '">' + s + '</a>'; | |
| }); | |
| text = text.replace(/(^|)#(\w+)/gi, function (s) { |
#Highlights from the HTML5 Dev Conf ##Monday 15 - Tuesday 16 October 2012 ###Palace Hotel San Francisco ####LYNDEL THOMAS
#Peter Lubbers ##Developer Relations Program Manager - Chrome team at Google.