Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

132
votes
96answers
9k views

What are the best habits of highly effective programmers?

I guess that many of you have read 7 habits of highly effective people. They're great, but still too general. Can you suggest some good habits of a highly effective programmer? The habits that make ...
103
votes
16answers
61k views

What is “missing” in the Visual Studio 2008 Express Editions? [closed]

In particular, what functionality is not available? what restrictions are there on its use?
54
votes
12answers
7k views

Your favorite code kata [closed]

What are your favorite code kata? What do you do to practice software development? Where do you go to find new small projects to practice? We already know Jeff Atwood's answers.
19
votes
35answers
2k views

What Simple Changes Made the Biggest Improvements to Your Delphi Programs

I have a Delphi 2009 program that handles a lot of data and needs to be as fast as possible and not use too much memory. What small simple changes have you made to your Delphi code that had the ...
16
votes
7answers
3k views

A more pretty/informative Var_dump alternative in PHP?

Every decent programmer has a print_r or var_dump wrapper they use, love and assign shortcut keys to, why don't we share our favourite ones. EDIT: A full year of time and labor after asking this, ...
13
votes
17answers
1k views

What was the most productive improvement suggestion you ever made for your team

I suggested the testing and functional teams to use Freemind map for jotting the functional flows and test steps. There was some paranoia but our module took it up and the QA teams were surprised to ...
11
votes
20answers
2k views

What's the best way to be a great programmer? [closed]

I've been programming since college, was a hobbyist programmer as a kid, but never got serious until I was a freshman. That was almost a decade and a half ago. One thing I've noticed is that when ...
10
votes
10answers
373 views

What are the things you would like improved in the Ruby language?

I read somewhere that Ruby is the love-child of Smalltalk and LISP, with Miss Perl as the Nanny. I have a lot of respect for Ruby's parents, but I'm not sure I like the influence Miss Perl had on the ...
10
votes
9answers
409 views

Improving really bad systems

How would you begin improving on a really bad system? Let me explain what I mean before you recommend creating unit tests and refactoring. I could use those techniques but that would be pointless in ...
8
votes
18answers
2k views

How many monitors improve programming speed? [closed]

How many monitors improve programming speed? Do you have any experience with programming using 1,2,3,4... monitors? Which configurations increase work speed and are worth trying out? Is it worth using ...
6
votes
12answers
357 views

Agile in small bites: most bang for the buck

What single aspect of agile development should we implement first to improve our development process, and why? I'm in a situation that's requiring me to "tweak" my process, rather than re-engineer ...
5
votes
1answer
273 views

What debugging tools does R lack that other languages have? [closed]

I'm familiar with browser(), trace(), traceback(), and options(error=recover). I'm also playing with the debug package, which looks nice. All of these put R miles ahead of other statistical packages ...
5
votes
13answers
478 views

Brainstorming: Requirements of a Swing Replacement

What is required of an updated and legacy free Graphical User Interface API for Java? //TODO: Add your ideas below.
4
votes
6answers
90 views

Please help me make this (working) bit of jQuery not so terribly redundant

