Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
4
votes
4answers
275 views

Remove redundant casts in Java

I've been generifying some Java code that used lots of casts, and now most of them are redundant and unnecessary. It could be very tedious to inspect all the usages of the code to remove them, so: ...
4
votes
5answers
357 views

Should '#include' and 'using' statements be repeated in both header and implementation files (C++)?

I'm fairly new to C++, but my understanding is that a #include statement will essentially just dump the contents of the #included file into the location of that statement. This means that if I have a ...
2
votes
6answers
134 views

Is there an easy way to read filenames in a directory and add to an array?

I have a directory: Audio/ and in that will be mp3 files only. I'm wanting to automate the process of creating links to those files. Is there a way to read a directory and add filenames within that ...
2
votes
4answers
199 views

Redundant Code Checking

Are there any tools that can find any private functions without any references? (Redundant functions) Reason being, that a function may have been created and called from a couple of areas, but as the ...
0
votes
1answer
69 views

link same object into two different memory sections

i need to put the same object into different memory sections. I'm working on a dsp with separate data and program memory. The .text sections are normally stored inside the P-MEM. But i want to store ...
0
votes
2answers
233 views

How to change autocomplete 'data' parameter without so much repetitive code?

I'm trying to send different values in my data parameter for autocomplete, depending on a previously set global variable lookupType. However, all of the other code in repeated even though only the ...
0
votes
4answers
261 views

In Eclipse, how do you find methods that you have defined but not used/called anywhere in the app?

I am concerned that some of the classes in my app have methods that are defined but not called anywhere in the app. In Eclipse is there a way to find these methods?
0
votes
1answer
349 views

How to import my imports in JSP?

All of my JSPs have this at the top: <%@ page language="java" isELIgnored="false" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="fmt" ...