search for: nanoki

Displaying 6 results from an estimated 6 matches for "nanoki".

Did you mean: nano
2009 Jan 06
1
Web framework for embedded appliance?
Sorry for the off-topic post, but I figured someone here might know: I''m looking for a Ruby web framework that is suitable for developing a web service on an embedded network appliance. RAM is an issue, but probably not as much as hard drive space. Too many requirements likely make Rails a less than ideal candidate for this. If anyone has ideas for what would work, any input is
2008 Mar 11
2
[OT] HTTP headers status diagram
...o ask" Alternatively: "An activity diagram to describe the resolution of HTTP response status codes, given various headers." http://thoughtpad.net/alan-dean/http-headers-status.html http://thoughtpad.net/alan-dean/http-headers-status.gif Cheers, -- PA http://alt.textdrive.com/nanoki/
2008 Feb 18
1
Markdown RFC?
Hello, Has anyone considered writing a formal specification for Markdown? "Why specs matter" http://diveintomark.org/archives/2004/08/16/specs Thoughts? Cheers, -- PA. http://alt.textdrive.com/nanoki/
2008 Feb 20
2
spelling with <g>?
...x], but retained the spelling with <g> and thus at least a visual similarity to German; English and Frisian have shifted g to [j] before palatal vowels</p> Note the raw '<g>', which doesn't seem to be correct. Thoughts? Cheers, -- PA. http://alt.textdrive.com/nanoki/
2008 Mar 22
7
Babelmark
I'm currently attempting to write a spec for parsing Markdown Extra, and since one goal is to minimize the differences in output between implementations, I've made a tool allowing me to compare who does what for any given input. I hope this can also facilitate future discussions about the syntax. So here's Babelmark, a testbed for various Markdown implementations were you
2008 Mar 15
9
Spaces in Ruby on Rails and how to avoid them!
Hi, I just started learning ruby on rails and I am having hard time with white spacing! Here is the piece of code that will not work: validates_format_of :image_url, :with => %r{\.(gif|jpg|png)$}i, :message => "must be a URL for a GIF, JPG or PNG image" and here is the piece of code that will work: validates_format_of :image_url, :with => %r{\.(gif|jpg|png)$}i, :message