Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
15answers
1k views

Self numbers in c++

Hey, my friends and I are trying to beat each other's runtimes for generating "Self Numbers" between 1 and a million. I've written mine in c++ and I'm still trying to shave off precious time. Here's ...
9
votes
5answers
161 views

Is using inline Javascript better sometime then external to save http request, if code inside javascript file is not much?

I'm using a External JavaScript in a website as I always try to keep JavaScript at bottom and external always But Google page speed is giving this suggestion The following external resources have ...
9
votes
11answers
678 views

for loop optimization

List<String> flowers = new ArrayList<String>(); My for loop currently looks like this... for (int i = 0; i < flowers.size(); i++) { ... } OR should I change this to look like the ...
8
votes
2answers
289 views

Why using functions defined in the same module faster than the same function defined in another?

Consider this block of code: isPrime primes' n = foldr (\p r -> p * p > n || (n `rem` p /= 0 && r)) True primes' primes = 2 : filter (isPrime primes) [3..] main = putStrLn $ show $ ...
8
votes
1answer
192 views

Do table slices take up memory in R?

If I take a slice of a table using, say the column names, does R allocate memory to hold the slice in a new location? Specifically, I have a table with columns depth1 and depth2, among others. I want ...
7
votes
1answer
588 views

Guidelines to write fast code for PyPy's JIT

PyPy's JIT can make Python code execute much faster than CPython. Are there a set of guidelines for writing code that can be optimised better by the JIT compiler? For example, Cython can compile some ...
7
votes
7answers
625 views

Remove foreach - c# code-optimization

