|
Solved and Workaround tags
Hi guys,
How useful would you guys think it is if the mods started adding [Solved] or equivalent tags to problems that have been answered? This practice may even encourage help-seekers to do the same.
Its should make it easier...
Started by TheEcologist on
, 13 posts
by 6 people.
Answer Snippets (Read the full thread at talkstats):
I didn't know how to tag a thread, googled it, and looks like... .
The earth is round: P<0.05 Re: Solved and Workarround tags Good idea.
Re: Solved and Workarround tags.
Re: Solved and Workarround tags I think it would be a good idea.
|
|
What's the hardest bug you're ever diagnosed and successfully solved? What made it so hard to figure out? What did you learn from the experience?
Started by Paul Morie on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Application worked....
An application compatibility bug in an application we didn't have source or debug info on .
Needed to debug IE itself to find out the context causing the crash .
Race condition inside IE caused by a javascript component I was writing :-) .
|
|
The halting problem cannot be solved for turing complete languages and it can be solved trivially for some non TC languages like regexes where it always halts.
I was wondering if there are any languages where it has both the ability to halt and not halt...
Started by Shalmanese on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Perhaps you meant to ask whether it can be solved.
It asks whether a given program halts on a given input .
|
Ask your Facebook Friends
|
One of the greatest joys (and hardest things to convey to non-programmers) is the feeling of exhilaration we often get when we finally get that "aha!" moment working on a tough problem - then we go implement it and it works magically. I've been thinking...
Started by Christopher Lang on
, 21 posts
by 21 people.
Answer Snippets (Read the full thread at stackoverflow):
Not the most challenging problem I've ever solved, but for my age wokring on..so i'm not sure it qualifies....
I solved was to create an image of coffee sediments that can be cylindrically mapped around a cup, PIL)
EDIT : Here is a sample
.
|
|
I've a small problem and I can't find a solution!
My code is (this is only a sample code, but my original code do something like this):
float x = [@"2.45" floatValue]; for(int i=0; i<100; i++) x += 0.22; NSLog(@"%f", x);
the output is 52.450001 and...
Started by BitDrink on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You can easily think of why this would be the case: there... .
See here as well.
Not every value can be represented in this format.
See http://en.wikipedia.org/wiki/Floating_point#Accuracy_problems
Floats are a number representation with a certain precision .
|
|
I love to work on AI optimization software (Genetic Algorithms, Particle Swarm, Ant Colony, ...). Unfortunately I have run out of interesting problems to solve. What problem would you like to have solved?
Started by martinus on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
I would like my bank balance optimised so that there is as much money as possible left at the end of the month, instead of ... .
Does the Netflix Prize count?
What about the Go Game ?
This list of NP complete problems should keep you busy for a while.. .
|
|
I was reading about DI thoroughly, and it seems interesting. So far, I'm totally living without it.
All the examples i saw are related to JNDI and how DI helps you being more flexible.
What is real life applications/problems that you solved with DI that...
Started by medopal on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
I'd call that a real world problem which I solved by dependency injection.
Up his daughters phone.
|
|
I am interested in finding if producer-consumer problem when there are multiple produce and multiple consumer be solved without using assignment i.e., using functional style of programming? How?
Producer-consumer problem
Thanks
Started by StackUnderflow on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Having multiple threads necessarily requires impure (non-functional) actions....
All of the implementations I've seen of producer-consumer in SML were forced to rely on ref s (in order to maintain a queue of 'sleeping' items), so I'd be inclined to say "no" .
|
|
I'd like to know about specific problems you - the SO reader - have solved using constraint programming and what constraint logic language you used.
Questions:
What problems have you used constraint programming to solve? What constraint logic language...
Started by knorv on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm not sure.
Benchmarking this I solved problems such as N-Queens and Golomb Rulers.
|
|
I saw this question , but the answers there are not very relevant. A friend needs a bank of solved recursion problems to help him study for a test tomorrow .
He learned the issue theoretically, but is having problems grasping how to actually solve recursion...
Started by ripper234 on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
So finding recursive problems can be reduced to finding some problems and answers related to functional programming... .
One of the best ways to learn recursion is to get some experience in a functional programming language such as Haskell or Lisp or Scheme .
|