search for: rtomayko

Displaying 7 results from an estimated 7 matches for "rtomayko".

Did you mean: tomayko
2006 Mar 17
1
Re: Rails SQL Server adapter
...39;m 99% sure they''ll decline but it''s worth a shot and I don''t see a good argument for why customers who purchase SQL Server should not be able to have excellent support for it in today''s leading web environments :) Ryan Tomayko rtomayko@gmail.com http://naeblis.cx/rtomayko/ http://lesscode.org/
2009 Oct 19
2
Treetop or like grammar for Markdown (in Ruby)
Has anyone seen any attempts to give Markdown a PEG (parsing expressions grammar) recognizable by some ruby PEG parser generator grammar like Treetop? http://treetop.rubyforge.org/
2006 Mar 17
1
Re: Rails SQL Server adapter
...39;m 99% sure they''ll decline but it''s worth a shot and I don''t see a good argument for why customers who purchase SQL Server should not be able to have excellent support for it in today''s leading web environments :) Ryan Tomayko rtomayko@gmail.com http://naeblis.cx/rtomayko/ http://lesscode.org/
2006 Jul 01
3
help me understand rest
I am having a heck of a time understanding the new rest craze in rails. what I think I understand so far: 1 rest is about the way we use http to access information on the internet. 2 http was created with nouns and verbs in mind, but the only verbs that are supported in browsers and server software today are ''post'' and ''get''. Other useful verbs include put
2008 Aug 09
0
peg-markdown (C) and rpeg-markdown (ruby gem)
...kdown, that wraps peg-markdown. He has published it on rubyforge, so you should be able to install it with gem install rpeg-markdown (If the extension fails to build, it is probably because you need to install glib: http://www.gtk.org/download.html.) The source is at http://github.com/rtomayko/rpeg-markdown/tree/master rpeg-markdown's API imitates BlueCloth's, so it should be easy to replace BlueCloth with rpeg-markdown in web applications. John
2010 Aug 19
0
Camping 2.1 - ERB, Haml, 1.9, bug fixes, new website!
...all camping Home: http://camping.rubyforge.org/ Code: http://github.com/camping/camping Bugs: http://github.com/camping/camping/issues List: http://rubyforge.org/mailman/listinfo/camping-list Let''s have a look: ~> ERB and Haml Camping now includes support for Tilt (http://github.com/rtomayko/tilt) which means that you''ll get simple, effortless ERB and Haml support: module App # Path to where you want to store the templates set :views, File.dirname(__FILE__) + ''/views'' end module App::Controllers class Index def get render :in...
2006 Aug 04
4
REST
...ocol. Statelessness is why you''ve got to do all that extra work in your web applications to keep track of the state of the app for your users. Links to REST basics: http://en.wikipedia.org/wiki/Representational_State_Transfer http://66.102.7.104/search?q=cache:uCkFMHAh5b0J:naeblis.cx/rtomayko/ 2004/12/12/rest-to-my-wife+how+i+explained+rest+to+my+wife&hl=en http://rest.blueoxen.net/cgi-bin/wiki.pl?FrontPage In REST, resources (like files) are universally locatable via a common syntax. In HTTP this is done almost entirely with the uniform resource identifier we all know and lo...