Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
4answers
1k views

Type erasure techniques

(With type erasure, I mean hiding some or all of the type information regarding a class, somewhat like Boost.Any.) I want to get a hold of type erasure techniques, while also sharing those, which I ...
15
votes
6answers
255 views

advice on nested Java try/finally code sandwiches

I would like some advice on a technique I bumped onto. It can be easily understood by looking at the code snippets, but I document it somewhat more in the following paragraphs. Using the "Code ...
14
votes
11answers
1k views

How to efficiently do many tasks a “little later” in Python?

I have a process, that needs to perform a bunch of actions "later" (after 10-60 seconds usually). The problem is that those "later" actions can be a lot (1000s), so using a Thread per task is not ...
14
votes
20answers
983 views

How do i get out of the habit of procedural programming and into object oriented programming?

I'm hoping to get some tips to kinda help me break out of what i consider after all these years a bad habit of procedural programming. Every time i attempt to do a project in OOP i end up eventually ...
13
votes
5answers
394 views

Locking strategies and techniques for preventing deadlocks in code

The common solution to preventing deadlock in code is to make sure the sequence of locking occur in a common manner regardless of which thread is accessing the resources. For example given threads T1 ...
9
votes
4answers
258 views

Techniques and tools for debugging problems on remote machines?

Users have been reporting problems/crashes/bugs that I can't reproduce on my machine. I'm finding these problems difficult to fix. I've started using EurekaLog (fantastic!) and SmartInspect. Both ...
7
votes
3answers
115 views

How to reduce the frequency of such errors in my code?

