<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.com/group/comp.lang.ruby</id>
  <title type="text">comp.lang.ruby Google Group</title>
  <subtitle type="text">
  The Ruby dynamic OO programming language.
  </subtitle>
  <link href="/group/comp.lang.ruby/feed/atom_v1_0_msgs.xml" rel="self" title="comp.lang.ruby feed"/>
  <updated>2009-07-05T17:08:11Z</updated>
  <generator uri="http://groups.google.com" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>Greg Willits</name>
  <email>li...@gregwillits.ws</email>
  </author>
  <updated>2009-07-05T17:08:11Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/f17d6ac456b42ae7/7403f99effc9d69f?show_docid=7403f99effc9d69f</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/f17d6ac456b42ae7/7403f99effc9d69f?show_docid=7403f99effc9d69f"/>
  <title type="text">Re: file.seek and unused bytes</title>
  <summary type="html" xml:space="preserve">
  80&#39;s micros too with BASIC :-P &lt;br&gt; That makes a great deal of sense, and would be consistent with what I &lt;br&gt; was seeing. I was wondering why the values being returned were zeros &lt;br&gt; instead of nil or something else. &lt;br&gt; Either way, I know its a better practice to pack the rows, but I had a &lt;br&gt; moment of laziness because I&#39;m dealing will a couple million rows and
  </summary>
  </entry>
  <entry>
  <author>
  <name>Robert Dober</name>
  <email>robert.do...@gmail.com</email>
  </author>
  <updated>2009-07-05T15:12:54Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/b7183f8da49154cf/e8d08c87ec840c2e?show_docid=e8d08c87ec840c2e</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/b7183f8da49154cf/e8d08c87ec840c2e?show_docid=e8d08c87ec840c2e"/>
  <title type="text">Re: to_proc and Proc/block conversion with &amp;</title>
  <summary type="html" xml:space="preserve">
  Absolutely agree, but maybe this should go into rubyspec... &lt;br&gt; and sorry for hijacking. &lt;br&gt; Cheers &lt;br&gt; Robert
  </summary>
  </entry>
  <entry>
  <author>
  <name>David A. Black</name>
  <email>dbl...@rubypal.com</email>
  </author>
  <updated>2009-07-05T15:08:31Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/b7183f8da49154cf/c05bb7de0aaba4f7?show_docid=c05bb7de0aaba4f7</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/b7183f8da49154cf/c05bb7de0aaba4f7?show_docid=c05bb7de0aaba4f7"/>
  <title type="text">Re: to_proc and Proc/block conversion with &amp;</title>
  <summary type="html" xml:space="preserve">
  Hi -- &lt;br&gt; How odd. I wonder what the point of that is. I&#39;d rather be warned if I &lt;br&gt; write Proc.new without a block, than have it default to the code &lt;br&gt; block. &lt;br&gt; But you&#39;re right that I&#39;m wrong in correcting Joel. Rewind. &lt;br&gt; David
  </summary>
  </entry>
  <entry>
  <author>
  <name>Luis Lavena</name>
  <email>luislav...@gmail.com</email>
  </author>
  <updated>2009-07-05T15:07:41Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/752e2964a9159b57/225a0872383a4c51?show_docid=225a0872383a4c51</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/752e2964a9159b57/225a0872383a4c51?show_docid=225a0872383a4c51"/>
  <title type="text">Re: Installing tar2rubyscript and rubyscript2exe</title>
  <summary type="html" xml:space="preserve">
  Chiming in, quick question. &lt;br&gt; what &amp;quot;gem list tar2rubyscript -d&amp;quot; output? &lt;br&gt; Perhaps where these binaries got installed is not in your PATH, and &lt;br&gt; thus, not be able to execute them. &lt;br&gt; Also, what is the output of &amp;quot;gem env&amp;quot;? &lt;br&gt; When reporting issues with RubyGems (itself or gems that depend on &lt;br&gt; it), please provide the environment information for us to better help
  </summary>
  </entry>
  <entry>
  <author>
  <name>Bertram Scharpf</name>
  <email>li...@bertram-scharpf.de</email>
  </author>
  <updated>2009-07-05T14:52:17Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/b7183f8da49154cf/ee9c2749e699c6d6?show_docid=ee9c2749e699c6d6</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/b7183f8da49154cf/ee9c2749e699c6d6?show_docid=ee9c2749e699c6d6"/>
  <title type="text">Re: to_proc and Proc/block conversion with &amp;</title>
  <summary type="html" xml:space="preserve">
  Hi, &lt;br&gt; Am Sonntag, 05. Jul 2009, 19:51:28 +0900 schrieb David A. Black: &lt;br&gt; Sorry, but these are not the same: &lt;br&gt; Proc.new &lt;br&gt; Proc.new { } &lt;br&gt; Try this: &lt;br&gt; def f ; Proc.new ; end &lt;br&gt; p = f { &amp;quot;hello&amp;quot; } &lt;br&gt; p.call &lt;br&gt; #=&amp;gt; &amp;quot;hello&amp;quot; &lt;br&gt; Bertram
  </summary>
  </entry>
  <entry>
  <author>
  <name>www.dudes-mall.com</name>
  <email>ladyjack...@gmail.com</email>
  </author>
  <updated>2009-07-05T12:57:14Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/9686612ebe062cd6/e81848e63ef3735b?show_docid=e81848e63ef3735b</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/9686612ebe062cd6/e81848e63ef3735b?show_docid=e81848e63ef3735b"/>
  <title type="text">www.dudes-mall.com Ed hardy,(tshirt$13,swim strunk$25,jean$30,handbag$34,cap$13,sunglass$12,shoes$25)nike shoes:$32,handbag:$35,NFL:$20,jean:$30,air force one shoes,lv,gucci,D&amp;G,bbc,coachUGG boot:$50,.free shipping!</title>
  <summary type="html" xml:space="preserve">
  Get Nike Shoes at Super Cheap Prices &lt;br&gt; Discount Ed hardy tshirt (&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.dudes-mall.com&quot;&gt;[link]&lt;/a&gt;) &lt;br&gt; Discount Ed hardy swimming suit (&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.dudes-mall.com&quot;&gt;[link]&lt;/a&gt;) &lt;br&gt; Discount Ed hardy jean (&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.dudes-mall.com&quot;&gt;[link]&lt;/a&gt;) &lt;br&gt; Discount Ed hardy shoes (&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.dudes-mall.com&quot;&gt;[link]&lt;/a&gt;) &lt;br&gt; Discount Ed hardy handbag (&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.dudes-mall.com&quot;&gt;[link]&lt;/a&gt;) &lt;br&gt; Discount Ed hardy other porduct (&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.dudes-mall.com&quot;&gt;[link]&lt;/a&gt;)
  </summary>
  </entry>
  <entry>
  <author>
  <name>David A. Black</name>
  <email>dbl...@rubypal.com</email>
  </author>
  <updated>2009-07-05T12:41:03Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/b7183f8da49154cf/9a541abd76261db6?show_docid=9a541abd76261db6</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/b7183f8da49154cf/9a541abd76261db6?show_docid=9a541abd76261db6"/>
  <title type="text">Re: to_proc and Proc/block conversion with &amp;</title>
  <summary type="html" xml:space="preserve">
  Also, it seems to be the same in 1.8. So I guess a refinement of the &lt;br&gt; description would be: given &amp;amp;expr, if expr is a Proc object, use it as &lt;br&gt; the block; if not, call to_proc on it. &lt;br&gt; I don&#39;t know whether that&#39;s a language spec or just an implementation &lt;br&gt; detail. I vaguely hope the latter, though I suppose that something
  </summary>
  </entry>
  <entry>
  <author>
  <name>David A. Black</name>
  <email>dbl...@rubypal.com</email>
  </author>
  <updated>2009-07-05T12:33:26Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/b7183f8da49154cf/34ed08926610db4b?show_docid=34ed08926610db4b</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/b7183f8da49154cf/34ed08926610db4b?show_docid=34ed08926610db4b"/>
  <title type="text">Re: to_proc and Proc/block conversion with &amp;</title>
  <summary type="html" xml:space="preserve">
  Hi -- &lt;br&gt; I guess it&#39;s an optimization. So take my explanation as behavioral &lt;br&gt; rather than implementation-faithful. &lt;br&gt; David
  </summary>
  </entry>
  <entry>
  <author>
  <name>Robert Dober</name>
  <email>robert.do...@gmail.com</email>
  </author>
  <updated>2009-07-05T11:56:33Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/b7183f8da49154cf/3f23f06c05c0f452?show_docid=3f23f06c05c0f452</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/b7183f8da49154cf/3f23f06c05c0f452?show_docid=3f23f06c05c0f452"/>
  <title type="text">Re: to_proc and Proc/block conversion with &amp;</title>
  <summary type="html" xml:space="preserve">
  It might be interesting to note that in Ruby1.9 the to_proc is not &lt;br&gt; called on Proc objects, I wonder what happened in 1.8 &lt;br&gt; 536/37 &amp;gt; ruby -rprofile -e &#39;[1].map &amp;amp;Proc::new{|x| x+1}&#39; &lt;br&gt; % cumulative self self total &lt;br&gt; time seconds seconds calls ms/call ms/call name &lt;br&gt; 0.00 0.00 0.00 1 0.00 0.00 BasicObject#initialize
  </summary>
  </entry>
  <entry>
  <author>
  <name>dzw!</name>
  <email>bartoszw...@googlemail.com</email>
  </author>
  <updated>2009-07-05T11:16:51Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/8b1e44753149f0f0/0a684bb9a2deb1be?show_docid=0a684bb9a2deb1be</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/8b1e44753149f0f0/0a684bb9a2deb1be?show_docid=0a684bb9a2deb1be"/>
  <title type="text">Re: How to remove/delete/destroy class variable in Ruby 1.9?</title>
  <summary type="html" xml:space="preserve">
  Thank you guys, all your tips were very useful. &lt;br&gt; It was just dummy example(inspired from Pickaxe Book) that made me &lt;br&gt; thinking, remove_class_variable method was exactly what I looked for &lt;br&gt; [ I really cant believe I missed it :)). &lt;br&gt; and $$class_variable explanation works very well for my brain. &lt;br&gt; Big Cheers from Bart
  </summary>
  </entry>
  <entry>
  <author>
  <name>David A. Black</name>
  <email>dbl...@rubypal.com</email>
  </author>
  <updated>2009-07-05T10:51:28Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/b7183f8da49154cf/8883e0b16e0f35a4?show_docid=8883e0b16e0f35a4</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/b7183f8da49154cf/8883e0b16e0f35a4?show_docid=8883e0b16e0f35a4"/>
  <title type="text">Re: to_proc and Proc/block conversion with &amp;</title>
  <summary type="html" xml:space="preserve">
  Hi -- &lt;br&gt; That&#39;s not going to access the caller&#39;s code, though, since you&#39;re &lt;br&gt; creating a totally new Proc. &lt;br&gt; David
  </summary>
  </entry>
  <entry>
  <author>
  <name>Brian Candler</name>
  <email>b.cand...@pobox.com</email>
  </author>
  <updated>2009-07-05T09:03:49Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/f17d6ac456b42ae7/e3a1172f979dabd8?show_docid=e3a1172f979dabd8</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/f17d6ac456b42ae7/e3a1172f979dabd8?show_docid=e3a1172f979dabd8"/>
  <title type="text">Re: file.seek and unused bytes</title>
  <summary type="html" xml:space="preserve">
  I don&#39;t believe that&#39;s the case today. If it were, then you would have a &lt;br&gt; very easy way to examine the contents of unused sectors on the disk - &lt;br&gt; which would allow you to see other people&#39;s deleted files, passwords &lt;br&gt; etc. &lt;br&gt; It was possible on old mainframe systems in the 80&#39;s though :-) &lt;br&gt; But today, if you extend a file using seek, you should always read
  </summary>
  </entry>
  <entry>
  <author>
  <name>shaikh aamirali</name>
  <email>shaikh.aamiral...@gmail.com</email>
  </author>
  <updated>2009-07-05T07:24:50Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/291109ea1ab545f7/659bf91790dca2e2?show_docid=659bf91790dca2e2</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/291109ea1ab545f7/659bf91790dca2e2?show_docid=659bf91790dca2e2"/>
  <title type="text">THE WORLD OF INTERNET JOB IS OFFEREING U TO EARN $1000 IN ONE MINUTE</title>
  <summary type="html" xml:space="preserve">
  THE WORLD OF INTERNET JOB IS OFFEREING U TO EARN $1000 IN ONE MINUTE &lt;br&gt; PLEASE HURRY UP FOR MORE DETAILS LOG ON TO &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://eram.megalinesolutions.com/&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>shaz</name>
  <email>shoaib...@gmail.com</email>
  </author>
  <updated>2009-07-05T06:19:30Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/aac530352d5a0295/840975db96ed0a10?show_docid=840975db96ed0a10</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/aac530352d5a0295/840975db96ed0a10?show_docid=840975db96ed0a10"/>
  <title type="text">ENTERTAINMENT LIFE</title>
  <summary type="html" xml:space="preserve">
  Hello, &lt;br&gt; Every one wants entertainment. &lt;br&gt; I will give you entertainment about HOLLYWOOD &lt;br&gt; like SHILPA SHETTY, AMIR KHAN,SHAHRUKH KHAN, &lt;br&gt; and watch online T.V. chanel and games and much more entertainment. &lt;br&gt; so clix this link &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.entertainmentle.blogspot.com&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; WATCH IIIIIIITTTTTTTTTTT.
  </summary>
  </entry>
  <entry>
  <author>
  <name>7stud --</name>
  <email>bbxx789_0...@yahoo.com</email>
  </author>
  <updated>2009-07-05T05:42:10Z</updated>
  <id>http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/e3818b351f9f27d7/1dda2a7b875b2056?show_docid=1dda2a7b875b2056</id>
  <link href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/e3818b351f9f27d7/1dda2a7b875b2056?show_docid=1dda2a7b875b2056"/>
  <title type="text">Re: Newbie help</title>
  <summary type="html" xml:space="preserve">
  &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.ruby-forum.com/topic/185728#811600&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
</feed>
