User daddz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:37:52Z http://stackoverflow.com/feeds/user/8942 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1673583/the-practical-haskell-tutorial-for-a-programmer-coming-from-the-imperative-univer/1673592#1673592 14 Answer by daddz for The practical Haskell tutorial for a programmer coming from the imperative universe daddz 2009-11-04T12:52:43Z 2009-12-20T20:43:35Z <p>Definately <a href="http://book.realworldhaskell.org/read/" rel="nofollow">Real World Haskell</a>.</p> <p><a href="http://en.wikibooks.org/wiki/Haskell/YAHT" rel="nofollow">Yet another Haskell tutorial</a> may be useful too since it also follows a practical approach.</p> <p><strong>Edit:</strong></p> <p>Recently I discovered <a href="http://jonathan.tang.name/files/scheme%5Fin%5F48/tutorial/overview.html" rel="nofollow">Write Yourself a Scheme in 48 Hours</a> and it seems pretty much like what you want. The clou with this one is you learn some Scheme too.</p> http://stackoverflow.com/questions/1766768/easy-ruby-libraries-to-understand-for-beginner/1766780#1766780 1 Answer by daddz for Easy Ruby libraries to understand for beginner daddz 2009-11-19T21:43:47Z 2009-11-19T21:43:47Z <p>You could check out <a href="http://github.com/search?q=ruby&amp;x=0&amp;y=0" rel="nofollow">Github</a>. There are many Ruby projects from "very small" up to "way too much".</p> http://stackoverflow.com/questions/1703850/top-3-improvements-that-ruby-offers/1703931#1703931 1 Answer by daddz for Top 3 improvements that Ruby offers? daddz 2009-11-09T21:24:03Z 2009-11-09T21:24:03Z <ol> <li>Ruby is fun to read and write</li> <li>Blocks are even more fun</li> <li>RUBY IS JUST PURE FUN</li> </ol> <p>I'd say give it a try. I was once a PHP coder too and then switched to Ruby and never looked back. The only downside is the documentation which is clearly better in PHP (I would even say PHP has one of the best)</p> http://stackoverflow.com/questions/1689085/learning-c-online-resources 2 Learning C: Online resources daddz 2009-11-06T17:28:33Z 2009-11-08T13:08:03Z <p>Can you point me to some online resources?</p> <p>I couldn't find any good. Also the resources shouldnt be too old.</p> <p>There also wasn't any SO question covering this. Or atleast I didn't find it.</p> <p>Edit: Practical approaches would be very nice too. Something like Real World Haskell but just for C. Is there something like this?</p> <p>Edit2: With "too old" I mean that it should be from the 90s atleast.</p> <p>Thanks</p> http://stackoverflow.com/questions/1284214/simple-ocr-programming-tutorials-articles 9 Simple OCR programming tutorials/articles daddz 2009-08-16T12:36:42Z 2009-09-26T05:05:34Z <p>I'm interested in simple OCR methods and algorithms. And with simple I mean simple!</p> <p>Best would be a tutorial/article/documentation without dependencies on 3rd party librarys if that's even possible.</p> <p>I would really like to build up my knowledge from the ground up.</p> <p>The programming language doesn't matter.</p> <p>Thanks in advance!</p> <p><strong>Edit:</strong></p> <p>An interesting link I found in another question: <a href="http://ejohn.org/blog/ocr-and-neural-nets-in-javascript/" rel="nofollow">OCR and Neural Nets in JavaScript</a></p> <p>I especially like the python implemenation.</p> http://stackoverflow.com/questions/1477190/porting-from-ruby-1-8-5-to-1-8-6-thread-problem 0 Porting from Ruby 1.8.5 to 1.8.6 | Thread problem daddz 2009-09-25T13:07:54Z 2009-09-25T13:30:08Z <p>I'm trying to get a sample to work with Ruby 1.8.6. The problem is that the sample was written for Ruby 1.8.5.</p> <p>My assumption is that the problem lies in the way the Thread is called, or not called. This is the sample:</p> <pre><code>class Timer def initialize(resolution) @resolution = resolution @queue = [] Thread.new do while true dispatch sleep(@resolution) end end end def at(time, &amp;block) time = time.to_f if time.kind_of?(Time) @queue.push [time, block] end private def dispatch now = Time.now.to_f ready, @queue = @queue.partition{|time, proc| time &lt;= now } ready.each {|time, proc| proc.call(time) } end end timer = Timer.new(0.01) timer.at(Time.now + 3) { puts "Hello" } </code></pre> <p>I can't get it to work with 1.8.6 so I hope someone can show me how to make it compatible with 1.8.6</p> <p>Thanks</p> http://stackoverflow.com/questions/1437298/how-do-i-create-cgi-scripts-with-perl/1437440#1437440 -2 Answer by daddz for How do I create CGI scripts with Perl? daddz 2009-09-17T08:21:10Z 2009-09-17T17:44:41Z <p>As far as I understand your question, you say that you wrote your own web server and now want to implement CGI!?</p> <p>These links should help you:</p> <p><a href="http://hoohoo.ncsa.illinois.edu/cgi/interface.html" rel="nofollow">CGI Specification</a></p> <p><a href="http://markmail.org/message/ehp4ql7lokl54bsq" rel="nofollow">How to implement CGI in a Web Server</a></p> <p>Edit: Check the <a href="http://stackoverflow.com/revisions/1437298/list">original question</a> before downvoting me.</p> http://stackoverflow.com/questions/1325596/self-hosting-my-open-source-program/1325675#1325675 1 Answer by daddz for self hosting my open source program daddz 2009-08-25T01:55:29Z 2009-08-25T01:55:29Z <p><a href="http://www.redmine.org/" rel="nofollow">Redmine</a> is a nice alternative to trac.</p> http://stackoverflow.com/questions/1012303/run-command-in-parent-shell-from-ruby/1012311#1012311 0 Answer by daddz for run command in parent shell from ruby daddz 2009-06-18T12:14:31Z 2009-06-18T12:14:31Z <pre><code>#!/usr/bin/env ruby `../your_script` </code></pre> <p>Like this?</p> <p>Or start your script in the directory you want it to do something.</p> <p>Maybe I don't get your question. Provide some more details.</p> http://stackoverflow.com/questions/1011799/how-can-i-accurately-program-an-automated-click-on-windows/1011846#1011846 3 Answer by daddz for How can I accurately program an automated "click" on Windows? daddz 2009-06-18T09:52:49Z 2009-06-18T09:52:49Z <p>If you're not bound to a specific language you could have a look at <a href="http://www.autoitscript.com/autoit3/" rel="nofollow">AutoIt</a> which is made especially for things like this. I had good experiences with it for automating things like mouseclicks or keystrokes.</p> http://stackoverflow.com/questions/1011431/python-things-one-must-avoid/1011441#1011441 2 Answer by daddz for Python - Things one MUST avoid daddz 2009-06-18T08:23:42Z 2009-06-18T08:23:42Z <p>I would stop using deprecated methods in 2.6 so your app/script will be ready and easier to convert to python 3.</p> http://stackoverflow.com/questions/927242/ruby-converting-array-of-strings-to-array-of-floats/927274#927274 3 Answer by daddz for [Ruby] Converting Array of Strings to Array of Floats daddz 2009-05-29T17:51:29Z 2009-05-29T17:56:59Z <p>You should have a look at the format of "ft" after reading the file.</p> <p>Each line gets stored in another array so in fact "ft" looks something like this:</p> <pre><code>[["1","2"],["3","4"]] </code></pre> <p>So you have to do something like this:</p> <pre><code>ft = [] puts "File Name: #{ARGV[0]}" File.open(ARGV[0], "r") do |file| file.each_line do |line| ft &lt;&lt; line.scan(/\d+/) end end tmp = [] ft.each do |line| line.each do |number| tmp &lt;&lt; number.to_f end end puts tmp </code></pre> <p>This is just a guess since I don't know what your file format looks like.</p> <p>Edit:</p> <p>Here as a one-liner:</p> <pre><code>ft.flatten!.collect! { |i| i.to_f } </code></pre> http://stackoverflow.com/questions/868774/what-buzzwords-should-we-be-wary-of/868859#868859 15 Answer by daddz for What Buzzwords Should We Be Wary Of daddz 2009-05-15T14:03:12Z 2009-05-15T14:03:12Z <p>Cloud and Grid are some recent ones.</p> http://stackoverflow.com/questions/19958/what-free-and-or-open-source-tools-are-available-for-project-and-process-manageme/848995#848995 0 Answer by daddz for What free and/or open source tools are available for project and process management? daddz 2009-05-11T16:48:28Z 2009-05-11T16:48:28Z <p><a href="http://www.redmine.org/" rel="nofollow">Redmine</a>, might be worth a look.</p> http://stackoverflow.com/questions/771658/rhyme-in-php/771690#771690 1 Answer by daddz for Rhyme in PHP daddz 2009-04-21T08:52:50Z 2009-04-21T08:52:50Z <p>Besides the <a href="http://de.php.net/manual/en/function.soundex.php" rel="nofollow">soundex()</a> function ramonzoellner mentioned, there is another function called <a href="http://de.php.net/manual/en/function.levenshtein.php" rel="nofollow">levenshtein()</a> which calculates the <a href="http://en.wikipedia.org/wiki/Levenshtein%5Fdistance" rel="nofollow">levenshtein distance</a> between the two words. That may help you further.</p> http://stackoverflow.com/questions/765229/what-are-some-good-websites-with-screencasts-on-software-development-topics/765294#765294 3 Answer by daddz for What are some good websites with screencasts on software development topics? daddz 2009-04-19T11:51:48Z 2009-04-19T11:51:48Z <p><a href="http://showmedo.com/videotutorials/" rel="nofollow">ShowMeDo</a> is a nice site.</p> http://stackoverflow.com/questions/729287/xampp-redirect-external-url-to-localhost/729339#729339 1 Answer by daddz for Xampp - Redirect external url to localhost daddz 2009-04-08T10:06:55Z 2009-04-08T10:11:55Z <p>Two solutions come to my mind:</p> <ol> <li>Use relative URLs (preferred)</li> <li><p>Add your external URL to your hosts file which can be found either in</p> <p>C:\WINDOWS\system32\drivers\etc\hosts (Windows)</p> <p>or</p> <p>/etc/hosts (Linux)</p> <p>Just add this line: </p> <p>www.mysite.com localhost </p> <p>Maybe you have to use your servers ip instead of mysite.com, I'm not sure right now</p></li> </ol> http://stackoverflow.com/questions/703205/how-do-you-become-a-freelance-developer/703245#703245 1 Answer by daddz for How do you become a freelance developer? daddz 2009-03-31T21:57:23Z 2009-03-31T21:57:23Z <p>You could have a look at <a href="http://www.getacoder.com/" rel="nofollow">GetACoder</a> and start with some projects there.</p> http://stackoverflow.com/questions/690875/real-world-applications-of-erlang/690885#690885 10 Answer by daddz for Real world applications of erlang daddz 2009-03-27T18:12:11Z 2009-03-27T18:12:11Z <p>Have a look at <a href="http://couchdb.apache.org/" rel="nofollow">CouchDB</a></p> http://stackoverflow.com/questions/664221/how-does-simple-xml-use-the-operator/664236#664236 0 Answer by daddz for How does Simple XML use the [] operator? daddz 2009-03-19T21:59:36Z 2009-03-19T21:59:36Z <p>I guess it's the magic method <a href="http://de.php.net/manual/en/language.oop5.overloading.php#language.oop5.overloading.members" rel="nofollow">__get()</a></p> <p>Edit: I think I guessed wrong. Didn't know of the Array Access interface yet.</p> http://stackoverflow.com/questions/597822/what-mercurial-dvcs-hosting-would-you-recommend-for-a-small-open-source-project/642686#642686 0 Answer by daddz for What Mercurial DVCS hosting would you recommend for a small open source project? daddz 2009-03-13T13:24:26Z 2009-03-13T13:24:26Z <p><a href="http://www.sourceforge.net" rel="nofollow">sourceforge.net</a> just added Mercurial, Bazaar and Git support.</p> http://stackoverflow.com/questions/615291/integrating-models-and-views-in-new-sinatra-extensions 0 Integrating models and views in new Sinatra extensions daddz 2009-03-05T15:34:20Z 2009-03-12T14:49:49Z <p>So I would like to use the new possibility to create extensions for <a href="http://www.sinatrarb.com" rel="nofollow">Sinatra</a>.</p> <p>My Extension needs to integrate a model and some views/templates but I don't know how to or where to integrate them?</p> <p>Did anybody already built something more complex than the example from the documentation?</p> http://stackoverflow.com/questions/627721/next-step-after-php-perl-or-python/627879#627879 1 Answer by daddz for Next step after PHP: Perl or Python? daddz 2009-03-09T20:23:34Z 2009-03-09T20:23:34Z <p>Why isn't there Ruby on your list? Maybe you should give it a try.</p> http://stackoverflow.com/questions/615227/how-to-do-version-numbers/615247#615247 12 Answer by daddz for How to do version numbers? daddz 2009-03-05T15:25:27Z 2009-03-05T15:25:27Z <p>Get yourself some inspiration from Wikipedia: <a href="http://en.wikipedia.org/wiki/Versioning" rel="nofollow">"Software versioning"</a></p> http://stackoverflow.com/questions/484841/any-good-resources-for-getting-started-with-barcode-programming/484955#484955 0 Answer by daddz for Any Good Resources For Getting Started With Barcode Programming? daddz 2009-01-27T19:54:40Z 2009-01-27T19:54:40Z <p>Since you didnt specify any language, you should have a look at chapter 12 of <a href="http://book.realworldhaskell.org/read/barcode-recognition.html" rel="nofollow">Real World Haskell</a></p> <p>That may not be exactly what you want but could be interesting/helpful.</p> http://stackoverflow.com/questions/457586/what-is-the-best-method-to-build-multilingual-script-in-php/457597#457597 2 Answer by daddz for what is the best method to build "multilingual" script in php? daddz 2009-01-19T13:36:46Z 2009-01-19T13:36:46Z <p>I'd suggest <a href="http://en.wikipedia.org/wiki/Gettext" rel="nofollow">Gettext</a>.</p> <p>It's cross-platform, open-source, widely used and available for php: <a href="http://php.net/manual/en/intro.gettext.php" rel="nofollow">PHP Gettext</a></p> http://stackoverflow.com/questions/420838/how-to-install-libraries/420858#420858 1 Answer by daddz for How to install libraries? daddz 2009-01-07T15:58:30Z 2009-01-07T15:58:30Z <p>I guess you're running some kind of Linux. Just open your package manager and look for the librarys. Should be pretty easy</p> http://stackoverflow.com/questions/394316/how-do-you-talk-sql-directly-to-mysql-from-ruby/394484#394484 3 Answer by daddz for How do you talk SQL directly to MySQL from Ruby? daddz 2008-12-26T23:57:32Z 2008-12-26T23:57:32Z <p>You could check the <a href="http://rubyforge.org/projects/mysql-ruby/" rel="nofollow">mysql-ruby</a> gem.</p> <p>Here is a write-up on how to use it: <a href="http://www.kitebird.com/articles/ruby-mysql.html" rel="nofollow">Using the Ruby MySQL Module</a></p> <p>More can be found via google</p> http://stackoverflow.com/questions/355739/save-a-deque-in-a-text-file/355788#355788 0 Answer by daddz for Save a deque in a text file daddz 2008-12-10T11:40:00Z 2008-12-10T11:40:00Z <p>Some things that come to my mind:</p> <ul> <li>leave the file handle open (don't close the file everytime you wrote something)</li> <li>or write the file every n items and catch a close signal to write the current non-written items</li> </ul> http://stackoverflow.com/questions/283764/finding-someones-age-in-sql/283780#283780 11 Answer by daddz for Finding someone's age in SQL daddz 2008-11-12T12:21:07Z 2008-11-12T12:26:43Z <p>Check out this article: <a href="http://www.kodyaz.com/articles/calculate-age-sql-code.aspx" rel="nofollow">How to calculate age of a person using SQL codes</a></p> <p>Here is the code from the article:</p> <pre><code>DECLARE @BirthDate DATETIME DECLARE @CurrentDate DATETIME SELECT @CurrentDate = '20070210', @BirthDate = '19790519' SELECT DATEDIFF(YY, @BirthDate, @CurrentDate) - CASE WHEN( (MONTH(@BirthDate)*100 + DAY(@BirthDate)) &gt; (MONTH(@CurrentDate)*100 + DAY(@CurrentDate)) ) THEN 1 ELSE 0 END </code></pre> http://stackoverflow.com/questions/1673583/the-practical-haskell-tutorial-for-a-programmer-coming-from-the-imperative-univer Comment by daddz on The practical Haskell tutorial for a programmer coming from the imperative universe daddz 2009-12-20T20:44:28Z 2009-12-20T20:44:28Z I added another tutorial you might be interested in http://stackoverflow.com/questions/1689085/learning-c-online-resources Comment by daddz on Learning C: Online resources daddz 2009-11-06T18:05:28Z 2009-11-06T18:05:28Z I cleared that a bit up with &quot;too old&quot; http://stackoverflow.com/questions/1551157/knights-tour-using-a-neural-network Comment by daddz on Knight's Tour using a Neural Network daddz 2009-10-13T08:31:40Z 2009-10-13T08:31:40Z could you post your final solution? could be helpful for some others http://stackoverflow.com/questions/1477190/porting-from-ruby-1-8-5-to-1-8-6-thread-problem/1477296#1477296 Comment by daddz on Porting from Ruby 1.8.5 to 1.8.6 | Thread problem daddz 2009-09-25T13:39:04Z 2009-09-25T13:39:04Z You were right. How could I oversee that. Thanks. http://stackoverflow.com/questions/1437298/how-do-i-create-cgi-scripts-with-perl/1437440#1437440 Comment by daddz on How do I create CGI scripts with Perl? daddz 2009-09-17T17:44:30Z 2009-09-17T17:44:30Z With original I mean this one: <a href="http://stackoverflow.com/revisions/1437298/list" rel="nofollow">stackoverflow.com/revisions/1437298/list</a> http://stackoverflow.com/questions/238277/what-are-some-good-resources-for-programming-artificial-intelligence/500481#500481 Comment by daddz on What are some good resources for programming Artificial Intelligence? daddz 2009-09-17T08:26:09Z 2009-09-17T08:26:09Z the links on that page are broken http://stackoverflow.com/questions/90272/game-programming-library-c/1085348#1085348 Comment by daddz on Game Programming Library C++ daddz 2009-08-25T12:20:58Z 2009-08-25T12:20:58Z you didnt provide a link!? http://stackoverflow.com/questions/1284214/simple-ocr-programming-tutorials-articles/1284237#1284237 Comment by daddz on Simple OCR programming tutorials/articles daddz 2009-08-16T14:46:50Z 2009-08-16T14:46:50Z I know about OpenCV but I wanted to start without a external library to understand the concepts. http://stackoverflow.com/questions/1017204/where-to-start-with-freelance-programming Comment by daddz on Where to start with freelance Programming? daddz 2009-06-19T09:58:29Z 2009-06-19T09:58:29Z Check out the related questions. There is plenty of information http://stackoverflow.com/questions/765229/what-are-some-good-websites-with-screencasts-on-software-development-topics/765247#765247 Comment by daddz on What are some good websites with screencasts on software development topics? daddz 2009-04-19T13:53:35Z 2009-04-19T13:53:35Z seems like Best Tech Videos has a problem right now. I get 403 http://stackoverflow.com/questions/615291/integrating-models-and-views-in-new-sinatra-extensions/638979#638979 Comment by daddz on Integrating models and views in new Sinatra extensions daddz 2009-03-12T20:11:27Z 2009-03-12T20:11:27Z Not exactly what I need but thanks for the tip. Haven't seen that list yet. http://stackoverflow.com/questions/616621/looking-for-interesting-topic-from-neural-networks-area/616631#616631 Comment by daddz on Looking for interesting topic from neural networks area. daddz 2009-03-05T21:28:03Z 2009-03-05T21:28:03Z Can you recommend a link to an article or something else? http://stackoverflow.com/questions/528152/which-freeware-apps-utilities-do-you-use-to-boost-your-productivity/528181#528181 Comment by daddz on Which freeware apps / utilities do you use to boost your productivity? daddz 2009-02-09T13:59:55Z 2009-02-09T13:59:55Z these apps kick ass http://stackoverflow.com/questions/420838/how-to-install-libraries Comment by daddz on How to install libraries? daddz 2009-01-07T15:56:06Z 2009-01-07T15:56:06Z Could you specify your OS? (Win, Linux, Mac) http://stackoverflow.com/questions/148438/free-erlang-screencasts-tutorial-series/149407#149407 Comment by daddz on Free Erlang Screencasts/Tutorial series daddz 2008-09-29T16:28:59Z 2008-09-29T16:28:59Z That looks like a nice one. Thanks!