User wvdschel - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T15:38:26Zhttp://stackoverflow.com/feeds/user/2018http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/49274/safe-integer-parsing-in-ruby11Safe integer parsing in Rubywvdschel2008-09-08T07:41:00Z2009-11-21T07:51:32Z
<p>I have a string, say <code>'123'</code>, and I want to convert it to <code>123</code>.</p>
<p>I know you can simply do <code>some_string.to_i</code>, but that converts <code>'lolipops'</code> to <code>0</code>, which is not the effect I have in mind. I want it to blow up in my face when I try to convert something invalid, with a nice and painful <code>Exception</code>. Otherwise, I can't distinguish between a valid <code>0</code> and something that just isn't a number at all.</p>
<p><strong>EDIT:</strong> I was looking for the standard way of doing it, without regex trickery. Thanks all.</p>
http://stackoverflow.com/questions/42934/whats-with-the-love-of-dynamic-languages/42951#4295112Answer by wvdschel for What's with the love of dynamic Languageswvdschel2008-09-04T00:56:29Z2009-11-02T00:52:22Z<p>Your arguments against dynamic languages are perfectly valid. However, consider the following:</p>
<ol>
<li><strong>Dynamic languages don't need to be compiled</strong>: just run them. You can even reload the files at run time without restarting the application in most cases.</li>
<li><strong>Dynamic languages are generally less verbose and more readable</strong>: have you ever looked at a given algorithm or program implemented in a static language, then compared it to the Ruby or Python equivalent? In general, you're looking at a reduction in lines of code by a factor of 3. A lot of scaffolding code is unnecessary in dynamic languages, and that means the end result is more readable and more focused on the actual problem at hand.</li>
<li><strong>Don't worry about typing issues</strong>: the general approach when programming in dynamic languages is not to worry about typing: most of the time, the right kind of argument will be passed to your methods. And once in a while, someone may use a different kind of argument that just happens to work as well. When things go wrong, your program may be stopped, but this rarely happens if you've done a few tests.</li>
</ol>
<p>I too found it a bit scary to step away from the safe world of static typing at first, but for me the advantages by far outweigh the disadvantages, and I've never looked back.</p>
http://stackoverflow.com/questions/16991/what-ruby-ide-do-you-prefer5What Ruby IDE do you prefer?wvdschel2008-08-19T21:26:22Z2009-10-23T11:07:53Z
<p>I've been using Eclipse with RDT (not RadRails) a lot lately, and I'm quite happy with it, but I'm wondering if you guys know any decent alternatives. I know NetBeans also supports Ruby these days, but I'm not sure what it has to offer over Eclipse.</p>
<p>Please, list any features you think are brilliant or useful when suggesting an IDE, makes it easier to compare.</p>
<p>Also, I said Ruby, not Rails. While Rails support is a plus, I prefer things to be none Rails-centric. It should also be available on Linux and optionally Solaris.</p>
http://stackoverflow.com/questions/16965/jruby-rack-deployment3JRuby / Rack deploymentwvdschel2008-08-19T21:11:45Z2009-09-29T06:28:24Z
<p>I know this is pretty exotic, but I want to deploy a Ruby web application (not Rails, but Rack based, so it plugs into most Ruby servers just fine) using JRuby. Google and friends give me a few success stories, but mostly rails related and if not, no details on the deployment are provided. The framework I'm using is Ramaze, if it matters.</p>
<p>Any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/16918/beginners-guide-to-haskell27Beginners Guide to Haskell?wvdschel2008-08-19T20:44:48Z2009-09-18T21:49:54Z
<p>I've been looking for a decent guide to Haskell for some time, but haven't been able to find one that seems interesting enough to read through and/or makes sense.</p>
<p>I've had prior exposure to Haskell a few years back, but I can't remember much about it. I remember the "Aha!"-feeling was incredible when I finally got it, and it was actually fun to play with, so I'm looking to rediscover the lost art of Haskell.</p>
<p>I'm familiar with Ruby and its functional programming tricks, so I think I'm not completely in the dark. Any links?</p>
http://stackoverflow.com/questions/38235/ironruby-performance2IronRuby performance?wvdschel2008-09-01T18:15:21Z2009-08-21T05:55:06Z
<p>While I know IronRuby isn't quite ready for the world to use it, I was wondering if anyone here tried it and tested how well it faired against the other Rubies out there in terms of raw performance?</p>
<p>If so, what are the results, and how did you go about measuring the performance (which benchmarks etc)?</p>
<p><strong>Edit</strong>: The IronRuby team maintains a site on how they compare to Ruby MRI 1.8 at <a href="http://ironruby.info/" rel="nofollow">http://ironruby.info/</a>. Below the spec pass rate table, they also have some information on how IronRuby performs on these specs. This table is not continuously updated, but I assume they update it often enough (you can see the last update at the top of the page).</p>
http://stackoverflow.com/questions/18450/is-mono-ready-for-prime-time124Is Mono ready for prime time?wvdschel2008-08-20T17:57:44Z2009-07-16T14:59:09Z
<p>Has anyone used Mono, the open source .NET implementation on a large or medium sized project? I'm wondering if it's ready for real world, production environments. Is it stable, fast, compatible, ... enough to use? Does it take a lot of effort to port projects to the Mono runtime, or is it really, <em>really</em> compatible enough to just take of and run already written code for Microsoft's runtime?</p>
http://stackoverflow.com/questions/1121970/setting-bash-command-line-variable-to-start-my-application/1122044#11220440Answer by wvdschel for Setting bash command-line variable to start my applicationwvdschel2009-07-13T21:02:28Z2009-07-13T21:02:28Z<p>As an alternative to the modification of $PATH mentioned earlier, you could also copy or link your executable in one of the directories already in your $PATH. more specifically, <code>/usr/local/bin/</code> is available on most UNIX system for pretty much this purpose (installing software outside the default package management of the operating system).</p>
http://stackoverflow.com/questions/1110152/breaking-aes-encryption-using-decrypted-data2Breaking AES encryption using decrypted datawvdschel2009-07-10T15:16:07Z2009-07-10T18:59:44Z
<p>After a discussion about encryption, a friend of mine challenged me to crack a file he encrypted using AES with a 128bit key.</p>
<p>I know the file was originally a GIF image, so it should start with 'GIF8'. I'm wondering if it is possible to derive the password from this knowledge in a reasonable time (ie. a week or less).</p>
<p>Stealing the key in any way other than analyzing the encrypted file is not possible, as it defeats the point of the challenge.</p>
<p>If so, pointers would be welcome. I failed to found a decent flow-chart-like description of the encryption flow of the first block. I remember I had one from a course at Uni, but of course, it's nowhere to be found.</p>
http://stackoverflow.com/questions/1109990/persistent-hashtable-for-ruby-programs/1110086#11100861Answer by wvdschel for Persistent hashtable for Ruby programs?wvdschel2009-07-10T15:06:06Z2009-07-10T15:12:58Z<p>If the data is small enough to keep in memory while the program is running, and serialize/deserialize when on exit/startup, you could try YAML. It comes default with Ruby and can store any kind of object.</p>
<pre><code>require 'yaml'
hash = { :foo => 'bar', :meh => 42 }
yaml_data = hash.to_yaml
puts yaml_data
</code></pre>
<p>Will give you</p>
<pre><code>---
:meh: 42
:foo: bar
</code></pre>
<p>to load, simply do:</p>
<pre><code>hash = YAML.load(yaml_data)
</code></pre>
http://stackoverflow.com/questions/1023502/how-would-you-improve-dalvik-androids-virtual-machine/1023516#10235160Answer by wvdschel for How would you improve Dalvik? Android's Virtual Machinewvdschel2009-06-21T09:24:06Z2009-06-21T09:24:06Z<p>One of the main problems with Dalvik is performance, which is terrible I heard, but one of the things I would like most is the addition of more languages.</p>
<p>The JVM has had community projects getting Python and Ruby running on the platform, and even special languages such as Scala, Groovy and Closure developed for it. It would be nice to see these (and/or others) on the Dalvik platform as well. Sun has been working on the Da Vinci machine as well, a dynamic typing extension of the JVM, which indicates a major shift away from the "one language fits all" philosophy Sun has followed over the last 15 years.</p>
http://stackoverflow.com/questions/1023499/good-computer-science-thesis/1023507#10235071Answer by wvdschel for Good Computer Science Thesiswvdschel2009-06-21T09:18:44Z2009-06-21T09:18:44Z<p>This is something you really should think of yourself. What aspects of computer science interest you most? Usually, if you can't think of a thesis subject, you're not all that motivated to do a good job either...</p>
<p>Also, this question is not really VB.NET related, is it?</p>
http://stackoverflow.com/questions/990166/is-there-too-much-magic-with-rails-for-a-beginner/990222#9902222Answer by wvdschel for Is there too much Magic with Rails for a beginner?wvdschel2009-06-13T07:29:23Z2009-06-13T15:10:01Z<p>I was put off by Rails' magic at first as well, since there is a lot going on in the background. I then learned Ramaze, which has less magic in a default app, but allows you to add any magic you happen to need.</p>
<p>However, I've experienced that Rails, with all its magic, is better than anything else I've tried, if you're going to be working on it with more than one developer. It's enforcement of conventions and best practices improve maintainability, while it's magic allows you to focus on the task at hand, and not the grunt work of building a webapp skeleton.</p>
http://stackoverflow.com/questions/954199/recommended-carts-for-rails-e-commerce-app/954432#9544323Answer by wvdschel for Recommended Carts for Rails e-commerce app.wvdschel2009-06-05T05:54:32Z2009-06-05T05:54:32Z<p>I would develop your own cart, as this gives you most flexibility. Also, developing a cart is not technically challenging and well documented (it is the canonical example of Rails development). It won't take you more than a few hours at the worst, and at least you'll know that when somethings goes wrong, it's gone wrong in code you wrote and understand.</p>
<p>I'm not saying you should always reinvent the wheel, but in this case it's just not worth adding an extra dependency.</p>
http://stackoverflow.com/questions/920201/why-is-ruby-so-much-slower-on-windows/938844#9388442Answer by wvdschel for Why is ruby so much slower on windows?wvdschel2009-06-02T10:30:22Z2009-06-02T10:30:22Z<p>The performance bump is not 300%, in general, instead, it is closer to 50%-100%. Casual Jim's explanation is one of the reasons why data processing scripts are slower on Windows compared to Unix-variants and Linux.</p>
<p>In the more general case, the only thing I can think of is that Ruby development is Linux-centered, which has lead to many Unix-isms in the way Ruby was built. Also, since most active developers are not Windows users, very little Windows optimization expertise is present in the team, and most performance optimizing decisions are focused on making things faster on Unix systems.</p>
<p>A specific example of this is that Ruby uses copy-on-write parameter passing, which, according to what I read, can't be done properly on Windows, causing a lot of overhead in method calls.</p>
<p>I can't seem to figure out though, what Casual Jim did to deserve the -8 vote.</p>
http://stackoverflow.com/questions/323323/can-someone-tell-me-what-strong-typing-and-weak-typing-means-and-which-one-is-bet/323334#323334-1Answer by wvdschel for Can someone tell me what Strong typing and weak typing means and which one is better?wvdschel2008-11-27T09:44:07Z2008-11-27T09:44:07Z<p>Weak typing means that you don't specify what type a variable is, and strong typing means you give a strict type to each variable.</p>
<p>Each has there advantages, with weak typing (or dynamic typing, as it is often called), being more flexible and requiring less code and typing from the programmer. Strong typing, on the other hand, requires more work from the developer, but in return it can alert you of many mistakes when compiling your code, before you run it. Dynamic typing may delay the discovery of these simple problems until the code is executed.</p>
<p>Depending on the task at hand, weak typing may be better than strong typing, or vice versa, but it is mostly a matter of taste. Weak typing is commonly used in scripting languages, while strong typing is used in most compiled languages.</p>
http://stackoverflow.com/questions/38615/up-to-date-libfoundation-alternative2Up-to-date libFoundation alternativewvdschel2008-09-01T23:32:26Z2008-11-10T15:08:36Z
<p>I was wondering if there is a more up to date alternative to libFoundation (which hasn't been updated since 2001) to develop modern cross-platform Obj-C applications.</p>
<p>I don't need appKit features, only Foundation is needed.</p>
<p>I know about GNUStep, but I've only heard bad things about it. <a href="http://www.cocotron.org/" rel="nofollow">The Cocotron</a> seems nice, but doesn't seem like it has proper Linux support at the moment, which is a must.</p>
<p>Have any of you used the above? How did you like it? Do you know any other implementations?</p>
http://stackoverflow.com/questions/51320/find-all-drive-letters-in-java6Find all drive letters in Javawvdschel2008-09-09T07:01:14Z2008-11-01T19:17:38Z
<p>For a project I'm working on. I need to look for an executable on the filesystem. For UNIX derivatives, I assume the user has the file in the mighty $PATH variable, but there is no such thing on Windows.</p>
<p>I can safely assume the file is at most 2 levels deep into the filesystem, but I don't know on what drive it will be. I have to try all drives, but I can't figure out how to list all available drives (which have a letter assigned to it).</p>
<p>Any help?</p>
<p><strong>EDIT:</strong> I know there is a %PATH% variable, but it is not as integrated as in UNIX systems. For instance, the application I'm looking for is OpenOffice. Such software would not be in %PATH%, typically.</p>
http://stackoverflow.com/questions/56824/travelling-salesman-problem/56848#568484Answer by wvdschel for Travelling salesman problem..wvdschel2008-09-11T15:14:06Z2008-10-07T00:02:08Z<p>If you solved TSP in college, you'd be living the life in some sunny island right now. No, scratch that - you'd <strong>own</strong> some sunny island. TSP is NP-complete, which means we can only approach the optimal result in acceptable time for bigger problems.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/45605#456052Answer by wvdschel for Computer Language puns and jokeswvdschel2008-09-05T12:02:07Z2008-09-21T19:50:53Z<p>From QDB <a href="http://www.qdb.us/11841" rel="nofollow">#11841</a></p>
<p><iNoah> "hi, I'm a lisp virus. please read me with an emacs mail reader and eval me."<br>
<moof> (defun email-virus-hook 'my-virus)<br>
<iNoah> s/defun /add-hook '/<br>
<kermit> Noah takes defun out of everything.<br>
http://stackoverflow.com/questions/56315/d-programming-language-in-the-real-world24D Programming Language in the real world?wvdschel2008-09-11T11:33:05Z2008-09-19T06:04:42Z
<p>Is anyone out there using D for real world applications? If so, what are you using it for? I can't seem to find anything big on the web written in D.</p>
<p>Despite the lack of known big users, D seems like a very promissing language to me, and according to <a href="http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html" rel="nofollow">TIOBE</a>, it's fairly popular.</p>
http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/63717#637170Answer by wvdschel for Confessions of your worst WTF Moment. (What not to do.)wvdschel2008-09-15T15:04:56Z2008-09-15T15:04:56Z<p>Similar to <a href="http://stackoverflow.com/questions/63668/what-is-your-worst-wtf-moment-what-not-to-do#63692">MikeReedell</a>, I did an <code>rm -rf</code>, but instead of typing in the pathname, I was just wildly bashing tab, relying on bash completion. Which was missing. And soon, so was <code>/usr/</code>.</p>
http://stackoverflow.com/questions/62921/process-vs-threads/62980#629804Answer by wvdschel for Process vs Threadswvdschel2008-09-15T13:43:41Z2008-09-15T14:03:03Z<p>Threads are more light weight, and for the making several "workers" just to utilize all availabe CPUs or cores, you're better of with threads.</p>
<p>When you need the workers to be better isolated and more robust, like with most servers, go with sockets. When one thread crashes badly, it usually takes down the entire process, including other threads working in that process. If a process turns sour and dies, it doesn't touch any other process, so they can happily go on with their bussiness as if nothing happened.</p>
http://stackoverflow.com/questions/60629/how-do-you-keep-your-keyboard-clean/60633#606330Answer by wvdschel for How do you keep your keyboard clean?wvdschel2008-09-13T15:52:59Z2008-09-13T16:03:13Z<p>I also pop of the keys of my keyboard and clean each key seperately once I find they are getting dirty. This takes about 45 minutes or an hour to do properly, including the tray. I think this isn't too bad given I use my keyboard for 8 hours a day most of the time...</p>
http://stackoverflow.com/questions/59342/kenai-invites-where-to-get-them/60087#600870Answer by wvdschel for Kenai invites: where to get them?wvdschel2008-09-12T22:33:17Z2008-09-12T22:47:28Z<p>I've managed to score an invite, so nlucaroni, if you give me your email, I'll invite you. Mine is <img src="http://fixnum.org/email.gif">, mail it there, to avoid spamming.</p>
http://stackoverflow.com/questions/59342/kenai-invites-where-to-get-them2Kenai invites: where to get them?wvdschel2008-09-12T15:38:25Z2008-09-12T22:47:28Z
<p>Recently, Sun launched a new hosting site, like SourceForge and GitHub, but for Mercurial. However, for the time being, it's invite-only.</p>
<p>Being a Hg user, I'm very interested in getting an invite, but I have no idea where to find them. Are only Sun-employees given invitations to hand out? What can one do to earn such an invite?</p>
http://stackoverflow.com/questions/56315/d-programming-language-in-the-real-world/60092#600920Answer by wvdschel for D Programming Language in the real world?wvdschel2008-09-12T22:37:04Z2008-09-12T22:37:04Z<p><a href="http://beta.stackoverflow.com/users/3010/vextasy" rel="nofollow">@vextasy</a>:
Indeed, although it has had support for functional gems like closures and delegates for quite a while now, it seems to be shifting towards a Ruby-like paradigm. Which is great from my point of view. However, the lack of large scale users is somewhat strange, which is why I posted this question. The community is very much alive, and the people I've talked to have been very helpful in the past.</p>
http://stackoverflow.com/questions/60070/is-there-a-childs-pid/60075#600753Answer by wvdschel for Is there a child's PID?wvdschel2008-09-12T22:12:33Z2008-09-12T22:12:33Z<p>When you use <code>fork()</code> on *nix, the return value is the PID of the child in the parent process, and 0 in the child process. That's one way to find out.</p>
<p>Not sure if they keep track of the "tree" of process spawning, I think it depends on what OS you use, but since when you kill bash (or any shell), all running children are also killed, I think UNIX like systems do keep track of this.</p>
http://stackoverflow.com/questions/56266/using-silverlight-for-an-entire-website/56434#564341Answer by wvdschel for Using Silverlight for an entire website?wvdschel2008-09-11T12:37:20Z2008-09-11T12:37:20Z<p>Using a plugin for your website makes it slow, and requires the user to have the plugin installed. Silverlight for instance rules out all Linux user. Also, since Silverlight is pretty new, there is no telling how committed Microsoft will be to keep the platform alive if it doesn't pick up soon.</p>
<p>I'd stick to plain old HTML with server side scripting.</p>
<p>Also, for public websites: Flash and Silverlight can't be indexed by any search engine, so good luck with writing tons of metadata if you want any visitors at all.</p>
http://stackoverflow.com/questions/56391/automatically-checking-for-a-new-version-of-my-application/56405#564050Answer by wvdschel for Automatically checking for a new version of my applicationwvdschel2008-09-11T12:25:02Z2008-09-11T12:25:02Z<p>Just put an (XML) file on your server with the version number of the latest version, and a URL to the download the new version from. Your application can then request the XML file, look if the version differs from its own, and take action accordingly.</p>
http://stackoverflow.com/questions/1327281/j2me-application-doesnt-work-on-mobile-phone/1327304#1327304Comment by wvdschel on j2me application doesn't work on Mobile Phonewvdschel2009-08-25T12:11:08Z2009-08-25T12:11:08ZYou sure that it's not just a permission issue? Starting a data connection is often restricted. My phone keeps asking me every time I connect.http://stackoverflow.com/questions/1250643/java-how-to-wait-for-all-threads-to-finish/1250657#1250657Comment by wvdschel on Java: How to wait for all threads to finish?wvdschel2009-08-09T08:00:03Z2009-08-09T08:00:03ZI find this solution more elegant than the others, it looks like it was made for this purpose, and it's simple and straightforward.http://stackoverflow.com/questions/49274/safe-integer-parsing-in-ruby/53359#53359Comment by wvdschel on Safe integer parsing in Rubywvdschel2009-08-08T22:21:29Z2009-08-08T22:21:29ZThat's what I'd expect from the conversion thoughhttp://stackoverflow.com/questions/1110152/breaking-aes-encryption-using-decrypted-data/1110208#1110208Comment by wvdschel on Breaking AES encryption using decrypted datawvdschel2009-07-10T15:32:28Z2009-07-10T15:32:28ZBut that doesn't not apply to the first block?http://stackoverflow.com/questions/1110152/breaking-aes-encryption-using-decrypted-dataComment by wvdschel on Breaking AES encryption using decrypted datawvdschel2009-07-10T15:22:51Z2009-07-10T15:22:51ZStealing the key is not an option, that would defeat the purpose of the challenge.http://stackoverflow.com/questions/1110152/breaking-aes-encryption-using-decrypted-dataComment by wvdschel on Breaking AES encryption using decrypted datawvdschel2009-07-10T15:20:56Z2009-07-10T15:20:56ZThen I'm hoping it is :)http://stackoverflow.com/questions/988537/repl-console-application-service/988579#988579Comment by wvdschel on REPL console application servicewvdschel2009-06-13T07:33:18Z2009-06-13T07:33:18ZYep, this is the most secure, and is often used by professional hosters as well.http://stackoverflow.com/questions/990166/is-there-too-much-magic-with-rails-for-a-beginner/990194#990194Comment by wvdschel on Is there too much Magic with Rails for a beginner?wvdschel2009-06-13T07:26:00Z2009-06-13T07:26:00ZYes. As of PHP 5.3, you should use GOTO instead: <a href="http://us2.php.net/manual/en/control-structures.goto.php" rel="nofollow">us2.php.net/manual/en/…</a>http://stackoverflow.com/questions/954302/how-to-make-a-programme-continue-to-run-as-root-after-log-out-from-ssh/954319#954319Comment by wvdschel on how to make a programme continue to run as root after log out from ssh?wvdschel2009-06-05T05:59:45Z2009-06-05T05:59:45ZWhile screen is a mighty nice tool, nohup is probably better suited for this task. Screen is only needed when you require the program to be interactive, and to be able to go back to the application at a later time. To be entirely honest, I often find myself using screen for the exact same reason as the question above.http://stackoverflow.com/questions/954355/flex-project-eat-30-cpuComment by wvdschel on Flex project eat 30% CPU wvdschel2009-06-05T05:35:08Z2009-06-05T05:35:08ZAny ActionScript based tool does that for me. Air and Flash kill an entire CPU core on Linux, it seems.http://stackoverflow.com/questions/920201/why-is-ruby-so-much-slower-on-windowsComment by wvdschel on Why is ruby so much slower on windows?wvdschel2009-06-04T20:13:56Z2009-06-04T20:13:56ZThe current stable build (1.9.1) uses a new VM, called YARV, which is a JIT engine.http://stackoverflow.com/questions/951021/javascript-sleep/951033#951033Comment by wvdschel on Javascript sleepwvdschel2009-06-04T14:51:10Z2009-06-04T14:51:10ZI sometimes miss a real "sleep", but messing around with setTimeout is still better than actively waiting (like the above while loop). A real sleep function does however not need to freeze the JavaScript engine, but a busy-wait would max out a single CPU core. (And eat up precious battery time of mobile users)http://stackoverflow.com/questions/950972/how-do-you-check-if-a-pointer-in-c-is-of-a-certain-type/950999#950999Comment by wvdschel on How do you check if a pointer, in C, is of a certain type?wvdschel2009-06-04T14:48:00Z2009-06-04T14:48:00ZLike Mehrdad said, C doesn't have ANY kind of runtime type informationhttp://stackoverflow.com/questions/42934/whats-with-the-love-of-dynamic-languages/42951#42951Comment by wvdschel on What's with the love of dynamic Languageswvdschel2009-06-02T18:32:02Z2009-06-02T18:32:02ZIf you don't see it, it doesn't bother you. This is like saying functional languages are not deterministic because you don't know how instructions between threads are interleaved. It's true, but it is not noticable to users or programmers, so it just doesn't matter.http://stackoverflow.com/questions/38235/ironruby-performanceComment by wvdschel on IronRuby performance?wvdschel2009-06-02T16:14:19Z2009-06-02T16:14:19ZNo, it is not. I've seen updated numbers and I'll update the thread as soon as I remember where you can find them.