Project Euler "is a series of challenging mathematical/computer programming problems that will require more than just mathematical insights to solve. Although mathematics will help you arrive at elegant and efficient methods, the use of a computer and programming skills will be required to solve most problems."
Lot’s of programmers recently have been using Project Euler as a form of ’ Code Kata: ’ a philosophy that believes that greatness comes through diligent practicing. Steve Yegge written on the subject as well as Kathy Sierra . The idea is that you can be insanely great at anything if you practice at it. Sure, some people are natural geniuses — and you will never be better then them. But if you want to, you can be in the top 1% of learned people on any particular subject.
I’m not sure if I believe them, but heck, i think that the idea inspires lots of mediocre programmers ( like myself ) to wake up each day and learn...
Content suppressed by ://URLFAN, for full article visit source
Related archived posts

RubyFrom: forums.mystyle.com
Post Date: 2008-11-08 19:00:24
I need encouragement and would like to know if it is possible to e-mail Ruby....
more 
Re: Hi Everybody ... this is RubyFrom: forums.mystyle.com
Post Date: 2008-11-09 08:58:07
I am so impressed by your spirit and your beauty. Don’t ever let anyone suggest that you aren’t beautiful. I am not obese, but I do have mental issues that are equally debilitating and potentially as fatal. I struggle every day trying not to just give......
more 
Re: Hi Everybody ... this is RubyFrom: forums.mystyle.com
Post Date: 2008-11-09 16:33:57
I am just so excited for the show tonight! I have a good 100-150 pounds to lose, and it is so inspiring to see someone who is going to do it without being in some contest or without surgery. I can’t wait!!...
more 
Project Euler - FriendFeedFrom: friendfeed.com
Post Date: 2008-11-09 22:53:47
A website dedicated to the fascinating world of mathematics and programming re:...
more 
Math.jsFrom: rolandog.com
Post Date: 2008-11-09 23:18:26
He estado desarrollando una librera de JavaScript por casi un mes. Esto es a raz de que estoy resolviendo los problemas de Project Euler utilizando ECMAScript (JavaScript). Para incentivarme a darle seguimiento, abr una pgina de este proyecto en Google Code … y opt por llamar a mi cra intelectual ‘Math.js’ .
El propsito de hacer esa librera es aadir funcionalidad al lenguaje: factoriales, manejar nmeros enteros enormes, o inclusive factorizar algn nmero.
Cr...
more 
PsycoFrom: blog.gotbrain.de
Post Date: 2008-11-10 07:17:12
Ich bin schon eine Weile begeistert aktiv beim Project Euler . Die Sprache meiner Wahl ist (natürlich) Python.
Bei einigen Aufgaben war mir allerdings die Geschwindigkeit von cPython zu gering und ich bin auf C ausgewichen. Nun bin ich aber auf ein Projekt gestoßen, welches eine Art JIT (Just-in-Time Compiler) für Python darstelt. Das Ganze nennt sich Psyco , lässt sich ohne Änderungen am Sourcecode einfach als Modul einbinden und haut besonders bei so Aufgaben, wie sie eben auf Proj...
more
More posts from www.codingwithoutcomments.com

When is multi-threading not a good idea?From: codingwithoutcomments.com
Post Date: 2008-09-21 20:23:14
"When all you have is a hammer, everything looks like a nail."
I was recently working on an application that sent and received messages over Ethernet and Serial. I was then tasked to add the monitoring of DIO discretes. I throught,
"No reason to interrupt the main thread which is involved in message processing, I’ll just create another thread that monitors DIO."
This decision, however, proved to be poor . Sometimes the main thread would be interrupted between a Send and a Receiv...
more 
(Disappointing) Thoughts on CyberResearch "H" Series DIO Cards OR Reading and Writing with the HDIO ISO32LUFrom: codingwithoutcomments.com
Post Date: 2008-09-14 15:32:09
The last few days I’ve been working with CyberResearch ’s HDIO ISO32LU Low Profile PCI Digital I/O Board . My mission? Easy. Read and Write a few bits of DIO. How hard can it be right? I thought that because I was familiar with CyberResearch’s PCIDAQ1210 , getting up and going with the HDIO would be easy. I thought 30 minutes, max. It’s DIO. How hard can it be? Hard enough it seems.
Bad Programming Examples
The HDIO software provides you with a multitudinou...
more 
Windows Serial Programming - Tips and TricksFrom: codingwithoutcomments.com
Post Date: 2008-09-10 19:43:12
The last couple days I have been working on Serial Communications (RS-422 and RS-485) between a Windows PC and an Embedded FPGA Processor. From start to finish, synchronizing the data transfer between the two systems only took about half a day. When I first started using serial communications a few years ago, it took me a week to establish a good working link. Between then and now, I’ve noticed a few tips and tricks along the way which has helped get communication between two d...
more 
Project Euler - Problem 4 - PalindromesFrom: codingwithoutcomments.com
Post Date: 2008-09-09 19:12:53
Project Euler “is a series of challenging mathematical/computer programming problems that will require more than just mathematical insights to solve. Although mathematics will help you arrive at elegant and efficient methods, the use of a computer and programming skills will be required to solve most problems.”
I’ve been working through some of the projects on the website to help teach myself Ruby in my space time.
Problem 4 of Project Euler states the following:
A palind...
more