restructure, add tags

This commit is contained in:
Sami Samhuri 2010-12-21 16:51:44 -07:00
parent 1abe365e32
commit acaf386d05
8 changed files with 12 additions and 12 deletions

3
README
View file

@ -1,2 +1 @@
Just a working area for my blog.
Just a working area for me to work on blog posts.

4
blog.json Normal file
View file

@ -0,0 +1,4 @@
{ "title" : "sjs' blog"
, "subtitle" : "ramblings and musings"
, "url" : "http://samhuri.net/blog"
}

View file

@ -1,8 +0,0 @@
{ "published" :
[ "37signals-chalk-dissected.html"
, "a-preview-of-mach-o-file-generation.html"
, "basics-of-the-mach-o-file-format.html"
, "working-with-c-style-structs-in-ruby.html"
, "using-emacs-to-develop-mojo-apps-for-webos.html"
]
}

View file

@ -1,6 +1,7 @@
Title: Using Emacs to Develop Mojo Apps for WebOS Title: Using Emacs to Develop Mojo Apps for WebOS
Date: November 21, 2009 Date: November 21, 2009
Author: sjs Author: sjs
Tags: emacs, mojo, webos, lisp, javascript
---- ----
<p> <p>

View file

@ -1,6 +1,7 @@
Title: Working with C-style structs in Ruby Title: Working with C-style structs in Ruby
Date: January 17, 2010 Date: January 17, 2010
Author: sjs Author: sjs
Tags: ruby, cstruct, compiler
---- ----
<p>This is the beginning of a series on generating Mach-O object files in <p>This is the beginning of a series on generating Mach-O object files in

View file

@ -1,6 +1,7 @@
Title: Basics of the Mach-O file format Title: Basics of the Mach-O file format
Date: January 18, 2010 Date: January 18, 2010
Author: sjs Author: sjs
Tags: mach-o, os x, compiler
---- ----
<p><i>This post is part of a series on generating basic x86 Mach-O files <p><i>This post is part of a series on generating basic x86 Mach-O files

View file

@ -1,6 +1,7 @@
Title: A preview of Mach-O file generation Title: A preview of Mach-O file generation
Date: January 20, 2010 Date: January 20, 2010
Author: sjs Author: sjs
Tags: ruby, mach-o, os x, compiler
---- ----
<p>This month I got back into an x86 compiler I started last May. It lives <a <p>This month I got back into an x86 compiler I started last May. It lives <a
@ -21,4 +22,4 @@ about it. I'm learning a lot from this project.</p>
asm/machofile.rb, a library for creating Mach-O files. Using it is quite asm/machofile.rb, a library for creating Mach-O files. Using it is quite
straightforward, an example is in asm/binary.rb, in the #output method.</p> straightforward, an example is in asm/binary.rb, in the #output method.</p>
<p>Definitely time for bed now!</p> <p>Definitely time for bed now!</p>

View file

@ -1,6 +1,7 @@
Title: 37signals' Chalk Dissected Title: 37signals' Chalk Dissected
Date: November 4, 2010 Date: November 4, 2010
Author: sjs Author: sjs
Tags: 37signals, chalk, ipad, javascript, web, html, css, zepto.js
---- ----
<p><i>Update 2010-11-05: I dove into the JavaScript a little and explained most of it. Sam Stephenson <a href="https://twitter.com/sstephenson/status/553490682216449">tweeted</a> that Chalk is written in <a href="http://jashkenas.github.com/coffee-script/">CoffeeScript</a> and compiled on the fly when served using <a href="https://github.com/sstephenson/brochure">Brochure</a>. That's hot! (for those unaware Sam Stephenson works at 37signals, and is also the man behind <a href="http://www.prototypejs.org/">Prototype</a>.)</i></p> <p><i>Update 2010-11-05: I dove into the JavaScript a little and explained most of it. Sam Stephenson <a href="https://twitter.com/sstephenson/status/553490682216449">tweeted</a> that Chalk is written in <a href="http://jashkenas.github.com/coffee-script/">CoffeeScript</a> and compiled on the fly when served using <a href="https://github.com/sstephenson/brochure">Brochure</a>. That's hot! (for those unaware Sam Stephenson works at 37signals, and is also the man behind <a href="http://www.prototypejs.org/">Prototype</a>.)</i></p>
@ -219,4 +220,4 @@ function _addLineNumbersToGist(css_selector) {
} }
addLineNumbersToAllGists(); addLineNumbersToAllGists();
</script> </script>