Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
5answers
1k views

How does a programmer employ deliberate practice? [closed]

How does a career developer sharpen and expand their skill set to reach the level of expert at their craft. A lot of scientific evidence points at the fact that experts become experts through many ...
11
votes
2answers
145 views

Better assert() in Python - Improve it [closed]

Yesterday a friend of mine who is a ruby fan (poor guy!) showed me wrong. wrong improves the buildin assert in Ruby adding a more detailed messages and the content of asserted variables at the point ...
8
votes
5answers
390 views

A weighted version of random.choice

I needed to write a weighted version of random.choice (each element in the list has a different probability for being selected). This is what I came up with: def weightedChoice(choices): """Like ...
6
votes
6answers
163 views

Simple, but can this be better?

This is just a simple check to see what letter grade to output. Is there any faster and more efficient way to achieve the objective? if ( $grade >= 90 ) { echo "A"; } elseif ( $grade ...
4
votes
3answers
288 views

Does caching jQuery objects in an array improve speed?

Today I was making an effect for share-icons using jQuery. The effect is a bit complicated so I tried to think of a way to optimize preformance. I ended up caching the $(this) object into array. ...
3
votes
2answers
203 views

Moving files to appropriate location based on their extension

I have a cleanup script that moves files based on their extension to appropriate preset locations. For example, a file with the extension .xls will be moved to ~\XLS folder, .sql to ~\SQL and so on. ...
3
votes
1answer
330 views

Any code golf sites that are about better code and not just smaller file size?

IMO, codegolf.com's challenges teach you how to write bad code by making it as small in filesize as possible, in effect making your code as unreadable as it can be. Are there other sites where its ...
3
votes
1answer
134 views

How to improve the level of code standards in iPhone Development?

I have done some of the applications and my apps are in the AppStore now. But i am always thinking how to write the optimized code and efficient way. What are the thinks will have in the mind, when ...
3
votes
5answers
190 views

Clarity vs. Obfuscation writing code

Sometimes there are a solution that it's simple and elegant but imposible to understand by all. What do you think about this expresion, exchange value of two variables, without auxiliar variable: ...
3
votes
3answers
162 views

How to refresh screen so that closed forms actually disappear

I have multiple forms that popup during an intensive operation. For example, when a form popups asking user for something, and the user clicks OK, the form's graphics stay on the main screen, even ...
2
votes
3answers
156 views

Finding unused objects (non-primitive values)

Follow up to question: g++ does not show a 'unused' warning. I fully understand why g++ doesn't warn about these variables, but I would like it to somehow find them anyway. The code I'm working on ...
2
votes
8answers
133 views

jQuery - better way to write this code?

Im beginning in jQuery / javascript and I would like to know if there's a better way to write what I did. So, in my webpage, I have a list of thumbnails, when you mouseover a thumbnail, two options ...
2
votes
3answers
55 views

SqlCommand, passing something that could be null

I have a SQL command that I've been asked to modify, and I'm having some troubles with the fact that what I'm passing to the SQL can now be null. If I'm passing a value, I can rely on the columnName ...
2
votes
1answer
156 views

App Engine Messaging System with Message Status - Design Pattern

I'm building a Threaded Messaging System that will be hosted on Google AppEngine I've modeled it after the technique described by Brett Slatkin in Building Scalable, Complex Apps on App Engine class ...
2
votes
2answers
142 views

Making a better Makefile

so I learned what a Makefile was some time ago, created a template Makefile and all I do is copy and alter the same file for every program I'm doing. I changed it a few times, but it's still a very ...
2
votes
2answers
44 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
8answers
557 views

Prime number checker unbelievably slow

I have this piece of code which checks whether a given number is prime: If x Mod 2 = 0 Then Return False End If For i = 3 To x / 2 + 1 Step 2 If x Mod i = 0 Then Return False End ...
2
votes
2answers
120 views

How to start reading txt file from a specified line using PHP?

I have a txt file that has a change-log.I'm trying to display the new changes only for the current version. I wrote a function to read the file and check every line if it has the wanted words, if it ...
2
votes
9answers
221 views

Which book should I pick to improve my program designs/design patterns?

I want to learn about design patterns and from what I've seen the most recommended ones are the Gang of Four's Design Patterns and Head First Design Patterns. There are also language specific books, ...
1
vote
1answer
75 views

Improvements for isPrime function

There are many problems on the internet that require you to find prime numbers, so I decided to write a set of functions to find them. I used the Sieve of Eratosthenes for generating the primes as it ...
1
vote
3answers
91 views

How to reduce the access time in a vector

I´m trying to increase an algorithm speed, So I ran my application with "Instruments" for iOS, the results, almost 75% of time is used to save the calculations in a vector. Does anyone know a better ...
1
vote
4answers
63 views

Elegant allocation of static readonly collection of strings

I want to create a static ReadOnlyCollection with strings. Is there any way to make this expression shorter or more elegant in some way? public static readonly ReadOnlyCollection<string> ...
1
vote
6answers
53 views

Is this “listMerging” code improvable?

I have a method who merge two lists. The two merged lists are lists of subtypes objects of the returned list. So Sub1 and Sub2 types are subtypes from Sup1 type. Here is my code var listSub1 = new ...
1
vote
3answers
55 views

Implementing `continue;` keywords in jQuery's `each();` method

Imagine that I want to loop over a list of jQuery objects, and for each of them execute some functions. However, if in some place, a criteria is not met, then I simply want to continue; to other ...
1
vote
1answer
39 views

Improve software development

I'm looking for a way to improve the software development process in my organization. Since most of our work is data system in ASP .NET I'm looking for one of the two: Code infrastructure to allow ...
1
vote
1answer
53 views

How can I apply DRY to this JavaScript object?

Consider that I have a JavaScript object like this one, which is responsible for managing messages: var _message = { removeMessages: function () { ...
1
vote
2answers
25 views

Is there a reason not to use one time objects over explicitly declared ones

Lately I have been spending a lot of time ensuring that my objects all had names that would allow easy identification of their meaning. I have also discovered that you can use objects in a one time ...
1
vote
1answer
149 views

doctrine many to many relation save

I have i little problem with save Tags of an Portfolio with Doctrine. I have Portfolio Model: abstract class BasePortfolio extends Doctrine_Record { public function setTableDefinition() { ...
1
vote
1answer
85 views

Want to learn to improve slow mysql query

I have a MySQL query to select all product id's with certain filters applied to the products. This query works but I want to learn to improve this query. Alternatives for this query are welcome with ...
1
vote
3answers
107 views

How can I improve this code?

I've got the following script in my code behind that happens after a user clicks a button: ScriptManager.RegisterStartupScript(Page, Page.GetType(), "scrollToAnchor", ...
1
vote
5answers
193 views

How to split and assign 2 words?

I have phrase with two words: var phrase = "hello world" and I want to split and assign like in: var words = phrase.split(" "); var word1 = words[0]; var word2 = words[1]; Is there a easier way ...
1
vote
2answers
81 views

Searching through a comma-sperated MySQL field

Sample Table CREATE TABLE `foo` ( `id` INT NOT NULL AUTO_INCREMENT , `keyword_ids` VARCHAR(128) , PRIMARY KEY (`id`) ); Sample Data INSERT INTO ...
1
vote
1answer
307 views

Any alternative's to multiline if statements?

Are there any alternative patters for reducing a multi-line if statment such as: if ($x == $y && $x == $z && $y == $v && $m == $t && $f == $x && $h ...
1
vote
2answers
121 views

Improving Swing layout

I have a following code : import java.awt.BorderLayout; import java.awt.FlowLayout; import java.awt.Label; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import ...
1
vote
0answers
133 views

Best Practices for Editing Hierarchical Data

I just finished making a change to an ASP.NET Ajax screen from a few years back. It was harder than expected to build and maintain. On this change, I estimated 12 hours and spent 4 days. Granted I ...
1
vote
10answers
3k views

Alternative to Switch Case in Java

Is there any alternative way to implement Switch Case in java other than if else which is not looking good. A set of values will be there in combo, according to selection corresponding method has to ...
0
votes
1answer
40 views

User Login Functions: Code Improvement

I have not used CI or PHP for a few months and I now have to develop a system. The below MVC is pretty crap and I was wanting to know how I could improve my code and I also want to include checking ...
0
votes
1answer
77 views

Conversion short to int and sum with neon

I want to convert the next function to neon: int dot4_c(unsigned char v0[4], unsigned char v1[4]){ int r=0; r = v0[0]*v1[0]; r += v0[1]*v1[1]; r += v0[2]*v1[2]; r += ...
0
votes
5answers
86 views

How can I write a general Array to CSV file?

Assume that I have an Array of objects in C#, and I want to write it to a file in CSV format. Assume that each object has a ToString() method, which is what I want to be printed. Currently I am using ...
0
votes
5answers
91 views

Reducing the lines of code and creating a one liner of the given code

I wrote a small code to set the system's date/time. I took time in a scalar $time and then split that and stored in array @timeIs. Then used $hour and $min to extract out hour and minutes from the ...
0
votes
1answer
85 views

Animation improvement in Matlab

I have written a code to create an animation (satellite movement around the Earth). When I run it, it works fine. However, when it is modified to be part of a code much more complex present in a ...
0
votes
0answers
34 views

Please help me improve a small login app in GWT using history tokens

I am just a baby in GWT and have tried to implement a small login app which has a login page, a main screen, a withdraw & a deposit page. I want my user to log-in before using any module (if he ...
0
votes
1answer
50 views

How can this click event be improved? Tile selection

I've got an isometric map with selectable tiles. Currently I have it set up where the tiles become "highlighted" when they are clicked on, and return to normal when a different tile is clicked. This ...
0
votes
6answers
58 views

Improving to class toggling

I am using jQuery 1.6 and I would like to improve the following code (that is, write less do more): if (row.hasClass('line_odd')) { row.removeClass('line_odd'); row.addClass('line_even'); } else ...
0
votes
7answers
283 views

C, split array of chars in two arrays of chars

I would like to split one array of char containing two "strings "separated by '|' in two arays of char. There is my sample code. void splitChar(const char *text, char *text1, char *text2) { for ...
0
votes
0answers
110 views

Woorank score improvements [closed]

We are trying our best to improve our sites rating in WooRank and we are confused by how we can improve our Text/HTML ratio and the language detection. Take a look at our rating here: ...
0
votes
1answer
142 views

Show hide buttons based on Dropdown list - json

Currently I have an aspx page that contains a dropdown list and four buttons. Based on the selection made in the dropdown list then a combination of the buttons are displayed. I currently have this ...
0
votes
1answer
389 views

Improving HashMap in C++

MOVED TO codereview.stackexchange.com at http://codereview.stackexchange.com/questions/892/my-hashmap-in-c . But I will take the replies from either place :) Hi Guys, I have created a HashMap in ...
0
votes
6answers
127 views

Improve Code: Avoid repetition (delegates? generics?)

I'd like to improve this piece of code. I have 3 methods doing (basically) the same thing, but calling a different overload of a method according to the datatype passed as parameter. //FUNC 1 ...
0
votes
2answers
1k views

vertical divider css

I am creating a vertical divider, that works fine. But the css is cumbersome. The css is: .headerDivider1 { border-left:1px solid #38546d;height:80px;position:absolute;right:250px;top:10px; } ...

1 2