active questions tagged language-agnostic - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T13:16:25Z http://stackoverflow.com/feeds/tag/language-agnostic http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1737427/assignments-i-e-code-kata-for-coding-dojos 2 Assignments, i.e. Code Kata, for Coding Dojos Dala 2009-11-15T12:30:42Z 2009-11-26T11:01:03Z <p>I would like to gather a list of assignments, i.e. <a href="http://en.wikipedia.org/wiki/Code%5FKata" rel="nofollow" title="Code Kata">Code Kata</a>, for <a href="http://codingdojo.org/" rel="nofollow">Coding Dojos</a>. Please provide a name and a short description of the assignment or a link.</p> <p>I'll kick off things with FizzBuzz.</p> <p><strong>Update</strong></p> <p>There are some good links in the answers so far but I don't believe that mathematical and algorithmic puzzles are the best for a coding dojo. The purpose with a coding dojo is to practice programming skills together with other people and I'm sure there are problems that are better than others for this. So please share problems you've used with success in a dojo or others that might be a good fit.</p> http://stackoverflow.com/questions/1796684/api-or-tool-that-can-facilitate-software-updating 0 API or tool that can facilitate software updating luvieere 2009-11-25T12:42:15Z 2009-11-26T10:37:35Z <p>Is there any API or tool that can facilitate software updating? It should take care of checking for updates from a URL for a provided list of files and downloading and replacing the ones that need updating. It would also be nice if it contained an authentication module so that only authorized parties could access the updates. It should be language-agnostic - takes a list of files without extra knowledge except their versions and replaces them with newly downloaded copies if on the site there are newer versions.</p> http://stackoverflow.com/questions/689827/realistic-time-estimates-for-progress-bars-etc 8 Realistic time estimates for progress bars etc. f3lix 2009-03-27T13:47:29Z 2009-11-26T09:13:06Z <p>I know I am not the only one who does not like progress bars or time estimates which give unrealistic estimates in software. Best examples are installers which jump from 0% to 90% in 10 seconds and then take an hour to complete the final 10%.</p> <p>Most of the time programmers just estimate the steps to complete a task and then display <em>currentstep/totalsteps</em> as a percentage, ignoring the fact that each step might take a different time to complete. For example, if you insert rows into a database, the insertion time can increase with the number of inserted rows (easy example), or the time to copy files does not only depend on the size of the file but also on the location on the disk and how fragmented it is.</p> <p>Today, I asked myself if anybody already tried to model this and maybe created a <strong>library with a configurable robust estimator</strong>. I know that it is difficult to give robust estimates because external factors (network connection, user runs other programs, etc) play their part. </p> <p>Maybe there is also a solution that uses profiling to set up a better estimator, or one could use machine learning approaches.</p> <p>Does anybody know of advanced solutions for this problem?</p> <p><hr /></p> <p>In connection to this, I found the article <a href="http://www.chrisharrison.net/projects/progressbars/index.html" rel="nofollow">Rethinking the progress bar</a> very interesing. It shows how progress bars can change the perception of time and how you can use those insights to create progress bars that seem to be faster.</p> <p><hr /></p> <p><strong>EDIT</strong>: I can think of ways how to manually tune the time estimate, and even with a 'estimator library' I will have to fine tune the algorithm. But I think this problem could be tackled with statistical tools. Of course, the estimator would collect data during the process to create better estimates for the next steps. </p> <p>What I do now is to take the average time something took in the previous step (steps grouped by type and normalized by e.g. file size, size of transaction) and take this average as estimate for the next steps (again: counting in different types and sizes).</p> <p>Now, I know <strong>there are better statistical tools</strong> to create estimators and I wonder if anybody applied those to the problem.</p> http://stackoverflow.com/questions/1797457/how-to-write-an-enumeration-of-all-computable-functions 3 How to write an enumeration of all computable functions? sdcvvc 2009-11-25T14:54:30Z 2009-11-26T08:42:08Z <p>Motivation: I'd like to be able to use toy functional programming in languages without first-order functions, by using natural numbers instead of functions.</p> <p>A universal function is a function f : N -> (N -> N), equivalently f : N * N -> N that enumerates all possible computable functions. In other words, there's a number k such that f(k) is the squaring function, there's a number j such that f(j) is the n-th prime function etc.</p> <p>To write such a function, one can take any Turing-complete language (programming language compiler, lambda calculus, Turing machines...) and enumerate all programs. I'd like to allow not only evaluation, but also operations on functions like addition, composition, currying. For example, given indices of two functions f,g I'd like to know what is the index of the function f+g, or f composed with g. This would allow "toy functional programming".</p> <p>What is a good way to write such code library? I'm not looking for a minimalistic Turing tarpit that will struggle to compute factorial of 10, nor I don't want to write an advanced compiler. It should have some basic functions like addition and possibility to write loop, but not much more.</p> <p>Solutions in all high-level languages are welcome. Pseudocode, Haskell and Python are preferred. You can assume arbitrary precision arithmetic. Using <code>eval</code> or similar is not allowed.</p> <p>Clarification: Enumerated functions will consist of all <a href="http://en.wikipedia.org/wiki/Partial%5Frecursive%5Ffunction" rel="nofollow">partial recursive (computable)</a> ones - this includes functions that don't halt on some inputs. The universal function will hang in that cases; of course this is unavoidable. See also: m-recursive functions - <a href="http://en.wikipedia.org/wiki/" rel="nofollow">http://en.wikipedia.org/wiki/</a>Μ-recursive_function.</p> http://stackoverflow.com/questions/1771082/are-there-any-open-source-military-war-strategy-simulating-engines-frameworks 4 Are there any open-source military/war strategy simulating engines/frameworks? luvieere 2009-11-20T15:11:42Z 2009-11-26T07:50:22Z <p>Are there any open-source military/war strategy simulating engines or frameworks? Combat rules engines or weapon selection guides? I'm looking for something similar to a military strategy "unit testing" in a simulated field.</p> <p>What I'm trying to build is a combat advisor for troops deployed in the field. Intel' comes in with enemy's moves - software should advice about an optimal strategy - like in chess, only with two armies. The framework should be scalable - in an urban guerrilla warfare context it should advice upon tactical moves to make in order to counteract the enemy's assessed field tactics. That's why I'm wondering about any open source initiatives, so I could learn something from collective knowledge and gain insight upon such a project.</p> http://stackoverflow.com/questions/1078065/most-readable-programming-language-to-simulate-10-000-chutes-and-ladders-game-pla 3 most readable programming language to simulate 10,000 chutes and ladders game plays? landon9720 2009-07-03T06:55:13Z 2009-11-26T06:53:29Z <p>I'm wondering what language would be most suitable to simulate the game Chutes and Ladders (Snakes and Ladders in some countries). I'm looking to collect basic stats, like average and standard deviation of game length (in turns), probability of winning based on turn order (who plays first, second, etc.), and anything else of interest you can think of. Specifically, I'm looking for the implementation that is most readable, maintainable, and modifiable. It also needs to be very brief.</p> <p>If you're a grown-up and don't spend much time around young kids then you probably don't remember the game that well. I'll remind you:</p> <ul> <li>There are 100 squares on the board.</li> <li>Each player takes turn spinning a random number from 1-6 (or throwing a dice).</li> <li>The player then advances that many squares.</li> <li>Some squares are at the base of a ladder; landing on one of these squares means the player gets to climb the ladder, advancing the player's position to a predetermined square.</li> <li>Some squares are at the top of a slide (chute or snake); landing on one of these squares means the player must slide down, moving the player's position back to a predetermined square.</li> <li>Whichever player gets to position 100 first is the winner.</li> </ul> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer 70 What development book made the most impact on you as a developer? Chris Canal 2008-09-16T13:48:48Z 2009-11-26T06:11:23Z <p>For me, <a href="http://oreilly.com/catalog/9780596007126/" rel="nofollow">Head First Design Patterns</a> was a book that made Design Patterns click for me. Once I had read it, I found I could return to GoF and take more away from it and it really helped my move on as a developer.</p> <p>What book really made an impact of how you work as a developer?</p> <p>Note: <strong>One book per answer</strong>; upvote any you agree with ;o)</p> http://stackoverflow.com/questions/1771750/optimal-way-for-partitioning-a-cell-based-shape-into-a-minimal-amount-of-rectangl 1 Optimal way for partitioning a cell based shape into a minimal amount of rectangles Marc Müller 2009-11-20T16:49:25Z 2009-11-26T04:07:39Z <p>Assume a boolean array like:</p> <pre><code>1111 1111 1110 1111 1001 </code></pre> <p>Now you need to find the way of arranging the least rectangles of any size to achieve this shape. So, for example, you'd find this:</p> <pre><code>+-++ | |+ | | +-++ + + </code></pre> <p>Where + is a corner of a rectangle and |, - borders of a rectangle.</p> <p>What I thought about doing is starting with the largest possible rectangle, checking if there is any place in the array it can be placed, where every array element covered by the rectangle is true. If such a place exists, the rectangle would be added to a list. Afterwards we check in the left space of the array if there is another spot to put the rectangle in, then decrease the size of the rectangle and repeat the process with the remaining space until the size is 0.</p> <p>This should yield good results since we always start with large rectangles, that we can — of course — use less of, which in turn means we are using small amounts of rectangles.</p> <p>However, this is just a concept I've thought of and have not yet put into practice. It seems quite inefficient, so I was wondering if there were any known quick algorithms to achieve this?</p> http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used 63 What is the best UI you've ever used? Claudiu 2008-10-26T16:13:51Z 2009-11-26T03:44:24Z <p>What is the <b>best user interface</b> you've ever used? One that made doing your task a pleasure, that was perfectly designed for the task it was intended for and facilitated doing it with ease. One that made you want to somehow locate the creators over the internet, personally fly to their location, and then <b>hand them large pile of money</b>.</p> <p>What made it so great? Was it simplicity, unobtrusiveness? Screenshots are a plus.</p> <p>Related question: <a href="http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used">Worst UI Ever</a>.</p> http://stackoverflow.com/questions/242149/when-should-i-optimize 10 When should I optimize? Sophie 2008-10-28T03:26:16Z 2009-11-26T02:52:04Z <p>They say "Premature optimization is the root of all evil".. so what's the best point in time for optimization?</p> http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi 35 Fastest way to get value of pi Chris Jester-Young 2008-08-01T05:21:22Z 2009-11-26T02:38:11Z <p>Solutions welcome in any language. :-) I'm looking for the fastest way to obtain the value of pi, as a personal challenge. More specifically I'm using ways that don't involve using <code>#define</code>d constants like <code>M_PI</code>, or hard-coding the number in.</p> <p>The program below tests the various ways I know of. The inline assembly version is, in theory, the fastest option, though clearly not portable; I've included it as a baseline to compare the other versions against. In my tests, with built-ins, the <code>4 * atan(1)</code> version is fastest on GCC 4.2, because it auto-folds the <code>atan(1)</code> into a constant. With <code>-fno-builtin</code> specified, the <code>atan2(0, -1)</code> version is fastest.</p> <p>Here's the main testing program (<code>pitimes.c</code>):</p> <pre><code>#include &lt;math.h&gt; #include &lt;stdio.h&gt; #include &lt;time.h&gt; #define ITERS 10000000 #define TESTWITH(x) { \ diff = 0.0; \ time1 = clock(); \ for (i = 0; i &lt; ITERS; ++i) \ diff += (x) - M_PI; \ time2 = clock(); \ printf("%s\t=&gt; %e, time =&gt; %f\n", #x, diff, diffclock(time2, time1)); \ } static inline double diffclock(clock_t time1, clock_t time0) { return (double) (time1 - time0) / CLOCKS_PER_SEC; } int main() { int i; clock_t time1, time2; double diff; /* Warmup. The atan2 case catches GCC's atan folding (which would * optimise the ``4 * atan(1) - M_PI'' to a no-op), if -fno-builtin * is not used. */ TESTWITH(4 * atan(1)) TESTWITH(4 * atan2(1, 1)) #if defined(__GNUC__) &amp;&amp; (defined(__i386__) || defined(__amd64__)) extern double fldpi(); TESTWITH(fldpi()) #endif /* Actual tests start here. */ TESTWITH(atan2(0, -1)) TESTWITH(acos(-1)) TESTWITH(2 * asin(1)) TESTWITH(4 * atan2(1, 1)) TESTWITH(4 * atan(1)) return 0; } </code></pre> <p>And the inline assembly stuff (<code>fldpi.c</code>), noting that it will only work for x86 and x64 systems:</p> <pre><code>double fldpi() { double pi; asm("fldpi" : "=t" (pi)); return pi; } </code></pre> <p>And a build script that builds all the configurations I'm testing (<code>build.sh</code>):</p> <pre><code>#!/bin/sh gcc -O3 -Wall -c -m32 -o fldpi-32.o fldpi.c gcc -O3 -Wall -c -m64 -o fldpi-64.o fldpi.c gcc -O3 -Wall -ffast-math -m32 -o pitimes1-32 pitimes.c fldpi-32.o gcc -O3 -Wall -m32 -o pitimes2-32 pitimes.c fldpi-32.o -lm gcc -O3 -Wall -fno-builtin -m32 -o pitimes3-32 pitimes.c fldpi-32.o -lm gcc -O3 -Wall -ffast-math -m64 -o pitimes1-64 pitimes.c fldpi-64.o -lm gcc -O3 -Wall -m64 -o pitimes2-64 pitimes.c fldpi-64.o -lm gcc -O3 -Wall -fno-builtin -m64 -o pitimes3-64 pitimes.c fldpi-64.o -lm </code></pre> <p>Apart from testing between various compiler flags (I've compared 32-bit against 64-bit too, because the optimisations are different), I've also tried switching the order of the tests around. The <code>atan2(0, -1)</code> version still comes out top every time, though.</p> <p>I'm keen to hear what results you have, as well as improvements to the testing process. :-)</p> http://stackoverflow.com/questions/1800960/library-for-creating-animated-presentations 0 Library for Creating Animated Presentations luvieere 2009-11-26T00:43:43Z 2009-11-26T02:33:40Z <p>Is there any library for creating animated presentations? Although the question is language-agnostic, I'm specifically biased towards WPF, yet I wouldn't mind you giving examples of libraries for any other language.</p> http://stackoverflow.com/questions/405770/why-are-compilers-so-stupid 10 Why are compilers so stupid? martinus 2009-01-02T01:01:36Z 2009-11-26T00:35:03Z <p>I always wonder why compilers can't figure out simple things that are obvious to the human eye. They do lots of simple optimizations, but never something even a little bit complex. For example, this code takes about 6 seconds on my computer to print the value zero (using java 1.6):</p> <pre><code>int x = 0; for (int i = 0; i &lt; 100 * 1000 * 1000 * 1000; ++i) { x += x + x + x + x + x; } System.out.println(x); </code></pre> <p>It is totally obvious that x is never changed so no matter how often you add 0 to itself it stays zero. So the compiler could in theory replace this with System.out.println(0).</p> <p>Or even better, this takes 23 seconds:</p> <pre><code>public int slow() { String s = "x"; for (int i = 0; i &lt; 100000; ++i) { s += "x"; } return 10; } </code></pre> <p>First the compiler could notice that I am actually creating a string s of 100000 "x" so it could automatically use s StringBuilder instead, or even better directly replace it with the resulting string as it is always the same. Second, It does not recognize that I do not actually use the string at all, so the whole loop could be discarded!</p> <p>Why, after so much manpower is going into fast compilers, are they still so relatively dumb?</p> <p><strong>EDIT</strong>: Of course these are stupid examples that should never be used anywhere. But whenever I have to rewrite a beautiful and very readable code into something unreadable so that the compiler is happy and produces fast code, I wonder why compilers or some other automated tool can't do this work for me.</p> http://stackoverflow.com/questions/488922/automatically-tracking-development-time 4 Automatically tracking development time EightyEight 2009-01-28T19:08:35Z 2009-11-25T23:15:09Z <p>Hi all, </p> <p>I'm working on a personal project and I'd love to be able to say at the end:"I've spend X hours on this project". Now one way to solve this, is to use a manual time tracker (worked from: to:). I've ran into problems with this, because I only manage to use it consistently for the first week or two. So I'd like to track development time automatically.</p> <p>One idea I had was to insert a short script into the build process that that would insert a time stamp into a log file every time a build process is called. Later, I could analyze the intervals between each build and hopefully calculate a somewhat accurate picture of what's going on. </p> <p>Does anyone else have an idea of how such a time tracking tool could be implemented? Are there any existing tools out there?</p> <p>Quick follow up based on the answers already provided: 1. Stop/start trackers aren't bad, but require a lot of discipline, something that I perhaps should be working on. But they dont work for me. 2. Specific app-tracking programs are great, but I'm current on Mac OS X. Thanks</p> http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion 344 What's your most controversial programming opinion? Jon Skeet 2009-01-02T13:14:26Z 2009-11-25T23:10:09Z <p>This is definitely subjective, but I'd like to try to avoid it becoming argumentative. I think it could be an interesting question if people treat it appropriately.</p> <p>The idea for this question came from the comment thread from <a href="http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language#282342">my answer</a> to the <a href="http://stackoverflow.com/questions/282329">"What are five things you hate about your favorite language?" question</a>. I contended that classes in C# should be sealed by default - I won't put my reasoning in the question, but I might write a fuller explanation as an answer to this question. I was surprised at the heat of the discussion in the comments (25 comments currently).</p> <p>So, what contentious opinions do <em>you</em> hold? I'd rather avoid the kind of thing which ends up being pretty religious with relatively little basis (e.g. brace placing) but examples might include things like "unit testing isn't actually terribly helpful" or "public fields are okay really". The important thing (to me, anyway) is that you've got reasons behind your opinions.</p> <p>Please present your opinion and reasoning - I would encourage people to vote for opinions which are well-argued and interesting, whether or not you happen to agree with them.</p> http://stackoverflow.com/questions/1733310/is-it-exists-any-rss-hosting-with-api-for-creating-feeds 0 Is it exists any "rss hosting" with API for creating feeds Maciek Sawicki 2009-11-14T04:46:14Z 2009-11-25T20:38:18Z <p>Hi, I am creating a desktop app that will create some reports. I want to export these reports as RSS or ATOM feeds. I can easily create feeds with Rome lib for Java. But I have no idea how to spread them. I thought about embedding httpd into my app, but it's bad idea, because a computer can be behind NAT or turned off.</p> <p>I need some kind of "proxy" server, where can I push my feeds, and clients will be able to pull content from that server.</p> <p>I can probable write server side app fore this, but first I'd like to find out if some dedicated solution is available for problems like this.</p> <p>I was also thinking about using some blogging platform and using its API. What do you think about this approach?</p> <p>One more thing I have to consider when choosing platform ability to handle lot of updates. Sometimes desktop app will be shut down but when it will be running, it generates quite a lot of updates. </p> http://stackoverflow.com/questions/199184/how-do-i-check-if-a-number-is-a-palindrome 9 How do I check if a number is a palindrome? Esteban Araya 2008-10-13T22:10:39Z 2009-11-25T20:32:20Z <p>Any language. Any algorithm (except making the number a string and then reversing the string).</p> <p>Also, I actually have to do this, and I'll be posting my solution too.</p> http://stackoverflow.com/questions/1653806/are-there-resources-about-logistics 1 Are there resources about logistics? Max 2009-10-31T08:47:25Z 2009-11-25T20:04:37Z <p>I couldn't find any complex resources in Google. Maybe the key words that I used were wrong.</p> <p>I am interested in web-sites, book titles, book authors etc.. I'm looking general theory.</p> <p>UPD: Previous title of the question was: "Are there resources about transport scheduling?".</p> http://stackoverflow.com/questions/1798552/staying-relevant-as-a-programmer 2 Staying Relevant As a Programmer surfrbum 2009-11-25T17:25:08Z 2009-11-25T19:36:28Z <p>I am interested in hearing how various people remain in the Software Engineering industry for so long in their careers. I am at a crossroads myself as I have worked with Network Engineering, Communications, VoIP, Parking, Government Contracting, and Military related projects.</p> <ol> <li><p>Do you bounce between pure Software Tester, Integration, and back to straight coding? </p></li> <li><p>How do you prevent being a one-hit wonder in this economy? </p></li> <li><p>How do you find your passion ?</p></li> </ol> http://stackoverflow.com/questions/1784901/can-coordinates-of-constructable-points-be-represented-exactly 5 Can coordinates of constructable points be represented exactly? Jason Orendorff 2009-11-23T18:02:50Z 2009-11-25T18:41:38Z <p>I'd like to write a program that lets users draw points, lines, and circles as though with a straightedge and compass. Then I want to be able to answer the question, "are these three points collinear?" To answer correctly, I need to avoid rounding error when calculating the points.</p> <p>Is this possible? How can I represent the points in memory?</p> <p>(I looked into some unusual numeric libraries, but I didn't find anything that claimed to offer both exact arithmetic and exact comparisons that are guaranteed to terminate.)</p> http://stackoverflow.com/questions/1823/writing-a-conways-game-of-life-program 14 Writing A "Conway's Game of Life" Program akdom 2008-08-05T02:17:45Z 2009-11-25T18:34:28Z <p>Alright, so I've always wanted to write myself a nice little <strong>Game of Life</strong> program where you could play with the rules and adjust the number of cells and such; I've just never really had the time to mess around to do this (until recently). I understand the basic algorithm and such (if you don't, go to the <a href="http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life" rel="nofollow">Game of Life</a> Wikipedia page to check it out.) but only have a little experience with GUI programming. I'm considering doing this in python, but I was really wanting to figure out how to go about doing this in general, so feel free to give code snippets in your language of choice.</p> <p>To summarise:</p> <ul> <li><strong>How would you go about programming a "Conway's Game of Life" simulation in your language of choice?</strong></li> </ul> http://stackoverflow.com/questions/1131/windows-help-files-what-are-the-options 13 Windows Help files - what are the options? Michael Stum 2008-08-04T10:43:05Z 2009-11-25T18:31:57Z <p>Back in the old days, Help was not trivial but possible: generate some funky .rtf file with special tags, run it through a compiler, and you got a WinHelp file (.hlp) that actually works really well.</p> <p>Then, Microsoft decided that WinHelp was not hip and cool anymore and switched to CHM, up to the point they actually axed WinHelp from Vista.</p> <p>Now, CHM maybe nice, but everyone that tried to open a .chm file on the Network will know the nice "Navigation to the webpage was canceled" screen that is caused by security restrictions.</p> <p>While there are ways to make CHM work off the network, this is hardly a good choice, because when a user presses the Help Button he wants help and not have to make some funky settings.</p> <p>Bottom Line: I find CHM absolutely unusable. But with WinHelp not being an option anymore either, I wonder what the alternatives are, especially when it comes to integrate with my Application (i.e. for WinHelp and CHM there are functions that allow you to directly jump to a topic)?</p> <p>PDF has the disadvantage of requiring the Adobe Reader (or one of the more lightweight ones that not many people use). I could live with that seeing as this is kind of standard nowadays, but can you tell it reliably to jump to a given page/anchor?</p> <p>HTML files seem to be the best choice, you then just have to deal with different browsers (CSS and stuff).</p> http://stackoverflow.com/questions/1999/could-you-recommend-a-good-free-project-hosting-website 24 Could you recommend a good free project hosting website? saniul 2008-08-05T07:53:26Z 2009-11-25T16:50:31Z <p>Something like Google Code or SourceForge, but for closed source projects and better access management.</p> <p>Found links to these 3 on a forum:</p> <ul> <li><a href="https://opensvn.csie.org/" rel="nofollow">https://opensvn.csie.org/</a> SVN</li> <li><a href="https://www.freepository.com/" rel="nofollow">https://www.freepository.com/</a> CVS</li> <li><a href="http://devjavu.com/" rel="nofollow">http://devjavu.com/</a> - SVN</li> </ul> <p>Anyone had any experience with them?</p> http://stackoverflow.com/questions/1794274/business-objects-containers-or-functional 0 Business Objects - Containers or functional? Walter 2009-11-25T02:23:47Z 2009-11-25T16:43:18Z <p>Where I work, we've gone back and forth on this subject a number of times and are looking for a sanity check. Here's the question: Should Business Objects be data containers (more like DTOs) or should they also contain logic that can perform some functionality on that object.</p> <p>Example - Take a customer object, it probably contains some common properties (Name, Id, etc), should that customer object also include functions (Save, Calc, etc.)?</p> <p>One line of reasoning says separate the object from the functionality (single responsibility principal) and put the functionality in a Business Logic layer or object.</p> <p>The other line of reasoning says, no, if I have a customer object I just want to call Customer.Save and be done with it. Why do I need to know about how to save a customer if I'm consuming the object?</p> <p>Our last two projects have had the objects separated from the functionality, but the debate has been raised again on a new project. Which makes more sense?</p> http://stackoverflow.com/questions/1079120/how-to-make-these-dynamically-typed-functions-type-safe 6 How to make these dynamically typed functions type-safe? Dario 2009-07-03T12:22:23Z 2009-11-25T15:13:34Z <p>Is there any programming language (or type system) in which you could express the following Python-functions in a statically typed and type-safe way (without having to use casts, runtime-checks etc)?</p> <p><code>#1</code>:</p> <pre><code># My function - What would its type be? def Apply(x): return x(x) # Example usage print Apply(lambda _: 42) </code></pre> <p><code>#2</code>:</p> <pre><code>white = None black = None def White(): for x in xrange(1, 10): print ("White move #%s" % x) yield black def Black(): for x in xrange(1, 10): print ("Black move #%s" % x) yield white white = White() black = Black() # What would the type of the iterator objects be? for it in white: it = it.next() </code></pre> http://stackoverflow.com/questions/570172/which-html-element-has-the-largest-number-of-children-of-a-certain-type-for-inst 1 Which HTML element has the largest number of children of a certain type, for instance tags? Stewart Robinson 2009-02-20T16:12:51Z 2009-11-25T14:15:49Z <p>In any language, <a href="http://en.wikipedia.org/wiki/XSL%5FTransformations" rel="nofollow">XSLT</a>, PHP, Ruby, Perl, anything: how can I get the XPath or other path or identifier to the element containing the largest number of <code>&lt;p&gt;</code> tags?</p> http://stackoverflow.com/questions/383403/code-golf-print-the-entire-12-days-of-christmas-song-in-the-fewest-lines-of-co 20 Code Golf: Print the entire "12 Days of Christmas" song in the fewest lines of code. fizzer 2008-12-20T15:20:58Z 2009-11-25T14:08:14Z <p>Print all 12 verses of the <a href="http://en.wikipedia.org/wiki/The_Twelve_Days_of_Christmas_(song)" rel="nofollow">popular holiday song</a>.</p> <p>By 12 <em>verses</em> I mean the repetition of each line as is sung in the song, ie</p> <p>Verse One: On the first day of Christmas my true love gave to me a partridge in a pear tree.</p> <p>Verse Two On the second day of Christmas my true love gave to me two turtle doves and a partridge in a pear tree.</p> <p>...</p> <p>Verse N: On the nth day of Christmas my true love gave to me (Verse N-1 without the first line) (line added in verse N)</p> http://stackoverflow.com/questions/1168274/real-world-uses-for-obfuscation 10 Real world uses for obfuscation Matthew Jones 2009-07-22T21:10:07Z 2009-11-25T08:56:54Z <p>For what purposes would you want to obfuscate your code? I have not run into any real purposes other than <a href="http://en.wikipedia.org/wiki/International%5FObfuscated%5FC%5FCode%5FContest" rel="nofollow">participating in contests</a>, but I am sure there must be some intelligent and useful reasons for obfuscating source code.</p> <p>Why, in general, do you want or need to obfuscate your code? </p> <p>What real-life applications does obfuscation have?</p> http://stackoverflow.com/questions/42805/hello-world-what-did-your-first-ever-computer-program-do 18 Hello world: what did your first ever computer program do ? David 2008-09-03T23:18:04Z 2009-11-25T08:22:00Z <p>If you can remember that far back, what did the first computer program you ever wrote do (once you had finished debugging it)?</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language 136 What are five things you hate about your favorite language? brian d foy 2008-11-11T22:14:43Z 2009-11-25T07:17:56Z <p>There's been a cluster of Perl-hate on Stackoverflow lately, so I thought I'd bring my <a href="http://use.perl.org/~brian%5Fd%5Ffoy/journal/32556" rel="nofollow">"Five things you hate about your favorite language"</a> question to StackOverflow. Take your favorite language and tell me five things you hate about it. Those might be things that just annoy you, admitted design flaws, recognized performance problems, or any other category. You just have to hate it, and it has to be your favorite language.</p> <p>Don't compare it to another language, and don't talk about languages that you already hate. Don't talk about the things you like in your favorite language. I just want to hear the things that you hate but tolerate so you can use all of the other stuff, and I want to hear it about the language you wished other people would use.</p> <p>I ask this whenever someone tries to push their favorite language on me, and sometimes as an interview question. If someone can't find five things to hate about his favorite tool, he don't know it well enough to either advocate it or pull in the big dollars using it. He hasn't used it in enough different situations to fully explore it. He's advocating it as a culture or religion, which means that if I don't choose his favorite technology, I'm wrong.</p> <p>I don't care that much which language you use. Don't want to use a particular language? Then don't. You go through due diligence to make an informed choice and still don't use it? Fine. Sometimes the right answer is "You have a strong programming team with good practices and a lot of experience in Bar. Changing to Foo would be stupid."</p> <p><hr /></p> <p>This is a good question for code reviews too. People who really know a codebase will have all sorts of suggestions for it, and those who don't know it so well have non-specific complaints. I ask things like "If you could start over on this project, what would you do differently?" In this fantasy land, users and programmers get to complain about anything and everything they don't like. "I want a better interface", "I want to separate the model from the view", "I'd use this module instead of this other one", "I'd rename this set of methods", or whatever they really don't like about the current situation. That's how I get a handle on how much a particular developer knows about the codebase. It's also a clue about how much of the programmer's ego is tied up in what he's telling me.</p> <p>Hate isn't the only dimension of figuring out how much people know, but I've found it to be a pretty good one. The things that they hate also give me a clue how well they are thinking about the subject.</p>