0
votes
2answers
16 views
Which is the best OS (Ubuntu, Windows, Mac, …) platform to develop Flex Application without headache ?
I believe that OS is Windows or Mac to develop Flex application without headache. I'm working on Ubuntu. I try to use AXDT or Flex Builder 3 for linux to develop AS3. But everytime i change OS to …
1
vote
1answer
65 views
PHP - Quicker way to do this?
foreach(self::getGroups() as $group) $group_ids[] = $group->getId();
Is there a better, cleaner and more efficient way to do that?
Thanks! :-)
2
votes
3answers
28 views
What are the most efficient idioms for streaming data from disk with constant space usage?
Problem Description
I need to stream large files from disk. Assume the files are larger than will fit in memory. Furthermore, suppose that I'm doing some calculation on the data and the result is …
1
vote
9answers
156 views
What is the most efficient way to do look-up table in C#
What is the most efficient way to do look-up table in C#
I have a look-up table. Sort of like
0 "Thing 1"
1 "Thing 2"
2 "Reserved"
3 "Reserved"
4 "Reserved"
5 "Not a Thing"
So if someone wants …
2
votes
5answers
48 views
Fast conversion of numeric data into fixed width format file in Python
What is the fastest way of converting records holding only numeric data into fixed with format strings and writing them to a file in Python? For example, suppose record is a huge list consisting of …
0
votes
3answers
82 views
php - help improve the efficiency of this youtube style url generator
After some searching I found this youtube style url generator with encryption to hide the original id... however I am hoping to improve the efficiency as it will be used a lot. So far I have improved …
3
votes
12answers
211 views
Fast, Simple Programmer’s Editor
Hi All,
Do any of you have any good links that you could share with me? I am looking for a FAST programmers editor that can open a file containing over 100, 000 lines of code really fast? i'm …
4
votes
7answers
192 views
Why is there a performance warning on cast pointer to bool?
Extends.
I thought I was being cool when I did something like:
bool hasParent()
{
return this->parentNode ;
}
Even with a (bool) cast, the warning still doesn't go away.
Where …
2
votes
4answers
83 views
Erlang : Which is more efficient in this scenario - using try catch or case statements?
Say I have some function fn1() in Erlang which returns {ok, Result} if the function was executed successfully and {error, "ErrorReason"} if there was an error.
Now in another function fn2() I call …
1
vote
1answer
81 views
Collision Resolution : Quadratic Probing vs. Separate Chaining
Ok, so I've been doing some experiments with hash tables and different collision resolution problems. I'm trying to figure out which is more efficient for doing finds, a hash table that uses separate …
8
votes
9answers
404 views
How much does the order of case labels affect the efficiency of switch statements?
Consider:
if (condition1)
{
// Code block 1
}
else
{
// Code block 2
}
If I know that condition1 will be true the majority of the time, then I should code the logic as written, instead of:
…
1
vote
2answers
52 views
iPhone animation efficiency solutions, layering questions
I'm working on writing a rather basic app. It uses minimal touch input, and mostly just plays fancy animations. There isn't much animation, but the way it's currently done seems super inefficient and …
0
votes
4answers
105 views
Is it more efficient to call the .net Garbage collector?
Due to the overhead of calling the garbage collector in the CLR, is it more efficient to leave it, or force to garbage collection when objects go out of scope?
0
votes
8answers
134 views
Is there any significant difference between nesting a while loop in a while loop and nesting an if-else loop in a while loop? (C++)
EDIT: I forgot to add the loop part of the second code.
Looking at the two code styles
while(some_loop_cont_val)
{
while(pre_x is not done)
{
//do action pre_x
}
//do action …
0
votes
1answer
57 views
How can I find StackOverflow answers in my search results easier? [closed]
In my every day Google, Yahoo, and Bing searches, how can I better pick out the results that are StackOverflow results? (Sure wish my browser knew I preferred getting StackOverflow results)
