User Bloodboiler - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T18:43:03Z http://stackoverflow.com/feeds/user/26595 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/309160/what-programming-language-should-be-taught-in-computer-science-101/1483109#1483109 0 Answer by Bloodboiler for What programming language should be taught in Computer Science 101? Bloodboiler 2009-09-27T08:35:00Z 2009-09-27T08:35:00Z <p>C++</p> <p>It has objects, pointers, templates and forces one to think about memory management. After that one can move to any language and hopefully become language agnostic. </p> <p>In my CS studies, the only taught language was C++ and on more advanced classes it was expected that you can do an assignment in Java, Python, SmallTalk, PHP etc. What ever language fits the course subject. </p> <p>I believe teaching the basics of programming (data structures etc.) with C++ is like how art students are taught to draw naked people with a stick of coal. The skill itself is not marketable but the deeper understanding it gives is important. </p> http://stackoverflow.com/questions/1422439/how-you-learn-new-technology-framework-language/1423983#1423983 3 Answer by Bloodboiler for How you learn New Technology/framework/language Bloodboiler 2009-09-14T21:19:37Z 2009-09-14T21:19:37Z <p>One of my pet peeves is that tutorials never show you how something actually should be used. Instead you get an overly simplistic example that is far from best-practice. </p> <p>To learn how stuff is supposed to be used, you have to do something close to realistic application. I tend to do something like this to learn about a language/framework:</p> <ol> <li><p>Read and experiment with tiny pieces of code.</p></li> <li><p>Try to make something small but useful/realistic while continually improving your use of the technology as you understand it better.</p></li> <li><p>Keeping close to realism and completeness in practice application is important for getting familiar enough to "breed contempt" for the technology. :-)</p></li> </ol> http://stackoverflow.com/questions/986594/experiences-of-creating-social-network-site-in-django 4 Experiences of creating Social Network site in Django Bloodboiler 2009-06-12T13:17:28Z 2009-09-13T12:08:50Z <p>I plan to sneak in some Python/Django to my workdays and a possible social network site project seems like a good possibility.</p> <p>Django itself seems excellent, but I am skeptical about the quality of large amount of Django apps that seem to be available.</p> <p>I would like to hear what kind of experiences you may have had with Django in creating social network type sites. Any experiences in using any of the Django powered social network "frameworks" would also be welcome.</p> http://stackoverflow.com/questions/1213328/how-can-i-get-the-uuid-module-for-python-2-4-3/1400264#1400264 0 Answer by Bloodboiler for how can I get the uuid module for python 2.4.3 Bloodboiler 2009-09-09T14:59:05Z 2009-09-09T14:59:05Z <p>To continue where Alex left off..</p> <ul> <li>Download the uuid-1.30.tar.gz from Alex's pypi link.</li> <li>unzip and untar.</li> <li>place the uuid.py to your application's python path (e.g., same dir with your own .py files)</li> </ul> http://stackoverflow.com/questions/1261300/alternative-upload-method-for-django-filefield/1329663#1329663 0 Answer by Bloodboiler for Alternative upload method for Django FileField Bloodboiler 2009-08-25T17:15:39Z 2009-08-25T17:15:39Z <p>I'm no expert in transferring huge files, but if your users need to be able do that without "UNIX incantations", I would suggest looking into creating a Java applet for it. It would be a lot of work, but then you could have proper progress bar etc.</p> http://stackoverflow.com/questions/1308034/admin-interface-editable-django-app-settings 1 Admin interface editable Django app settings Bloodboiler 2009-08-20T18:35:53Z 2009-08-20T19:16:13Z <p>Is there a good way provide user configurable app settings in Django admin?</p> <p>Basically I would like to have a nice forms where site owner can easily edit such one off information as his contact information, front page text content, etc. Sort of like a normal admin interface of a model, but limited to only one undeletable item in the model.</p> http://stackoverflow.com/questions/1008258/swingworker-cancellation-with-threadpoolexecutor/1308135#1308135 1 Answer by Bloodboiler for SwingWorker cancellation with ThreadPoolExecutor Bloodboiler 2009-08-20T18:53:40Z 2009-08-20T18:53:40Z <p>One way to create a Single thread ThreadPoolExecutor that only executes last incoming Runnable is to subclass a suitable queue class and override all adding methods to clear the queue before adding the new runnable. Then set that queue as the ThreadPoolExecutor's work queue. </p> http://stackoverflow.com/questions/226910/how-to-sanity-check-a-date-in-java 4 How to sanity check a date in java Bloodboiler 2008-10-22T18:04:08Z 2009-05-22T05:04:18Z <p>I find it curious that the most obvious way to create Date objects in Java has been deprecated and appears to have been "substituted" with not so obvious to use lenient calendar. So...</p> <p>How do you check that a date given as a combination of day, month and year is a valid date? For instance a date 2008-02-31 (as in yyyy-mm-dd) would be invalid date. </p> http://stackoverflow.com/questions/213757/why-do-people-use-java/213867#213867 30 Answer by Bloodboiler for Why do people use Java? Bloodboiler 2008-10-17T21:09:30Z 2009-04-27T12:40:08Z <p>Syntactic sugar, macros and "powerful" abstractions are all good if there are a lot of highly skilled coders to use them. In reality most programming is done by less skilled mortals while gurus handle the really hard stuff. Java is about as simple as programming language can be, so it is possible for a company to have hordes of adequate programmers to do simple coding tasks.</p> <p>Another thing about having a simple language is that there is good chance most people will use it the same way. With more complex languages, like C++, people end up using some subset of all possible features and may have difficulties understanding each other's code.</p> <p>From what I know about Java, I have the impression that most of the verbosity comes from "enterprisey" frameworks. Most things in Java would be simple if there was a simple API for often needed simple things.</p> http://stackoverflow.com/questions/751736/how-to-get-java-logger-output-to-file-by-default 0 How to get java Logger output to file by default Bloodboiler 2009-04-15T13:39:00Z 2009-04-15T13:59:46Z <p>Netbeans thoughtfully sprinkles Logger.getLogger(this.getClass().getName()).log(Level. [...] statements into catch blocks. Now I would like to point them all to a file (and to console).</p> <p>Every logging tutorial and such only me tells how to get a specific logger to output into a file, but I assume there is a better way than fixing every automatically generated logging statement? Setting a handler for some sort of root logger or something?</p> http://stackoverflow.com/questions/641906/how-can-i-make-sure-n-threads-run-at-roughly-the-same-speed/643408#643408 0 Answer by Bloodboiler for How can I make sure N threads run at roughly the same speed? Bloodboiler 2009-03-13T16:02:35Z 2009-03-13T16:02:35Z <p>I'm first to admit I'm not a threading expert, but this sounds like a very wrong way to approach simulation. As others have already commented having too many threads is computationally expensive. Furthermore, if you are planing to do what I think you are thinking of doing, your simulation may turn out to produce random results (may not matter if you are making a game).</p> <p>I'd go with a few worker threads used to calculate discrete steps of the simulation.</p> http://stackoverflow.com/questions/607410/group-by-like-row-filtering 1 Group by like row filtering Bloodboiler 2009-03-03T17:50:15Z 2009-03-03T18:16:50Z <p>Lets say I have a table describing cars with make, model, year and some other columns.</p> <p>From that, I would like to get one full row of each make and model for latest year.</p> <p>Or to put it in another way. Each row would have unique combination of make and model with other data from corresponding row with largest value of year.</p> <p>Standard SQL solution would be great.</p> http://stackoverflow.com/questions/484635/are-global-variables-bad/485088#485088 0 Answer by Bloodboiler for Are global variables bad? Bloodboiler 2009-01-27T20:28:08Z 2009-01-27T20:28:08Z <p>Sooner or later you will need to change how that variable is set or what happens when it is accessed, or you just need to hunt down where it is changed.</p> <p>It is practically always better to not have global variables. Just write the dam get and set methods, and be gland you when you need them a day, week or month later.</p> http://stackoverflow.com/questions/308339/what-column-type-in-oracle-can-take-full-range-of-java-double-values 1 What column type in Oracle can take full range of java double values Bloodboiler 2008-11-21T10:14:26Z 2008-11-21T12:16:30Z <p>What column type in Oracle 10g can be used to store any value of java double up to and including Double.MAX_VALUE and Double.MIN_VALUE?</p> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234304#234304 3 Answer by Bloodboiler for What is your best programmer joke? Bloodboiler 2008-10-24T16:39:24Z 2008-10-24T16:39:24Z <p>Not a joke per se, but a supposedly true story full of WTFs.</p> <p>Heard this told on This Week in Tech podcast (in all seriousness with no sarcasm) as a true story illustrating the awesome programming skills of Bill Gates.</p> <p>A number of years ago Gates and some other major geek competed to see who's a better programmer. Their programming challenge was to draw circles. Gates used Basic. The other programmer used assembler.</p> http://stackoverflow.com/questions/108808/adoption-of-the-ribbon-ui/226773#226773 -6 Answer by Bloodboiler for Adoption of the Ribbon UI Bloodboiler 2008-10-22T17:26:33Z 2008-10-22T17:26:33Z <p>If you feel you need to use the ribbon to better manage complexity you have already screwed up. MS Office uses the ribbon because it is a bloated toy that needs to appeal to people who will never learn to use even the most basic features properly.</p> <p>If your application needs a huge number of features and eye candy for marketing reasons, by all means do use a ribbon. That's exactly what it was designed for. On the other hand, if your application is a serious tool for professionals, then take your GUI examples from Adobe. </p> http://stackoverflow.com/questions/206286/how-do-you-tell-someone-theyre-writing-bad-code/216181#216181 1 Answer by Bloodboiler for How do you tell someone they're writing bad code? Bloodboiler 2008-10-19T08:48:25Z 2008-10-19T08:48:25Z <p>Nobody likes to listen someone saying their work sucks, but any sane person would welcome mentoring and ways of avoiding unnecessary work.</p> <p>One school of teaching even says that you should not point out mistakes, but focus what is done right. For instance, instead of pointing out incomprehensible code as bad, you should point out where their code is particularly easy to read. In the first case you are priming others to think and act like crappy programmers. In the later case you are priming for thinking like a skilled professional.</p> http://stackoverflow.com/questions/215306/storing-personal-information-dos-and-donts/215711#215711 2 Answer by Bloodboiler for Storing Personal Information Dos and Don'ts Bloodboiler 2008-10-18T23:28:02Z 2008-10-18T23:28:02Z <p>This is really basic thing, but sometimes featured on thedailywtf.com.</p> <p>Don't store passwords in clear text.</p> <p>If you run passwords through a function like md5 before storing them, that makes your username and password database worthless to thieves.</p> http://stackoverflow.com/questions/212860/usability-hints-for-building-an-adult-web-site/214015#214015 6 Answer by Bloodboiler for Usability hints for building an adult web site? Bloodboiler 2008-10-17T22:12:48Z 2008-10-17T22:12:48Z <ol> <li>No animations, no pop-ups, no new windows and absolutely no hijacking of user's control over the browser (window resizing etc.).</li> <li>Treat your users as valued customers and not as suckers to be separated from their money.</li> <li>Avoid too novel functionality and follow web conventions. You'll want your site to be simple enough for people who don't use the internet all that much.</li> <li>Steal good ideas you find from non-adult sites that do something similar to what you are planning to develop.</li> </ol> http://stackoverflow.com/questions/213859/which-is-more-ergonomic-ctrl-or-commandalt/213905#213905 0 Answer by Bloodboiler for Which is more ergonomic: ctrl or command(alt)? Bloodboiler 2008-10-17T21:23:41Z 2008-10-17T21:23:41Z <p>Pressing Alt would seem a little more ergonomic.</p> http://stackoverflow.com/questions/190999/is-it-possible-to-add-svg-images-to-a-web-page-through-css/196061#196061 0 Answer by Bloodboiler for Is it possible to add SVG images to a web page through CSS? Bloodboiler 2008-10-12T20:55:17Z 2008-10-12T20:55:17Z <p>Last time I tried, almost a year ago, it didn't work. You can, however, already mix svg and xhtml markup. Only problem there is that the page has to have correct mime type (application-xml or something like that) or browsers will ignore the svg.</p> <p>Inline svg is not a perfect solution if you want strict separation of content and presentation, but is seemed to be the most supported way of using svg.</p> http://stackoverflow.com/questions/195973/validating-web-pages/196025#196025 0 Answer by Bloodboiler for Validating Web Pages Bloodboiler 2008-10-12T20:38:30Z 2008-10-12T20:38:30Z <p>Validate to make sure you didn't make mistakes. If the validator complains about something you had to put in for browser compatibility, you can probably ignore that. </p> http://stackoverflow.com/questions/195485/why-do-old-editors-like-vim-and-emacs-expose-the-difference-between-a-file-and-a/195630#195630 -2 Answer by Bloodboiler for Why do old editors like Vim and Emacs expose the difference between a File and a Buffer in the interface? Bloodboiler 2008-10-12T16:02:38Z 2008-10-12T16:02:38Z <p>Because developers of those editors didn't care to hide implementation details from users. </p> http://stackoverflow.com/questions/188606/how-to-make-junit-testing-to-stop-after-first-failing-test 2 How to make junit testing to stop after first failing test Bloodboiler 2008-10-09T18:35:54Z 2008-10-09T19:35:16Z <p>Is there a way to make running junit test to stop after a test fails?</p> http://stackoverflow.com/questions/1308034/admin-interface-editable-django-app-settings/1308271#1308271 Comment by Bloodboiler on Admin interface editable Django app settings Bloodboiler 2009-09-09T15:03:18Z 2009-09-09T15:03:18Z Looks like it is the only one for it :) http://stackoverflow.com/questions/986594/experiences-of-creating-social-network-site-in-django/990440#990440 Comment by Bloodboiler on Experiences of creating Social Network site in Django Bloodboiler 2009-06-15T14:11:09Z 2009-06-15T14:11:09Z Fine. The real question was: Web developers being second lowest quality developers, just above VB developers, I want to know if open source Django projects generally suck as much as, say, all Java projects? :-) But seriously, I just wanted to hear if there are particularly good or bad apps I should know about. http://stackoverflow.com/questions/751736/how-to-get-java-logger-output-to-file-by-default/751827#751827 Comment by Bloodboiler on How to get java Logger output to file by default Bloodboiler 2009-04-15T14:10:12Z 2009-04-15T14:10:12Z Thank you all. This looks like the thing I was after. http://stackoverflow.com/questions/751736/how-to-get-java-logger-output-to-file-by-default/751754#751754 Comment by Bloodboiler on How to get java Logger output to file by default Bloodboiler 2009-04-15T13:59:34Z 2009-04-15T13:59:34Z I hate to nitpick a perfectly good answer, but is there no API for doing this? http://stackoverflow.com/questions/607410/group-by-like-row-filtering/607428#607428 Comment by Bloodboiler on Group by like row filtering Bloodboiler 2009-03-04T17:16:10Z 2009-03-04T17:16:10Z Thank you all. I went with this solution. http://stackoverflow.com/questions/308339/what-column-type-in-oracle-can-take-full-range-of-java-double-values/308405#308405 Comment by Bloodboiler on What column type in Oracle can take full range of java double values Bloodboiler 2008-11-27T21:34:53Z 2008-11-27T21:34:53Z .. to throw an exception when inserting close to max/min values. http://stackoverflow.com/questions/308339/what-column-type-in-oracle-can-take-full-range-of-java-double-values/308405#308405 Comment by Bloodboiler on What column type in Oracle can take full range of java double values Bloodboiler 2008-11-27T21:31:37Z 2008-11-27T21:31:37Z I thought that would be it. For some reason I got oracle jdbc driwer http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201378#201378 Comment by Bloodboiler on What is the best regular expression for validating email addresses? Bloodboiler 2008-10-22T18:00:47Z 2008-10-22T18:00:47Z I've heard of an attempt to do a regular expression that covers much of the RFC. It was over a page long and still hopelessly incomplete. :-) http://stackoverflow.com/questions/204075/many-people-dont-know-how-to-multi-select-items-in-a-html-select-control-so/204157#204157 Comment by Bloodboiler on Many people don't know how to multi-select items in a HTML <select> control, so...? Bloodboiler 2008-10-20T17:06:56Z 2008-10-20T17:06:56Z This is an excellent solution. Just use single click to move items and no move buttons (double click is a bit alien interaction in the web and move buttons are unnecessary)