hasmanyquestions.wordpress.com
Super-simple data plotting in ‘R’ | has_many :questions
https://hasmanyquestions.wordpress.com/2010/01/25/super-simple-data-plotting-in-r
January 25, 2010. Super-simple data plotting in ‘R’. 8212; gavinstark @ 9:23 am. The ‘R’ app for statistics/graphing/data-analysis is super powerful and I can’t even begin to scratch its surface. However, it is very good at plotting largish data sets. I say “largish” because it can handle more than 5000 data points which is the cutoff for my favorite simple graphing tool: OmniGraphSketcher which I would stick with if it could handle say up to 250,000 points. To produce simple plots. Leave a Reply Cancel ...
hasmanyquestions.wordpress.com
Day Of Ruby Resources | has_many :questions
https://hasmanyquestions.wordpress.com/2009/05/16/day-of-ruby-resources
May 16, 2009. Day Of Ruby Resources. 8212; gavinstark @ 11:10 am. Why’s Poignant Guide to Ruby. Setup: A – Z Tutorial Setup. Slides: A – Z Tutorial Slides. Programming Ruby 1.9. Rails for .NET Developers. Rails for Java Developers. Agile Web Development with Rails. 8220;Way” books. Ruby Meta Programming: Ruby Meta Programming. Leave a Comment ». Feed for comments on this post. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Luis de la Rosa.
hasmanyquestions.wordpress.com
HD Zune. Really, that made it into the interface? | has_many :questions
https://hasmanyquestions.wordpress.com/2009/05/29/hd-zune-really-that-made-it-into-the-interface
May 29, 2009. HD Zune. Really, that made it into the interface? 8212; gavinstark @ 8:49 pm. I’m not a UI expert. I do a competent job, but I’m no Apple UI engineer. However, I think even I’d have noticed this UI “bug” on Microsoft’s Zune HD player (if this is even a real screen not a mock-up). Visit this article: http:/ www.appleinsider.com/articles/09/05/28/early glimpse at zune hd better than ipod touch.html. And look at the first image (the one with text) here is a direct link. Leave a Comment ».
hasmanyquestions.wordpress.com
has_many :questions | The personal blog of Gavin Stark – Ruby, Rails, Javascript, Java, Linux, Windows, Windows XP Embedded, and other musings. | Page 2
https://hasmanyquestions.wordpress.com/page/2
March 13, 2009. Apple applications learning from Windows? 8212; gavinstark @ 7:56 am. Here is where the “fun” starts, and I have to believe that some iTunes developer (and maybe the same guy moonlights on the QuickTime team) did this on purpose. When iTunes completes its loading process it will bring its window to the TOP of the window order. However, the application and window with “focus” is still Terminal, which is now BENEATH the iTunes window. Oh, and if anyone knows how to get these two apps to STOP.
hasmanyquestions.wordpress.com
~/.gem getting you down? chmod to the rescue | has_many :questions
https://hasmanyquestions.wordpress.com/2009/05/10/gem-getting-you-down-chmod-to-the-rescue
May 10, 2009. Gem getting you down? Chmod to the rescue. 8212; gavinstark @ 6:20 pm. I noticed while reading the twitter stream at RailsConf I saw a post about troubles with gems and the answer was. Rm -rf /.gem. I’ve forgotten to. A few times. I wondered if I just did a “chmod a-rwx /.gem” if that would prevent gem from using the directory. The answer is yes. To prevent gem from using the /.gem directory:. Chmod a-rwx /.gem. If you “. 8220;ed that directory just. And then do the chmod above.
hasmanyquestions.wordpress.com
How many programming languages can you cram into a single file? | has_many :questions
https://hasmanyquestions.wordpress.com/2009/03/17/how-many-programming-languages-can-you-cram-into-a-single-file
March 17, 2009. How many programming languages can you cram into a single file? 8212; gavinstark @ 4:29 pm. I came across this link a while ago. Don’t just look at it in your browser, view the source. The contents are executable/compilable in many languages. Save the source to disk and run it through the Python interpreter, then try the Ruby interpreter, than compile it as C, or C , run it as a Bash script. even try it in Perl…. Original Link: http:/ mauke.ath.cx/stuff/poly.html. Leave a Comment ».
hasmanyquestions.wordpress.com
Good thing I didn’t declare podcast bankruptcy on Ruby 5 | has_many :questions
https://hasmanyquestions.wordpress.com/2010/07/08/good-thing-i-didnt-declare-podcast-bankruptcy-on-ruby-5
July 8, 2010. Good thing I didn’t declare podcast bankruptcy on Ruby 5. 8212; gavinstark @ 1:07 pm. Its a great podcast and if you aren’t subscribe, go do that right now! Http:/ ruby5.envylabs.com. I’m behind about 30 episodes and decided to plow through a bunch of episodes. Here are the neat things they covered I thought I’d mention here:. Treat your “dot files” as a git repo. Easily run git over HTTPS instead of relying on SSH keys. MySQL and MongoDB together. Leave a Comment ». Enter your comment here.
hasmanyquestions.wordpress.com
Let your SQL Growl in Rails 3 | has_many :questions
https://hasmanyquestions.wordpress.com/2010/01/17/let-your-sql-growl-in-rails-3
January 17, 2010. Let your SQL Growl in Rails 3. 8212; gavinstark @ 3:40 pm. While participating (mostly working on getting some existing apps running under 3.0) in the Rails BugMash this weekend I noted there was recently a subscription system for logging added by José Valim. I usually enable some hack to watch SQL while I’m in. Or whatever method you prefer for development-mode-only code. Gist: http:/ gist.github.com/280099. I have a couple of problems with this:. This is probably a horrible use of.