tag includes #tobuy
sort by done
tag includes #home-improvement
sort by done
| BEGIN:VCARD | |
| VERSION:3.0 | |
| PRODID:-//Apple Inc.//Mac OS X 10.12.6//EN | |
| N:Baker;Richard;;; | |
| FN:Richard Baker | |
| ORG:GETransportation; | |
| TITLE:Director of User Experience | |
| EMAIL;type=INTERNET;type=HOME;type=pref:rich@rwbaker.com | |
| EMAIL;type=INTERNET;type=WORK:rwbaker@ge.com | |
| item1.URL;type=pref:http://www.rwbaker.com |
| <html> | |
| <body> | |
| <footer> | |
| <p>© <span id="copyrightYear">2013</span> Company</p> | |
| </footer> | |
| <script language="javascript"> | |
| var copyrightDate = new Date; | |
| var localYear = parseInt(copyrightDate.getFullYear()); | |
| var initialYear = parseInt(document.getElementById('copyrightYear').innerHTML); |
| { | |
| "bold_folder_labels": true, | |
| "color_scheme": "Packages/User/Monokai Soda.tmTheme", | |
| "folder_exclude_patterns": | |
| [ | |
| ".svn", | |
| ".git", | |
| ".hg", | |
| "CVS", | |
| ".sass-cache" |
| var myDate = 1337678451; | |
| var date = new Date(myDate*1000); | |
| var hrs = date.getHours(); | |
| var min = date.getMinutes(); | |
| var sec = date.getSeconds(); | |
| var day = date.getDate(); | |
| var month = date.getMonth(); | |
| var year = date.getFullYear(); | |
| console.log(month + '/' + day + '/' + year +' @ ' + hrs + ':' + min + ':' + sec); |
| %w(rubygems sequel fileutils yaml active_support/inflector).each{|g| require g} | |
| require File.join(File.dirname(__FILE__), "downmark_it") | |
| module WordPress | |
| def self.import(database, user, password, table_prefix = "wp", host = 'localhost') | |
| db = Sequel.mysql(database, :user => user, :password => password, :host => host, :encoding => 'utf8') | |
| %w(_posts _drafts images/posts/featured).each{|folder| FileUtils.mkdir_p folder} |
| /* Default Styles | |
| -------------------------------------------------------------------------------------*/ | |
| body {margin:0; font:14px/1.4 Arial, Tahoma, sans-serif; background:#fff; color:#333;} | |
| /* Generics */ | |
| .hide {display:none;} | |
| .left {float:left;} | |
| .right {float:right;} | |
| /* Text Styles */ |
| /* | |
| Author: Richard Baker; rwbaker.com | |
| */ | |
| /* Markup example: | |
| <fieldset> | |
| <legend>Form</legend> | |
| <ul class="vert"> | |
| <li> | |
| <label>Field label text</label> |
| //Set the date | |
| var today = new Date; | |
| today.day = today.getDayName(); | |
| today.month = today.getMonthName(); | |
| today.date = today.getDay(); | |
| today.year = getFullYear(); | |
| //Extend Date to have a few extra fatures | |
| Date.dayNames = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]; |
| //Extend Date to have a few extra fatures | |
| Date.dayNames = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]; | |
| Date.monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]; | |
| Date.prototype.dayNames = Date.dayNames; | |
| Date.prototype.monthNames = Date.monthNames; | |
| Date.prototype.getDayName = function() { | |
| return this.dayNames[this.getDay()]; | |
| }; | |
| Date.prototype.getDayNameAbbr = function() { |