0
votes
0answers
30 views

Jquery - Modifying to structure to submit form if successful

I've had some help creating some jquery code which is designed to submit a form if a geocode is successful. However, it doesn't do the submission bit yet and the structure/flow of things will need ...
0
votes
1answer
24 views

Will there be any performance or quality issues if we use lambda expression in foreach loop?

I have a piece of code as below - var serviceResponseItems = new List<ServiceResponseItems>(); foreach (var item in serviceResponse.SomeItems.Where(x => !string.IsNullOrEmpty(x.Id) ...
0
votes
1answer
19 views

Jquery newbie - Geocoder not returning results

This is my first javascript I have tried to put together but I am not having a lot of luck. This is what the script should do: Geocode an address either by clicking on an autosuggested location or ...
3
votes
2answers
105 views

Which is more efficient in Erlang: match on two different lines, or match in tuple?

Which of these two is more efficient in Erlang? This: ValueA = MyRecord#my_record.value_a, ValueB = MyRecord#my_record.value_b. Or this: {ValueA, ValueB} = {MyRecord#my_record.value_a, ...
0
votes
2answers
34 views

Having more efficient code to return errors

I have created a main class where all my main member activation deactivation functions are and all the other things related to them are also done this main class(along with some main functions) is ...
0
votes
3answers
37 views

Dictionary: hard-coded vs. external file

I have a java application which is started and stopped multiple times per second over hundreds of millions of items (called from an external script). Input: String key Output: int value The purpose ...
3
votes
3answers
62 views

How is conditional initialization handled and is it a good practice?

I am trying to decide between several possible practices. Say, my function has a number of if() blocks, that work on data, that is unique to them. Should I declare and initialize the local (for the ...
0
votes
0answers
24 views

Best practice for displaying jquery driven controls

I am using jquery to adjust font sizes based on clicks on 3 anchor buttons (a series of A's getting larger). My question refers to the best practice for adding these to the html. Is it better to: ...
-1
votes
2answers
72 views

Why write modular javascript? [closed]

The benefits of well-factored and modular code, in my understanding are re-usability and organization. Code written in a big chunk all in one file is difficult to read, and re-using small portions of ...
2
votes
2answers
71 views

Is it better to declare variables used out of “for loop”? [duplicate]

I've used a lot of For loops like this one: for(int i =0; i < size; i++) { int temp = array[i]; //temp is just used in this loop //...(do somthing for temp) } But is this one ...
2
votes
1answer
42 views

How do I construct an object in ruby Array Map?

class TestClass attr_accessor :name, :id end values = ["test1", "test2"] mapped_values = values.map{|value| test_class = TestClass.new test_class.name = value test_class.id = #some random ...
0
votes
7answers
159 views

Is using static private methods really faster/better than instance private methods?

What I'm asking is whether there is a difference between doing this: public Something importantBlMethod(SomethingElse arg) { if (convenienceCheckMethod(arg)) { // do important BL stuff ...
3
votes
6answers
97 views

Switch inside loops impacting performance?

I'm in a scenario where I'm looping through data and formatting it in specific ways based on a setting, and I'm concerned that what I feel is best stylistically might impede performance. The basic ...
2
votes
6answers
125 views

Is it more efficient to reset a counter or let it increase and use modulo

Say you need to track the number of times a method is called and print something when it has been called n times. What would be the most efficient: Use a long variable _counter and increase it each ...
0
votes
1answer
93 views

General programming, 2d array, whats wrong with a double for loop?

This is a general programming question. I have seen on a lot of posts that iterating through a 2d array via a double for loop is "horrible" "ugly" etc... Why is this? Are arrays not an efficient ...
-1
votes
2answers
85 views

What is the benefit of passing a callback to ob_start compared to just processing the result of ob_get_clean()?

I am wondering if there is any real benefit to using this... function getSomeContent() { ob_start(function($content) { // ... modify content ... return $content; } // ... ...
3
votes
5answers
199 views

Length of longest word in a list

What is the more pythonic way of getting the length of the longest word: len(max(words, key=len)) Or: max(len(w) for w in words) Or.. something else? words is a list of strings. I am finding I ...
0
votes
5answers
100 views

Which syntax to use for better performance and resource utilisation

After reading several articles on how to fine-tuning my code, I found out that the way we are declaring objects and variables could drasticatly impact the performance of our application. This is more ...
0
votes
4answers
58 views

python: elegant and code saving way to convert a list

First of all sorry for the easy question. I have a list (just an example) points = [[663963.7405329756, 6178165.692240637], [664101.4213951868, 6177971.251818423], [664099.7474887948, ...
2
votes
1answer
73 views

Python: suggestion how to improve to write in streaming text file in Python

I am studying how to write in streaming strings as files in python. normally i use an expression as myfile = open("test.txt", w) for line in mydata: ... myfile.write(line + '\n') ...
1
vote
5answers
174 views

Python: using sys.exit or SystemExit differences and suggestions

reading online some programmer use sys.exit or SystemExit. Sorry for the basic questions: which is the difference? when i need to use SystemExit or sys.exit inside a function? example ref = ...
1
vote
3answers
65 views

Python: performing a function to check if the file has a suffix

I wrote this function to use from an other function, checking if the output has the correct suffix. Before I use it I have two questions: Is TypeError the best exception to use in this case? Is ...
0
votes
2answers
79 views

python: best way to improve a function with a error message

i wish to improve the following function. Given a Pixel data types in GDAL (ex: "Int16") resturn a code number. def GDAL_data_type(dataType): dtypes = { "Unknown": 0, "Byte": 1, ...
0
votes
4answers
44 views

save a txt file in Python, some tips to improve my code [closed]

first of all, sorry for this easy question. I know these questions are really basic. I need to save a txt file in Python 2.7 with several rows. I need to ask some suggestions to improve my basic code. ...
0
votes
4answers
111 views

Python: implement a script in a function. Some suggestions

first of all, i am quite new in Python (an programming area) but i wish to learn and convert a function developed by jwpat7. Given a set of points derived from a convex hull hull= ...
0
votes
1answer
46 views

Setting a value only on first access — best practice, (micro)performance?

In the below code, assume that getAndClear() will get called billions of times, i.e. assume that performance matters. It will return an array only during its first call. It must return null in all ...
3
votes
2answers
115 views

Python: How to improve performance of a script to obtain the Bounding Box of a set of points

I have a set of points (x and y) and i wish to know the maximum and Minimum values of X and Y (the Bounding Box). I coded these lines where i read all points with list comprehension and after i use ...
1
vote
1answer
224 views

Python: how to use a progressbar inside my function

I am using the following function: def LAS2TXTGridClip(inFile,poly,MinPoints=1): sf = shapefile.Reader(poly) #open shpfile sr = sf.shapeRecords() poly_filename, ext = ...
3
votes
7answers
198 views

Java performace vs. code-style: Making multiple method calls from the same line of code

I am curious whether packing multiple and/or nested method calls within the same line of code is better for performance and that is why some develpers do it, at the cost of making their code less ...
3
votes
1answer
235 views

Python: suggestions to improve a chunk-by-chunk code to read several millions of points

I wrote a code to read *.las file in Python. *las file are special ascii file where each line is x,y,z value of points. My function read N. number of points and check if they are inside a polygon ...
7
votes
7answers
261 views

Performance or style difference between “if” and “if not”?

Is there a performance difference or style preference between these two ways of writing if statements? It is basically the same thing, the 1 condition will be met only once while the other condition ...
1
vote
2answers
73 views

Will there be a performance difference between different coding styles in php? [closed]

<?php suppose 10 lines of php code is here; ?> and <?php ?> <?php ?>...10 times same above script 10 times in separate tags. will this create any performance difference ...
0
votes
3answers
75 views

Different functions use the same function, reduce overhead

Code: namespace Dialog { enum class Type {Info, Warning, Error}; enum class Buttons {OK, OK_CANCEL, YES_NO, YES_NO_CANCEL}; void Box(Pane* parent, Core::String, Core::String, Buttons, ...
1
vote
4answers
169 views

Declaring variables and functions, in what order?

Context I'm learning how to code in javascript consistently, readably and maintainably. I found nothing about the order of declaration of variables and functions. Example: var example = { A: ...
3
votes
3answers
158 views

C++ Code Style - Best place to create objects

My friend and I were discussing the other day which style of code is better. Case A: int function() { largeobject a; //do some stuff without a //do some stuff with a } Case B: int ...
0
votes
1answer
185 views

How to avoid calling the database again when I already have all I need in the result of the SQL call

In my application I have a complex database structure. In order to generate the JSON response for a call, I need to get data from many joined tables. I created a SQL query that fetched all the data I ...
1
vote
4answers
174 views

Output Commas between Elements

my question is similar to this one, but I don't want to use a library for this. Imagine we have an array of names we want to output. string names[] = { "Peter", "Max", "Jack", "Daniel", "Luke" }; ...
6
votes
1answer
137 views

which one of == and =:= should I use?

Difference between equal to and exactly equal to term comparison operators explains the difference, but an important question is also: which one should I use, when I don't compare floats to other ...
2
votes
2answers
121 views

using var keyword in a for loop

This is related to "var" or no "var" in JavaScript's for in loop? (but talks more about scope - this question IS NOT about scope) Is looping through an object or an array more ...
0
votes
1answer
448 views

Improve performance while updating entities in CRM 4.0 using C#

I have a mass update application that updates the record of a particular entity, by updating some of it's fields based on some logic. I am using TargetUpdate for the record updating because I have a ...
1
vote
5answers
130 views

What is the correct way of using a Dictionary in C#?

I have (lots of) objects Foo with an unique ID and want to store these in a Dictionary. The dictionary key in C# can be any primitive type or object. I could use the integer foo1.ID as key but also ...
1
vote
6answers
68 views

Does defining variables as “locally” as possible make the implementation faster?

While programming, I often come across the following scenario (described in code). I define variables in the block that they are going to be used. int maximumLengthOfToken = 0; ...
0
votes
3answers
243 views

Open source Java projects that use `final` modifiers everywhere

The issue of using or not using the Java final keyword has been discussed many times on SO. I am trying to collect some well-known open source Java projects that are using it. I haven't found any so ...
1
vote
1answer
66 views

Range of Elements with Quick Access by Two Keys

I have these informations to save in a variable for my basic neural network simulation. Node (NodeId, State) Relationship (SourceNodeId, TargetNodeId, Weight, State) State is the activation level ...
3
votes
5answers
748 views

Is reading app.config expensive?

No question I am yet to be hit by any read speed bottleneck. I am asking to know; if reading app.config frequently is a bad programming choice. I have known of database operations getting expensive. ...
2
votes
6answers
844 views

Java Getter Methods - Best Practices

Often, I come across code where the Getter method is repeatedly used/abused to get some value or pass it as a method parameter, for ex: public class Test { public void someMethod() { ...
0
votes
1answer
35 views

How to save time while coding with database [closed]

I spend lot of time on To fill dummy data into table to test on code result While to increase performance in terms of result from data base etc
6
votes
4answers
2k views

Yet again on string append vs concat vs +

May be I am splitting hair, but I was wondering in the following case: String newString = a + b + c; //case 1 String newString = a.concat(b).concat(c); //case 2 StringBuilder newString = new ...
-1
votes
2answers
108 views

PHP function - what is better structure for an if/else statement? [closed]

I'm writing a function and wondered if it's best (in regards to performance and coding practices) to handle returning conditions like this: public function func_1() { if ( true == $condition) { ...
1
vote
3answers
71 views

Coding for Input/Output: Speed or Memory priority?

I am currently writing a simple piece of IO parsing, and is in a dilemma as to how should I code it. This is the case of a web application, where this particular parsing function may be called ...

1 2 3