0
votes
5answers
145 views
Tips for speeding up this code
Hiya,
Can anyone suggest tips or alterations to make this code cleaner and faster? This was the only way I could think of doing it on a Friday evening, but I'm sure there must be …
1
vote
4answers
39 views
efficiency of SQL ‘LIKE’ statement with large number of clauses
I need to extract information from a text field which can contain one of many values. The SQL looks like:
SELECT fieldname
FROM table
WHERE bigtextfield LIKE '%val1%'
OR bigtex …
5
votes
6answers
136 views
C# File I/O Efficiency
Hi, I have done a homework assignment, here is the problem statement:
Your program should work as follows:
Ask the user to give you a file name. Get the file name and save it.
…
3
votes
5answers
79 views
A more efficient approach to Verbal arithmetic / Alphametics?
Perhaps most of you know the Send + More = Money. Well, I'm currently learning java and one of the exercises is I have to solve HES + THE = BEST.
Now, so far I can/should use if-f …
3
votes
2answers
33 views
What is the best way to search multiple sources simultaneously?
I'm writing a phonebook search, that will query multiple remote sources but I'm wondering how it's best to approach this task.
The easiest way to do this is to take the query, sta …
1
vote
4answers
52 views
Loop: Need help with loop and efficiency
Currently, I need help with my loop. In each div, I want it to show two sets of FirstName and LastName instead of just one set, but I don't know how can I do that because of the lo …
-1
votes
1answer
154 views
Fast algorithms for computing the factorial
I found this page describing a number of algorithms for computing the factorial. Unfortunately, the explanations are terse and I don't feel like sifting through line after line of …
3
votes
6answers
175 views
Java: Calculate SHA-256 hash of large file efficiently
I need to calculate a SHA-256 hash of large file (or portion of it). My implementation works fine, but its much slower than the C++'s CryptoPP calculation (25 Min. vs. 10 Min for ~ …
3
votes
5answers
146 views
Efficient Cartesian Product algorithm
Can somebody please demonstrate for me a more efficient Cartesian product algorithm than the one I am using currently (assuming there is one). I've looked around SO and googled a …
3
votes
10answers
292 views
How does a programmer work across multiple computers?
I always find myself close to useless without my laptop. It has all the things I need, firefox, notpad++, photoshop, documents, etc... However, occasionally, I like to code on my d …
1
vote
4answers
106 views
What is more efficient in python new array creation or in place array manipulation?
Say I have an array with a couple hundred elements. I need to iterate of the array and replace one or more items in the array with some other item. Which strategy is more efficient …
0
votes
2answers
65 views
Can my code be more efficient?
I have to put my database's data in this format (values will differ, obviously), I think it's called an associative array (I'm horrible with terminology).
$values=array(
…
0
votes
4answers
96 views
Loop and MySQL help!
Okay, basically... i am trying to store the dates and month name from my database in this format. I am aiming store the month and then count the entries in that month and then stor …
0
votes
4answers
34 views
Packet detection using regex
I'm new to regular expressions, and I need to write a set of regular expressions that match different data packet formats.
My problem is, usually I only need to look for the start …
0
votes
3answers
69 views
When developing a website…
Very often, I just create a new folder and test things out in there. I use remote upload and then edit and refresh the page to see if it works. Now, one time when I was asked to wo …