How to optimize this code? ParentDoglist, ChildDoglistis - Ilist. dogListBox - List Box foreach (Dog ParentDog in ParentDoglist) { foreach (Dog ChildDog in ChildDoglist) { ...
7
votes
29answers
4k views

What is the most clever code you've ever seen?

My favorite is Tom "Duff's Device". It took me literally months after I first found this before I felt like I fully understood it. That said, I have seen others (there is an amazingly short ...
6
votes
7answers
512 views

Finding the highest-n values in a Map

I have a large map of String->Integer and I want to find the highest 5 values in the map. My current approach involves translating the map into an array list of pair(key, value) object and then ...
5
votes
5answers
264 views

How to simplify this logic/code?

I want to write an apps that accepts user command. The user command is used in this format: command -parameter For example, the app can have "Copy", "Paste", "Delete" command I am thinking the ...
4
votes
3answers
90 views

Optimize C compiles: removed unreferenced parts on-the-fly

We're facing an interesting topic. Lets say we have a special-functions.c file, basically a library. We need to optimize the code as getting rid of all unused/unreferenced functions during the build ...
4
votes
2answers
93 views

How do you minify and/or compress JavaScript that is in a php file?

I am looking at optimization options, and after checking SO questions, I don't quite see an answer for what I am trying to do. Hopefully that doesn't indicate that what I am doing is a bad practice! ...
4
votes
4answers
94 views

Optimize loop in ASP.Net / C#

I wrote a loop to display each line one by one from a List of string. The problem is that the list contains more that 45,000 lines and its taking a lot of time to create the page for displaying. Can ...
4
votes
1answer
89 views

How should I refactor my code (PHP & MySQL) to work more efficiently with a Master / slave database configuration?

I have developed a web application using PHP and MySQL which has all been running from a single server. When I come to scale up and need a separate database server and then ultimately need a master / ...
3
votes
1answer
139 views

Arm loop code optimization

I want to improve some code which is using 25% of my app cpu, the code is the next: for (int i=0; i<8; i++) { unsigned f = *p++; sum += f; sqsum += f*f; } I made some arm code but it is not ...
3
votes
11answers
168 views

Speed up C program without using conditional compilation

we are working on a model checking tool which executes certain search routines several billion times. We have different search routines which are currently selected using preprocessor directives. This ...
3
votes
6answers
402 views

Fast way to remove a few items from a list/queue

This is a follow up to a similar question which asked the best way to write for item in somelist: if determine(item): code_to_remove_item and it seems the consensus was on something ...
3
votes
7answers
634 views

Code optimization; switch versus if's

I have a question about whether to use 'case' or 'ifs' in a function that gets called quite a lot. Here's the following as it is now, in 'ifs'; the code is self-explanatory: int identifyMsg(char* ...
3
votes
3answers
292 views

Loop Code Optimization

How can I optimize the following code , I Need to run 3 sets of loops like this: for($i=1;$i<=$count-1;$i++){ for($j=$i+1;$j<=$count;$j++){ // do some query use $i and $j } } ...
2
votes
1answer
69 views

How could this jQuery code be improved?

I'm a jQuery newbie and for now I rely on modifying existing scripts, but in the near future I plan to dig into the depths of jQuery API. So, I'm using a jQuery snippet, which does a couple of things ...
2
votes
3answers
36 views

How would I simplify this code?

boolean f(boolean A, boolean B, boolean C, boolean D, boolean E) { if (A) { k(); if (B) { m(); if (C) { n(); if (D) { p(); ...
2
votes
2answers
56 views

Can a Java program be analyzed to strip it down to essential packages as well as the JRE?

Is there some tool that can analyze a Java program and strip down the Java runtime and the program itself to the essentials only? Can a tool analyze the programs dependencies and create a custom JRE ...
2
votes
4answers
99 views

Is there more to optimizing CSS than minimizing character count?

I've been reading a lot about jQuery optimization and how you can alter your selectors to cut down on the amount of DOM traversal, but I haven't heard much about CSS optimization outside of the usual ...
2
votes
3answers
2k views

Resharper: Possible Multiple Enumeration of IEnumerable

I'm using the new Resharper version 6. In several places in my code it has underlined some text and warned me that there may be a Possible multiple enumeration of IEnumerable. I understand what this ...
2
votes
5answers
400 views

Time efficiency on std::tr1::unordered_map::operator[]

I am optimizing a piece of code in Visual Studio 2008 SP1. Knowing that unorder_map is awesome with constant time insert/delete/find, so I optimized the code by using unordered_map as my primary data ...
2
votes
2answers
534 views

Optimizing NumPy with Cython

I am currently trying to optimize the code that I had written in pure Python. This code uses NumPy very heavily as I am working with NumPy arrays. Below you can see the simplest of my classes that I ...
2
votes
2answers
43 views

what would improve about this html code?

i have this html code and i wanted to see what kind of improvements you would make to it if it was yours, im just curious to know! the code is here: http://pastie.org/1647150 p.s. the code deos ...
2
votes
1answer
218 views

XAML-inheritance, code re-use, optimization

In my WPF4 desktop application all windows have the same structure — header & footer with some main menu and copyright marks; left-side navigation menu and body (center of screen) where I show ...
2
votes
3answers
111 views

Different Code in for loops

I have created a rather complicated piece of (Java) code for a game I am working on. I'm fairly sure I will need to change it in the future to optimize or otherwise change the exact functioning. The ...
2
votes
2answers
474 views

Slow down my javascript! How to allow my code to wait for transition to complete before executing?

Strange Question i guess but i have this bit of code in my page... $(".map-overlay-left").click(function () { $("#map-holder").hide('slow'); var gmarkers = []; var side_bar_html = ""; ...
2
votes
3answers
818 views

Shorten up Jquery condition

I have a question about how I can shorten a Jquery if statement. In my form I have several fields that I check if they are filled. I know there are several plugins to do that for me, but I wan't to ...
2
votes
20answers
1k views

C# running faster than C++?

A friend and I have written an encryption module and we want to port it to multiple languages so that it's not platform specific encryption. Originally written in C#, I've ported it into C++ and Java. ...
1
vote
2answers
25 views

How to update page views in batches, not every time page loads

We have a high load site that has a forum which has been programmed to increment topic pageview every time that topic page loads. In peak hours these writes become a bottleneck and MySQL gets locked ...
1
vote
4answers
81 views

which code is more efficient?

which of the following is an efficient way to reverse words in a string ? public String Reverse(StringTokenizer st){ String[] words = new String[st.countTokens()]; int i = 0; ...
1
vote
1answer
99 views

Apache server hangs up on running PHP script for scaling an image

I have a PHP class that gets an image which is uploaded and resizes it to three different resolutions (a thumbnail, 300x300 and 800x800). I also have a jQuery uploader which manages and uploads ...
1
vote
1answer
44 views

Seperating JS & HTML in Wordpress

I recently read the discussion What's the best way to separate PHP Code and HTML? I am facing a similar dilemma. Currently working on a wordpress website which has a LOT of sliders, animated ...
1
vote
4answers
73 views

Reducing function size

Maybe this is a dummy question but as I am not a C# expert I think this function could be written better with using fewer lines of code. Here it is: public void chgnav(string wt, string nav) ...
1
vote
2answers
79 views

Simplifing a group of mouseover functions jquery

Let me start by saying that this is working correctly, but I know it's not the most efficient way of coding it and I'm lacking the knowledge / understanding as to how to do this. For this specific ...
1
vote
2answers
291 views

Optimizing the weighted sum of sparse matrices

I welcome any help for the following code optimization problem: I have a collection of N sparse matrices of identical sizes ([s1 s2]) stored in a cell array A and a corresponding number of scalar ...
1
vote
4answers
103 views

More efficient ways of doing this

for i in vr_world.getNodeNames(): if i != "_error_": World[i] = vr_world.getChild(i) vr_world.getNodeNames() returns me a gigantic list, vr_world.getChild(i) returns a specific type of ...
1
vote
8answers
225 views

How can I perform code optimisation on the following program?

func() { fun1(); fun2(); fun3(); fun4(); fun5(); fun6(); .. .. .. .. fun99(); fun100(); } by using function pointers in C program? I need to call this program repeatedly in my program.
1
vote
2answers
94 views

Combining JavaScripts files

I'm using a blogger platform for blogging. I've many widgets on my blog which refer to JavaScript files on the different servers, which is affecting loading performance of my blog. Can I combine ...
1
vote
3answers
230 views

C++ Compiler Optimization for Fastest Possible Code in RAD Studio 2009

I would like to select the compiler optimizations to generate the fastest possible application. Which of the following settings should I set to true? Dead store elimination Eliminate duplicate ...
0
votes
5answers
44 views

Optimize the javascript/jquery code for HTML creation with JSON

I have used the following code to populate my HTML with JSON. Tried to optimize the code as per my understanding. I need to optimize the code as per JavaScript best practices. Please suggest me ...
0
votes
0answers
29 views

Static Branch prediction for the ARM with __builtin_expect is not functional!!?

Im doing the optimization in the C code running in the Cortex-R4. first of all I haven't seen any change in the assembly code output when I indicated the "__builtin_expect" in condition check. It seem ...
0
votes
4answers
114 views

Is using an inline function as fast as directly writing the function body in the code?

class MyClass { public: MyClass() { m_dbLoopStart = 0.0; m_dbLoopStop = 100.0; m_dbLoopStep = 0.001; } // Which of the ...
0
votes
1answer
94 views

Some doubts in optimizing the neon code

I wrote some neon code in assembly and was aiming for maximum optimization. Though the numbers seem satisfactory, I was interested in understanding the possibilities of optimizing it further. Then I ...
0
votes
3answers
44 views

Matlab Trimming at Bounds

I have a matrix A: NaN NaN NaN NaN NaN NaN NaN 10 1 8 7 2 5 6 2 3 49 NaN NaN NaN NaN NaN NaN I was wondering if there was a way to detect when the NaNs first turn to numbers and turn the 1st 2 ...
0
votes
1answer
56 views

Nested ifs to test if one or both of two conditions is true

I have an object, data, that may or may not contain the members site_with_same_coords and/or site_with_same_name. I test for these and if one or both exist, I alerts to the user: if ...
0
votes
2answers
103 views

How to get rid of lag caused by lots of enemy instances?

im making a flash shooter game and ive encountered one problem. When there are a lot of monsters on the stage which are visible by player, the game starts to lag. In my opinion, its due to ...

1 2