User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T18:25:46Zhttp://stackoverflow.com/feeds/user/32453http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1798976/can-you-redistribute-msvcrtxx-dll-from-an-app-build-using-visual-studio-express0can you redistribute msvcrtxx.dll from an app build using visual studio express?rogerdpack2009-11-25T18:23:25Z2009-11-25T18:23:25Z
<p>When you download visual C++ 2008 express edition</p>
<p>This file exists:</p>
<p>./Microsoft Visual Studio 9.0/VC/redist/x86/Microsoft.VC90.CRT/msvcr90.dll</p>
<p>In the file redist.txt it says</p>
<p>"The following list is a list of files available with Microsoft Visual Studio 2008 for redistribution under the Visual Studio 2008 license. If the Microsoft software you have licensed is not Visual Studio 2008, only the files that are installed by the Microsoft software may be redistributed under such license."</p>
<p>and includes the above msvcr90.dll</p>
<p>So my question is, does this license allow you to distribute msvcr90.dll from express or not? What does "only the files that are installed by the Microsoft software" mean? Any help? (specifically, is it not allowed to distribute a version of msvcr90.dll with an app built by mingw/gcc).</p>
<p>Thanks.
-r</p>
http://stackoverflow.com/questions/1151420/mingw-update-gcc-version-3-4-5-to-version-4-4/1757459#17574590Answer by rogerdpack for MinGW - Update GCC version 3.4.5 to version 4.4rogerdpack2009-11-18T16:57:22Z2009-11-18T16:57:22Z<p>the trick is to unzip those gcc files over an existing mingw/msys install.</p>
http://stackoverflow.com/questions/1259476/how-to-install-rmagick-gem-in-ruby-1-8-6-mingw/1753338#17533380Answer by rogerdpack for How to install RMagick gem in Ruby 1.8.6 MingW?rogerdpack2009-11-18T02:51:06Z2009-11-18T02:51:06Z<p><a href="http://rubyforge.org/tracker/index.php?func=detail&aid=21495&group%5Fid=12&atid=134" rel="nofollow">http://rubyforge.org/tracker/index.php?func=detail&aid=21495&group%5Fid=12&atid=134</a>
also looks hopeful</p>
http://stackoverflow.com/questions/876006/how-to-trap-signal-on-ruby-running-on-windows/1682635#16826350Answer by rogerdpack for How to trap signal on ruby running on windowsrogerdpack2009-11-05T18:35:24Z2009-11-05T18:35:24Z<p>Signal.list tells you which ones are supported on your system</p>
http://stackoverflow.com/questions/1645553/com-sun-net-httpserver-httpserver-max-connection-count0com.sun.net.httpserver.HttpServer max connection count?rogerdpack2009-10-29T18:07:53Z2009-10-29T18:19:07Z
<p>Sometimes (pretty rarely) when I connect to a running instance of a com.sun.net.httpserver.HttpServer I get a "connection refused" message back.</p>
<p>Anybody know why this might be? Is there a thread limit to the number of connections it can handle? Can I increase it?
Thanks.
-r</p>
http://stackoverflow.com/questions/28243/cannot-install-ruby-gems-zlib-error/1600501#16005010Answer by rogerdpack for cannot install ruby gems - zlib errorrogerdpack2009-10-21T12:31:47Z2009-10-21T12:31:47Z<p>install pure ruby zlib if all else fails</p>
http://stackoverflow.com/questions/213368/how-can-i-reliably-discover-the-full-path-of-the-ruby-executable/1600492#16004920Answer by rogerdpack for How can I reliably discover the full path of the Ruby executable?rogerdpack2009-10-21T12:30:20Z2009-10-21T12:30:20Z<p>for the script parameters, of course, use ARGV :)
-r</p>
http://stackoverflow.com/questions/12565/what-do-the-different-brackets-in-ruby-mean/1563105#15631051Answer by rogerdpack for What do the different brackets in Ruby Mean?rogerdpack2009-10-13T21:47:50Z2009-10-13T21:47:50Z<p>note that you can define the [] method for your own classes</p>
<pre>
class A
def [](position)
# do something
end
end
</pre>
http://stackoverflow.com/questions/307070/how-do-you-spawn-a-child-process-in-ruby/1534634#15346340Answer by rogerdpack for How do you spawn a child process in Ruby?rogerdpack2009-10-07T22:42:31Z2009-10-07T22:42:31Z<p>In 1.9 you can use Process.spawn command</p>
http://stackoverflow.com/questions/551284/missing-htons-while-building-dnssd-gem-for-ruby-1-9-1/1522643#15226430Answer by rogerdpack for Missing htons while building dnssd gem for Ruby 1.9.1rogerdpack2009-10-05T22:00:56Z2009-10-05T22:00:56Z<p>check and post your mkm_mf.log :)
-r</p>
http://stackoverflow.com/questions/1162960/how-do-i-compile-and-build-the-taf2-curb-ruby-gem-on-windows-xp-with-mingw/1522641#15226410Answer by rogerdpack for How do I compile and build the taf2-curb Ruby gem on Windows XP with MinGW?rogerdpack2009-10-05T21:59:57Z2009-10-05T21:59:57Z<p>you'll want to check your mkmf.log
Perhaps add curb-config to your path?
-r</p>
http://stackoverflow.com/questions/1112754/determining-which-rubygem-youre-using/1522632#15226320Answer by rogerdpack for Determining which rubygem you're usingrogerdpack2009-10-05T21:58:40Z2009-10-05T21:58:40Z<p>gem list xxx
it defaults to load the latest version.</p>
http://stackoverflow.com/questions/1112875/are-github-gems-less-stable-than-rubyforge-gems/1522623#15226230Answer by rogerdpack for Are github gems less stable than rubyforge gems?rogerdpack2009-10-05T21:57:45Z2009-10-05T21:57:45Z<p>Probably less stable and slightly more up to date :)
-r</p>
http://stackoverflow.com/questions/1374441/configuring-github-to-automatically-build-new-ruby-gems/1522618#15226180Answer by rogerdpack for Configuring GitHub to automatically build new ruby gemsrogerdpack2009-10-05T21:56:52Z2009-10-05T21:56:52Z<p>There's a link when you reload your project's github page on the right [the gem] to "rebuild gem" if you don't want to do the version bump. Then it takes a few minutes to show up :)
-r</p>
http://stackoverflow.com/questions/1434283/how-do-i-use-ruby1-9-with-shoes/1521100#15211001Answer by rogerdpack for How do I use Ruby1.9 with Shoes?rogerdpack2009-10-05T16:35:40Z2009-10-05T16:35:40Z<p>or you could use aman gupta's "poor man's fibers" or try doing ::Fiber
or what not.
GL!
-r</p>
http://stackoverflow.com/questions/1436037/how-do-enumerators-work-in-ruby-1-9-1/1481303#14813031Answer by rogerdpack for How do Enumerators work in Ruby 1.9.1?rogerdpack2009-09-26T14:09:49Z2009-10-03T13:42:53Z<p>As the other posters noted, I believe it creates its own private "fiber" [in 1.9]. In 1.8.7 (or 1.8.6 if you use the backports gem) somehow or other it does the same thing (perhaps because all threads in 1.8 are the equivalent of fibers, it just uses them?)</p>
<p>Thus in 1.9 and 1.8.x, if you chain several of them together
a.each_line.map.each_with_index { }</p>
<p>It actually flows through that whole chain with each line, kind of like a pipe on the command line</p>
<p><a href="http://pragdave.blogs.pragprog.com/pragdave/2007/12/pipelines-using.html" rel="nofollow">http://pragdave.blogs.pragprog.com/pragdave/2007/12/pipelines-using.html</a></p>
<p>HTH.</p>
http://stackoverflow.com/questions/1459988/emulation-of-eachslice-without-block-in-ruby-1-8-7/1468131#14681310Answer by rogerdpack for Emulation of each_slice without block in ruby < 1.8.7 rogerdpack2009-09-23T19:35:30Z2009-09-23T19:35:30Z<p>checkout the 'backports' gem :)</p>
http://stackoverflow.com/questions/1462320/ruby-code-on-nfs-mount-using-another-file-on-same-mount-causes-problems/1468105#14681050Answer by rogerdpack for Ruby code on NFS mount, using another file on same mount causes problems.rogerdpack2009-09-23T19:28:52Z2009-09-23T19:28:52Z<p>I've had trouble with NFS mounted files before, too. MAybe could ask core. Until then perhaps retry when you encounter the error you do?
GL.
-r</p>
http://stackoverflow.com/questions/1468071/how-do-you-use-a-partial-in-a-layout-template/1468091#14680911Answer by rogerdpack for How do you use a partial in a layout template?rogerdpack2009-09-23T19:23:55Z2009-09-23T19:23:55Z<p>I think you just pass it a full path to it, like 3.4.1 second example
<a href="http://guides.rubyonrails.org/layouts%5Fand%5Frendering.html#using-partials" rel="nofollow">http://guides.rubyonrails.org/layouts%5Fand%5Frendering.html#using-partials</a></p>
http://stackoverflow.com/questions/1461481/how-to-display-error-type-in-ruby/1462333#14623330Answer by rogerdpack for How to display error type in ruby?rogerdpack2009-09-22T20:17:21Z2009-09-22T20:17:21Z<p>You'd probably have to catch and re-throw</p>
<pre>
begin
# stuff
rescue Exception => e
puts "got #{e}"
begin
throw e # re -throw
rescue ArgumentError
#
rescue Something
#
end
end
</pre>
<p>or case statement it within the rescue, as noted, which would probably be better</p>
http://stackoverflow.com/questions/1456520/what-is-most-efficient-way-to-read-from-tcpserver/1457363#14573630Answer by rogerdpack for What is most efficient way to read from TCPServer?rogerdpack2009-09-21T23:14:21Z2009-09-21T23:14:21Z<p>are you sure recv isn't returning "" -- meaning the socket is closed?
If not then perhaps your sockets are set to non blocking somehow?</p>
<p>EventMachine is indeed far faster than using threads for socket programming :)
GL.
-r</p>
http://stackoverflow.com/questions/144959/ruby-how-can-i-copy-and-paste-in-irb-on-windows/1435790#14357900Answer by rogerdpack for Ruby. How can I copy and paste in irb on Windows?rogerdpack2009-09-16T22:14:42Z2009-09-16T22:14:42Z<p>check out console2--very nice and allows you to paste by using right click or what not.</p>
http://stackoverflow.com/questions/1051413/rails-cant-find-the-generator-class/1381807#13818070Answer by rogerdpack for Rails can't find the generator classrogerdpack2009-09-04T22:34:25Z2009-09-04T22:34:25Z<p>in 1.9 there's Enumerator::Generator</p>
<p>or you might be able to get away with creating your own file
'generator'
that just does
Generator = Enumerator</p>
<p>GL.
-r</p>
http://stackoverflow.com/questions/1228032/differences-in-instanceeval-behaviour-between-ruby-1-9-1-and-1-8-6/1267765#12677650Answer by rogerdpack for Differences in instance_eval behaviour between Ruby 1.9.1 and 1.8.6 ?rogerdpack2009-08-12T18:05:23Z2009-08-12T18:05:23Z<p>I think it [at least currently] doesn't return self, either.</p>
http://stackoverflow.com/questions/1183743/ruby-getting-netsmtp-working-with-gmail/1267707#12677070Answer by rogerdpack for (Ruby) Getting Net::SMTP working with Gmail...?rogerdpack2009-08-12T17:55:51Z2009-08-12T17:55:51Z<p><a href="http://blog.segment7.net/articles/2009/07/08/smtp_tls-1-0-3" rel="nofollow">http://blog.segment7.net/articles/2009/07/08/smtp_tls-1-0-3</a>
might help</p>
http://stackoverflow.com/questions/708858/how-to-send-mail-with-ruby-over-smtp-with-ssl-not-with-rails-no-tls-for-gmail/1267682#12676820Answer by rogerdpack for How to send mail with ruby over smtp with ssl (not with rails, no TLS for gmail)rogerdpack2009-08-12T17:52:29Z2009-08-12T17:52:29Z<p>this might help
<a href="http://blog.segment7.net/articles/2009/07/08/smtp_tls-1-0-3" rel="nofollow">http://blog.segment7.net/articles/2009/07/08/smtp_tls-1-0-3</a></p>
http://stackoverflow.com/questions/530127/what-is-pythons-built-in-method-acquire-how-can-i-speed-it-up/1267504#12675040Answer by rogerdpack for What is Python's "built-in method acquire"? How can I speed it up?rogerdpack2009-08-12T17:16:54Z2009-08-12T17:16:54Z<p>you want to look for cpu used, not for "total time used" from within that method--that might help. Sorry I don't use python but that's how it is for me in ruby :)
-r</p>
http://stackoverflow.com/questions/551060/speed-up-rails-app-on-development-env/1267482#12674820Answer by rogerdpack for Speed up Rails App on development env.?rogerdpack2009-08-12T17:12:39Z2009-08-12T17:12:39Z<p>If you're on windows, use some mingw builds of Ruby
<a href="http://rubyinstaller.org/downloads/" rel="nofollow">http://rubyinstaller.org/downloads/</a></p>
<p>If you're on linux, this might be helpful for running tests</p>
<p><a href="http://github.com/candlerb/snailgun/tree/master" rel="nofollow">http://github.com/candlerb/snailgun/tree/master</a></p>
http://stackoverflow.com/questions/1142418/ruby-cant-link-with-ms-c-runtime-msvcr90-dll/1191935#11919350Answer by rogerdpack for Ruby can't link with MS C runtime (msvcr90.dll)rogerdpack2009-07-28T04:27:47Z2009-07-28T04:27:47Z<p>appears to be that you need to exclude the /MD parameter
and make sure your library calls xfree, not free :)</p>
<p><a href="http://groups.google.com/group/thin-ruby/browse_thread/thread/c15b2472eb97c2ba/ea7c5127035d193b" rel="nofollow">http://groups.google.com/group/thin-ruby/browse_thread/thread/c15b2472eb97c2ba/ea7c5127035d193b</a>
-r</p>
http://stackoverflow.com/questions/1000731/getting-rid-of-ruby-gems-that-wont-die/1028587#10285870Answer by rogerdpack for getting rid of ruby gems that won't dierogerdpack2009-06-22T17:53:01Z2009-06-22T17:53:01Z<p>update your version of ruby gems
gem update --system
then hopefully
gem uninstall xxx
will work right now [was a bug in older versions]</p>
http://stackoverflow.com/questions/1259476/how-to-install-rmagick-gem-in-ruby-1-8-6-mingw/1753338#1753338Comment by on How to install RMagick gem in Ruby 1.8.6 MingW?2009-11-20T01:35:50Z2009-11-20T01:35:50Z<a href="http://betterlogic.com/roger/?p=2186" rel="nofollow">betterlogic.com/roger/?p=2186</a>
is how to "really" compile it using mingw :)http://stackoverflow.com/questions/121266/unit-testing-a-jax-rs-web-service/148146#148146Comment by on Unit testing a JAX-RS Web Service?2009-11-09T19:55:42Z2009-11-09T19:55:42Zre: now bad link
You can find the examples mentioned in the jersey /samples that show unit tests, basically by using jersey's consumers to consume web resources.
<a href="http://download.java.net/maven/2/com/sun/jersey/samples/bookstore/1.1.5-ea-SNAPSHOT" rel="nofollow">download.java.net/maven/2/…</a>http://stackoverflow.com/questions/1645553/com-sun-net-httpserver-httpserver-max-connection-count/1645623#1645623Comment by on com.sun.net.httpserver.HttpServer max connection count?2009-10-29T18:46:51Z2009-10-29T18:46:51ZsetExecutor--thank you very much--wonder what the default configuration is... [the java docs, as usual, with " a default implementation is used"]http://stackoverflow.com/questions/174560/sharing-test-code-in-maven/174572#174572Comment by on Sharing Test code in Maven2009-09-23T19:20:51Z2009-09-23T19:20:51ZI don't think that's quite enough though...http://stackoverflow.com/questions/551060/speed-up-rails-app-on-development-env/1267482#1267482Comment by on Speed up Rails App on development env.?2009-08-25T21:37:48Z2009-08-25T21:37:48Zon the one-click page you have "RC2" which is mswin (slow, stable) and the "technology preview" versions, which are mingw (faster, newer).http://stackoverflow.com/questions/1142418/ruby-cant-link-with-ms-c-runtime-msvcr90-dll/1191935#1191935Comment by on Ruby can't link with MS C runtime (msvcr90.dll)2009-08-11T21:32:19Z2009-08-11T21:32:19Zxfree is ruby's wrapper to the free method--calling it instead of free will make it possible to run your code "cross msvcrt.dll" [i.e. you link to one, run it in another], or so I'm told.<a href="http://programming-gone-awry.blogspot.com/2009/07/how-to-compile-using-visual-studio-for.html" rel="nofollow">programming-gone-awry.blogspot.com/2009/07/…</a>http://stackoverflow.com/questions/1024056/how-do-i-get-irbrc-running-on-win32-for-ruby-console/1028572#1028572Comment by on How do I get IRBRC running on Win32 for Ruby console?2009-07-28T04:29:39Z2009-07-28T04:29:39ZHmm. Yeah it <i>should</i> be loading that file and doing it all right. A few hints might be: add some puts in that file, make sure your directory matches File.expand_path('~') [since that's where ruby will load it from], and that it's readable from within a ruby process [should be].
GL.
=rhttp://stackoverflow.com/questions/858592/windows-malloc-replacement-e-g-tcmalloc-and-dynamic-crt-linking/887599#887599Comment by on Windows malloc replacement (e.g., tcmalloc) and dynamic crt linking2009-06-18T15:39:56Z2009-06-18T15:39:56Znot sure, though I know it "doesn't automagically replace
the system malloc()"
<a href="http://www.nedprod.com/programs/portable/nedmalloc/" rel="nofollow">nedprod.com/programs/portable/…</a> might have more