Take a look at this JsFiddle: var requests = [ $.ajax("http://search.twitter.com/search.json", { data: { q: 'ashishnjain' }, dataType: 'jsonp' }) .done(function() {console.log("request");}), ...
4
votes
2answers
89 views

Is there any easier way of creating overload for methods in C#?

This is a general programming doubt rather than a specific one. But I would state it with an example. Suppose I'm creating a MessageBox class of mine own, and I want .Show() method to be implemented ...
4
votes
1answer
128 views

Purpose of IF, ELSE, FOR macros?

I have a source code of a library which has a lot of strange IF, ELSE, FOR, etc. macros for all common C-keywords instead of using just usual if,else,for,while keywords. These macros are defined like ...
3
votes
4answers
79 views

C# programming strategy- how to pass objects down into a chain of classes

I'm working on bettering my strategy of working with classes and objects. What is the best way of passing an object down a through a chain of specific classes to keep the code organized. example: of ...
3
votes
2answers
51 views

Should classes that are used for selection in JavaScript be defined in the CSS file?

Our designer is calling for us to add the classes we use for JavaScript selectors to the CSS file with a comment stating that they're for JavaScript use. The intention is to avoid conflicts of ...
3
votes
6answers
337 views

What old-school programming/system building techniques would you like to see used more? [closed]

As an industry we tend to have a short attention span and be easily distracted by "new" things—which often turn out to be old things, effortfully re-invented. Tony Hoare said that if we could learn ...
2
votes
5answers
95 views

Overloading operator[] for a template Polynom class

I am writing a template Polynom<T> class where T is the numeric type of its coefficients. The coefficients of the polynom are stored in an std::vector<T> coefficients, where ...
2
votes
1answer
112 views

Loading files that meet certain criteria into hidden buffers in vim

I'd like to do some code refactoring in vim. I have found the following gem to apply transformations to all buffers. :dobuf %s/match/replace/gc My code is layed out with the root directory having a ...
2
votes
4answers
109 views

Is it better to roll all work into one loop or break it into several loops?

I am parsing a folder structure that is quite heavy (in terms of the number of folders and files). I have to go through all the folders and parse any files I come across. The files themselves are ...
2
votes
3answers
222 views

HashMap.containsKey() - how to search for a class?

Hello if you search in an HashMap<String,String> for a specific value of a key-value-pair, you can write the following: myHashMap.containsKey(myString); But how can I manage it if the key ...
2
votes
4answers
145 views

Writing code to help the compiler to do optimizations

Does anyone know if there is a list of what a compiler do to optimize a source code? I prefer GCC as example. I want to know what a programmer should do with the code to get good optimization and ...
2
votes
1answer
182 views

How to receive packets on the MCU's serial port?

Consider this code running on my microcontroller unit(MCU): while(1){ do_stuff; if(packet_from_PC) send_data_via_gpio(new_packet); //send via general purpose i/o pins else ...
2
votes
2answers
143 views

Ruby: counters, counting and incrementing

If you have seen my previous questions, you'd already know I am a big nuby when it comes to Ruby. So, I discovered this website which is intended for C programming, but I thought whatever one can do ...
1
vote
4answers
85 views

Is there a way to perform the “andand” technique in java?

As described here: We connect the object and its method (or property) call with a logical AND operator (&&), so the method is only invoked if the object is truthy (not null). This ...
1
vote
2answers
98 views

Building a webshop frontend based on XML data in Symfony

I'm faced with the nice task of building some kind of almost webshop in Symfony. Almost meaning that I won't need a shopping cart or secure connection or anything. Just a frontend to display products, ...
1
vote
4answers
99 views

java techniques for automatic resource release? “prompt cleanup”?

I'm porting to Java some C++ code that uses the pretty common C++ trick of allocating an object on the stack (it happens to implement a UDP connection) which has some internal state information (here, ...
1
vote
3answers
222 views

Class responsibility colloboration card method

Class Responsibility Colloboration ( CRC ) card, the technique to make a design that the classes look like and how they will interact. Feel free, when give a suggestion to use this technique with ...
1
vote
2answers
54 views

What techniques are there to prevent / remove shared state?

Problem Shared state is in certain cases a bad thing. I am in a project right now where pretty much all methods perform some sort of state change. I believe that's a problem. On one hand, I can't ...
1
vote
2answers
78 views

Design Technique: How to design a complex system for processing orders, products and units

Programming is fun: I learned that by trying out simple challenges, reading up some books and following some tutorials. I am able to grasp the concepts of writing with OO (I do so in Ruby), and write ...
1
vote
2answers
1k views

Ruby: Mark an object for garbage collection

I was wondering if there is a similar .finalize() method for Ruby objects, that marks them ready for garbage collection. If I would create 20,000 objects and each instance has a counter, I would like ...
0
votes
1answer
51 views

Programming Techniques/Style for avoiding large switch/if blocks in C?

Was just a quick question to see if there are different ways you code something similar when it comes to evaluating conditional statements/control flow. For example: If Statements Switch Statements ...
0
votes
0answers
83 views

What do people find difficult about function pointers? [closed]

Only few people are using function pointers in C. Yet, using function pointers to encode complexity has some beneficial properties, partly described in Rob Pike's Notes on Programming in C back in ...
0
votes
0answers
44 views

Technique to overcome different browser formating/display

I am developing a Website Updater. The front end uses normal HTML, CSS & Javascript. The backend uses Python scripts. The way it works is that certain p, b, etc HTML elements are part of the class ...
0
votes
2answers
40 views

How to work on a project with limited access?

It's nice to have a complete project at your disposal to see how an application works when it's modified. That's in an ideal situation. Now, say you have ftp access to a web site root with all the ...
0
votes
2answers
34 views

How to extend jQuery from CDN?

I'm currently using a jQuery resides on my own FTP together with other web files. I am thinking of using a jQuery from CDN since suggested by the YSlow. The question is, how can I extend that jQuery? ...
0
votes
0answers
36 views

Is this technique okay?

I'm trying to save an HTML table to a database. Basically I I'm using ASP.NET(VB.NET) for the server-side. I'm tired of using WebForms and the controls so I've decided to try another technique which I ...
0
votes
0answers
24 views

How would one programatically record MySQL activity (queries)?

I'm thinking of Jet Profiler (this videos shows better what I mean). I was curious about the technique. Does it sit on top of mysqld?
0
votes
1answer
82 views

Tips for tracking down valgrind memory leaks

Any tips for tracking stuff down? Techniques? Any tools useful to check callers of function x(some parts of the call stack appear as ??? or are skipped). Does --track-origins=yes make things much ...
0
votes
1answer
73 views

How much checking should one do? - (simple jQuery Log function sparks philosophical debates)

I created a simple a jQuery function that is to be used for developer event and error logging... it calls a web service function that simply logs several passed parameters to a log table called ...
0
votes
2answers
194 views

Wired-In programming?

I saw the social network movie a few weeks ago and something I wonder about was the term "Wired-In Programming". I looked up and found this on google: A technique used while using HTML Programming ...
0
votes
0answers
349 views

Examples on JQuery / TMPL / Data Link, or maybe Backbone.js?

I have the following setup: SQL Server 2008 Entity Framework 4, code generation off ASP.NET POCO Generator C# Repository Service / Control Function to transform POCOs to ViewModels ViewModels have ...
0
votes
2answers
36 views

How can I keep one part of an application responsive when other parts are not so?

I use RDP sessions a lot, and I noticed that, even if the server I connect to is slow or crashed, the RDP window/toolbar itself is fully responsive/clickable. This is probably due to the RDP window is ...
0
votes
1answer
125 views

Is it possible to create a domain model for legacy code without refactoring?

I currently have a client that wants me to 'abstract' out a domain model from the existing code but they specifically said that I shouldn't refactor the existing code itself. My question is 1) whether ...
-1
votes
3answers
143 views

Techniques for writing good python code [closed]

What are the well-known and generally recognized (not subjective) techniques for writing good python code. Structuring it (in opposite to spaghetti code). Good practices for decomposition and decision ...