0
votes
2answers
19 views
efficient creation of json from mysql output - grouping within uniques
I believe I have been writing some inefficient code here, but can't seem to figure out a more efficient way of writting it.
This often happens with json output, though I've had the issue with some …
0
votes
4answers
105 views
a good book about software design
i'm looking for a book that talks about sofware decision like :
when should i use thread pool and shouldn't. and in the first case, explains how.
how should i acess my DB , how big my transactions …
1
vote
2answers
41 views
When should I call SaveChanges() when creating 1000’s of Entity Framework objects? (like during an import)
I am running an import that will have 1000's of records on each run. Just looking for some confirmation on my assumptions:
Which of these makes the most sense:
Run SaveChanges() every …
-3
votes
2answers
154 views
Efficiency of different ways of incrementing a variable in C++? [closed]
Possible Duplicate:
(C) What is the difference between ++i and i++
What's more efficient(from best to worse):
a++
or
++a
or
a = a + 1
0
votes
3answers
29 views
Which way to save custom types to a file on a mobile device?
I have a list of custom types, they need to be saved/loaded to/from a file on a mobile device (Windows Mobile 6) what method would be the most suited, taking into account the limited resources of the …
4
votes
6answers
167 views
How can I become good at assembly?
The answer to this question is, of course, "write some assembly code!"
But I can do that: I know basic x86 syntax, the types of registers and how to use them, subroutines, etc etc.
When I took an …
1
vote
8answers
99 views
Why having both str_replace() and preg_replace()?
I came to know PHP after Perl, so when I first found preg_* function I basically just used those. Later I read that str_replace() is faster when dealing with literal text. So my question is, can't …
1
vote
2answers
72 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 …
2
votes
3answers
69 views
Best way to load only specfic functions in PHP.
I'm writing my own content management system for a personal website, it's going to be low traffic, but I'd like to use the best practices for my future knowledge.
My plan is to have separate …
2
votes
3answers
56 views
Kanban as a Software Development Process in Practice
Has anyone used the kanban method for software development management?
I am evaluating kanban as a technique and would be curious to hear from anyone who has actually applied it in practice as to how …
0
votes
1answer
92 views
Running out of java heap space- 15 puzzle problem.
G'day all,
I tried the solution for eight puzzle problem posted here
by joel Neely and played around with it and modified it so that can be used to solve for higher grids[Changed the String …
18
votes
14answers
6k views
Development time in various languages
Does anybody know of any research or benchmarks of how long it takes to develop the same application in a variety of languages? Really I'm looking for Java vs. C++ but any comparisons would be …
5
votes
6answers
613 views
Advanced Python programming book like “Effective C++”?
There are a lot of books out there for new programmers getting into Python. However, are there any books for people who are experienced both in programming and to some degree in Python that introduces …
3
votes
8answers
214 views
Most efficient tree structure for what I’m trying to do
I'm wondering what the most generally efficient tree structure would be for a collection that has the following requirements:
The tree will hold anywhere between 0 and 232 - 1 items.
Each item will …
1
vote
11answers
248 views
How can I improve my PHP code to make it more efficient?
I've written a simple PHP script which checks if a random value is a valid Rugby Union score. It works quite nicely but isn't particularly efficient, any advice on improving it would be most welcome.
…