While the following bit of jQuery works fine on my site, it seems awfully redundant. Is there a better way to do this? $(function(){ $('#sidebar #filters ul#filters-surnames li ...
3
votes
1answer
106 views

Where would I find critiques for my source code?

Well the most obvious answer is here. Self taught programming has some down sides, one of which is the lack of code peer critique which can help one expand his/her programming scope. Since I'm working ...
3
votes
5answers
450 views

Critique on jQuery Use

I'm busy introducing myself to jQuery by implementing a little system where onmouseover on an element causes a text balloon to pop up close to the element. I feel like I'm using too much vanilla JS ...
3
votes
3answers
664 views

Speed boost to adjacency matrix

I currently have an algorithm that operates on an adjacency matrix of size n by m. In my algorithm, I need to zero out entire rows or columns at a time. My implementation is currently O(m) or O(n) ...
2
votes
2answers
85 views

How can I make the website I'm working on load faster?

I am working on a website that I "inherited" in my job and it currently uses PHP/HTML/CSS/JS and it takes AGES to load, but the thing is without the PHP it loads really fast. I, however, am not very ...
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
78 views

New project - should I learn new language or use a language I already know [closed]

Afternoon. I have left the names of the languages out of the question, to keep it general and to stop flame wars. I am about to start a new project, and I would usually use language A. I am good at ...
2
votes
1answer
191 views

need help in improving Horizontal sliding div

I have script: http://jsfiddle.net/NV2uV/ It works, but I do not like. Cons: Wrench (edge blocks). In the transition from one unit to another - animation is performed in two steps (I want a ...
2
votes
2answers
46 views

Paginating requests to an API

I'm consuming (via urllib/urllib2) an API that returns XML results. The API always returns the total_hit_count for my query, but only allows me to retrieve results in batches of, say, 100 or 1000. The ...
2
votes
4answers
1k views

How do i identify improvement areas for software development in my team?

i just joined this new group and basically haven't even really done any heavy lifting development but just some basic web store migration stuff. and i've been given the challenge of coming up with ...
1
vote
2answers
38 views

Jquery compression in terms of performance

Consider a compressed Javascript file (containing few merged javascript files) called compressed.js. This file could be called using: <script src="javascripts/compressed.js" ...
1
vote
3answers
129 views

How to improve the efficiency of the standard matrix addition algorithm in c

How to improve the efficiency of the standard matrix addition algorithm. The matrix is represented by using 2D array and is added sequentially.
1
vote
1answer
129 views

seeking for Hibernate debug info improvement [closed]

Possible Duplicate: Print query string in hibernate with parameter values I am using Hibernate as the persistence layer. And I am setting show_sql to true in order to see the debug info. ...
1
vote
3answers
317 views

Optimize WPF ComboBox search with thousands items

I have a WPF ComboBox control with an itemsSource of 66000 items. To improve loading performance I've used VirtualizingStackPanel and it's ok but now I've another problem. The ComboBox is editable ...
1
vote
2answers
340 views

how to improve quality with ffmpeg flv

i'm haveing problem when converting movies to FLV, i get a lot of small squares in the picture. maybe someone know why? and how i can remove those squares and make picture better? my code is: ...
1
vote
0answers
1k views

How to rewrite uppercase letter URL to lowercase without `RewriteMap` or manual adding path `/some-dir/`, or `RewriteBase /some-dir`?

Unfortunately most of shared servers does not support RewriteMap. So I am looking for an other .htaccess solution to rewrite uppercase letter URL to lowercase without RewriteMap or manual adding path ...
1
vote
1answer
91 views

Question about architecting asp.net mvc application?

I have read little bit about architecture and also patterns in order to follow the best practices. So this is the architecture we have and I wanted to know what you think of it and any proposed ...
1
vote
2answers
184 views

Java Multi Link Checker Spider - Improvements needed!

I have following working code (changed here and there so you use your brain when you copy and paste it). I'd like to improve it so it detects all pages that are invalid including domains for sale. It ...
1
vote
3answers
223 views

Software to Improve OCR Results Based on Output from Multiple OCR Software Packages

Is there an already-existing piece of commercial or academic software that can overlay results from multiple OCR packages (Abbyy FineReader, Adobe Acrobat Professional, ReadIris, etc.) provide fully ...
1
vote
3answers
162 views

Any way to improve this python function?

def __number(): # This line returns the number of the latest created object # as a "Factura" object in format "n/year" last = Factura.objects.filter(f_type__exact=False).latest('number') ...
1
vote
2answers
355 views

Split node list to parts

xml: <mode>1</mode> <mode>2</mode> <mode>3</mode> <mode>4</mode> <mode>5</mode> <mode>6</mode> <mode>7</mode> ...
1
vote
2answers
61 views

Nodes set of the same type with if-test. Make it less

How to make the code more beautiful (compact)? <xsl:template match="part"> <table class="part"> <xsl:if test="name != ''"> <tr> ...
1
vote
3answers
44 views

Wrapping element in choose construction. How to improve?

Is there any way to optimize this code. <xsl:choose> <xsl:when test="val1 = val2"> <xsl:apply-templates select="node"/> </xsl:when> <xsl:otherwise> ...
1
vote
1answer
85 views

PHP - Quicker way to do this?

foreach(self::getGroups() as $group) $group_ids[] = $group->getId(); Is there a better, cleaner and more efficient way to do that? Thanks! :-)
1
vote
2answers
100 views

How to improve this code using $(this) in jQuery?

I have the following jQuery function (simplified): function doSomething(el, str) { el.find('.class').text(str)); } Don't worry about the .text() part, in reality I'm doing something a bit more ...
0
votes
3answers
78 views

A way to call method once

I have the following, I want to move the setting of webDB and item outside of the following public string method which is an example how would I go about doing this. public string Width { get ...
0
votes
2answers
81 views

Prerequisites for understanding algorithms? [closed]

What areas of math are prerequisite for learning algorithms?
0
votes
1answer
55 views

Post activities on Google plus

I'd like to make a plugin so that people can post activities on Google plus more easily. Currently, the Google Plus API is read-only. So there is not way to post activities there programically. ...
0
votes
3answers
63 views

How can I transcend my confusion over CSS?

I am interested in improving my understanding of CSS. I have been making web pages for a while, but I am still constantly thwarted by bizarre behavior that I can't explain when I try to get things to ...
0
votes
5answers
93 views

Can someone help me improve this linq

I have a code here that generates XML for Engineer list using linq. My question is that is there any ways to improve and speed up this method public static string ...
0
votes
2answers
48 views

Code suggestions - using $.each() to set a kind of use meter

Hoping for a quick peer review here. An associate and I build out a video popchart plugin for a client in south korea (here's the test site - http://izepic.com/kpopcharts/). My question relates to ...
0
votes
2answers
169 views

How to increase the accuracy of the Speech to Text converter

I am using speech-to-text conversion in my application, based on Android API's. It is working pretty well ... but currently it is utilizing US accent as a basis. This results in the application ...
0
votes
5answers
225 views

Improving the efficiency of Standard Matrix Multiplication Algorithm

How to Improve the efficiency of standard Matrix Matrix Multiplication Algorithm. The main Operation Involved in This Approach is C[i][j]+=A[i][p]*B[p][j] What can be Done to Improve the efficiency ...
0
votes
2answers
302 views

How can I improve jQuery “Tag-It” autocomplete?

I like jQuery's Tag-It plugin, but if I have it set to autocomplete, it doesn't always work the way I want it to. Here's an example. My autocomplete array consists of "Pink Lady Apple", "Granny ...
0
votes
1answer
44 views

Improving on retrieving values for a class constant

I am using Ruby on Rails 3.0.7 and I would like to set a class CONSTANT value. Since the .each_key method for a hash class seams do not return values as it makes a map method for array classes, I ...
0
votes
1answer
68 views

GetTime helper function. Some improvement code question

I'm trying to implement a GetTime helper function. It gets the current time, measured in counts, then gets the number of counts per second of the system, so you can get the current time in seconds ...
0
votes
6answers
255 views

improve and simplify css with php parser

I want to improve css syntax in several ways such as: defining variables link-color1 = #fff mathematical computing width:500-3-2 this seemy stupid but with variables: width: container - inner - ...

1 2