User daddz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T17:37:52Zhttp://stackoverflow.com/feeds/user/8942http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1673583/the-practical-haskell-tutorial-for-a-programmer-coming-from-the-imperative-univer/1673592#167359214Answer by daddz for The practical Haskell tutorial for a programmer coming from the imperative universedaddz2009-11-04T12:52:43Z2009-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#17667801Answer by daddz for Easy Ruby libraries to understand for beginnerdaddz2009-11-19T21:43:47Z2009-11-19T21:43:47Z<p>You could check out <a href="http://github.com/search?q=ruby&x=0&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#17039311Answer by daddz for Top 3 improvements that Ruby offers?daddz2009-11-09T21:24:03Z2009-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-resources2Learning C: Online resourcesdaddz2009-11-06T17:28:33Z2009-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-articles9Simple OCR programming tutorials/articlesdaddz2009-08-16T12:36:42Z2009-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-problem0Porting from Ruby 1.8.5 to 1.8.6 | Thread problemdaddz2009-09-25T13:07:54Z2009-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, &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 <= 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-2Answer by daddz for How do I create CGI scripts with Perl?daddz2009-09-17T08:21:10Z2009-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#13256751Answer by daddz for self hosting my open source programdaddz2009-08-25T01:55:29Z2009-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#10123110Answer by daddz for run command in parent shell from rubydaddz2009-06-18T12:14:31Z2009-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#10118463Answer by daddz for How can I accurately program an automated "click" on Windows?daddz2009-06-18T09:52:49Z2009-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#10114412Answer by daddz for Python - Things one MUST avoiddaddz2009-06-18T08:23:42Z2009-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#9272743Answer by daddz for [Ruby] Converting Array of Strings to Array of Floatsdaddz2009-05-29T17:51:29Z2009-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 << line.scan(/\d+/)
end
end
tmp = []
ft.each do |line|
line.each do |number|
tmp << 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#86885915Answer by daddz for What Buzzwords Should We Be Wary Ofdaddz2009-05-15T14:03:12Z2009-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#8489950Answer by daddz for What free and/or open source tools are available for project and process management?daddz2009-05-11T16:48:28Z2009-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#7716901Answer by daddz for Rhyme in PHPdaddz2009-04-21T08:52:50Z2009-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#7652943Answer by daddz for What are some good websites with screencasts on software development topics?daddz2009-04-19T11:51:48Z2009-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#7293391Answer by daddz for Xampp - Redirect external url to localhostdaddz2009-04-08T10:06:55Z2009-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#7032451Answer by daddz for How do you become a freelance developer?daddz2009-03-31T21:57:23Z2009-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#69088510Answer by daddz for Real world applications of erlangdaddz2009-03-27T18:12:11Z2009-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#6642360Answer by daddz for How does Simple XML use the [] operator?daddz2009-03-19T21:59:36Z2009-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#6426860Answer by daddz for What Mercurial DVCS hosting would you recommend for a small open source project?daddz2009-03-13T13:24:26Z2009-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-extensions0Integrating models and views in new Sinatra extensionsdaddz2009-03-05T15:34:20Z2009-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#6278791Answer by daddz for Next step after PHP: Perl or Python?daddz2009-03-09T20:23:34Z2009-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#61524712Answer by daddz for How to do version numbers?daddz2009-03-05T15:25:27Z2009-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#4849550Answer by daddz for Any Good Resources For Getting Started With Barcode Programming?daddz2009-01-27T19:54:40Z2009-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#4575972Answer by daddz for what is the best method to build "multilingual" script in php?daddz2009-01-19T13:36:46Z2009-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#4208581Answer by daddz for How to install libraries?daddz2009-01-07T15:58:30Z2009-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#3944843Answer by daddz for How do you talk SQL directly to MySQL from Ruby?daddz2008-12-26T23:57:32Z2008-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#3557880Answer by daddz for Save a deque in a text filedaddz2008-12-10T11:40:00Z2008-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#28378011Answer by daddz for Finding someone's age in SQLdaddz2008-11-12T12:21:07Z2008-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)) > (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-univerComment by daddz on The practical Haskell tutorial for a programmer coming from the imperative universedaddz2009-12-20T20:44:28Z2009-12-20T20:44:28ZI added another tutorial you might be interested inhttp://stackoverflow.com/questions/1689085/learning-c-online-resourcesComment by daddz on Learning C: Online resourcesdaddz2009-11-06T18:05:28Z2009-11-06T18:05:28ZI cleared that a bit up with "too old"http://stackoverflow.com/questions/1551157/knights-tour-using-a-neural-networkComment by daddz on Knight's Tour using a Neural Networkdaddz2009-10-13T08:31:40Z2009-10-13T08:31:40Zcould you post your final solution? could be helpful for some othershttp://stackoverflow.com/questions/1477190/porting-from-ruby-1-8-5-to-1-8-6-thread-problem/1477296#1477296Comment by daddz on Porting from Ruby 1.8.5 to 1.8.6 | Thread problemdaddz2009-09-25T13:39:04Z2009-09-25T13:39:04ZYou were right. How could I oversee that. Thanks.http://stackoverflow.com/questions/1437298/how-do-i-create-cgi-scripts-with-perl/1437440#1437440Comment by daddz on How do I create CGI scripts with Perl?daddz2009-09-17T17:44:30Z2009-09-17T17:44:30ZWith 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#500481Comment by daddz on What are some good resources for programming Artificial Intelligence?daddz2009-09-17T08:26:09Z2009-09-17T08:26:09Zthe links on that page are brokenhttp://stackoverflow.com/questions/90272/game-programming-library-c/1085348#1085348Comment by daddz on Game Programming Library C++daddz2009-08-25T12:20:58Z2009-08-25T12:20:58Zyou didnt provide a link!?http://stackoverflow.com/questions/1284214/simple-ocr-programming-tutorials-articles/1284237#1284237Comment by daddz on Simple OCR programming tutorials/articlesdaddz2009-08-16T14:46:50Z2009-08-16T14:46:50ZI 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-programmingComment by daddz on Where to start with freelance Programming?daddz2009-06-19T09:58:29Z2009-06-19T09:58:29ZCheck out the related questions. There is plenty of informationhttp://stackoverflow.com/questions/765229/what-are-some-good-websites-with-screencasts-on-software-development-topics/765247#765247Comment by daddz on What are some good websites with screencasts on software development topics?daddz2009-04-19T13:53:35Z2009-04-19T13:53:35Zseems like Best Tech Videos has a problem right now. I get 403http://stackoverflow.com/questions/615291/integrating-models-and-views-in-new-sinatra-extensions/638979#638979Comment by daddz on Integrating models and views in new Sinatra extensionsdaddz2009-03-12T20:11:27Z2009-03-12T20:11:27ZNot 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#616631Comment by daddz on Looking for interesting topic from neural networks area.daddz2009-03-05T21:28:03Z2009-03-05T21:28:03ZCan 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#528181Comment by daddz on Which freeware apps / utilities do you use to boost your productivity?daddz2009-02-09T13:59:55Z2009-02-09T13:59:55Zthese apps kick asshttp://stackoverflow.com/questions/420838/how-to-install-librariesComment by daddz on How to install libraries?daddz2009-01-07T15:56:06Z2009-01-07T15:56:06ZCould you specify your OS? (Win, Linux, Mac)http://stackoverflow.com/questions/148438/free-erlang-screencasts-tutorial-series/149407#149407Comment by daddz on Free Erlang Screencasts/Tutorial seriesdaddz2008-09-29T16:28:59Z2008-09-29T16:28:59ZThat looks like a nice one. Thanks!