2
votes
5answers
63 views
How to avoid debugger-only variables?
I commonly place into variables values that are only used once after assignment. I do this to make debugging more convenient later, as I'm able to hover the value on the one line …
0
votes
0answers
31 views
Android: Anyone knows how long the web history is retained for?
I was wondering if anyone knows if android clears up the websites visited log from inside its database based on date or number of entries in the database... Any inputs?
1
vote
5answers
133 views
How to write cleaner code while instantiating an object with enumerations without using keyword?
Hi all,
I recently created a class which has a constructor taking 3 enumerations as arguments. These enumerations are defined in the object itself as ObjectEnum and AnotherObjectE …
1
vote
6answers
106 views
How Do You Clean up a PHP Project?
I have been working on a small php app (400K total). But in the process of building and learning I have a lot of junk files.
I didn't do my job and name them properly, ie demo1.p …
0
votes
3answers
45 views
JQuery: how to download ONLY necessary components?
I simply want to use the JQuery Slider functionality and nothing else.
However, to do so - it's my understnading that I must download 3 files:
JQuery Core
JQuery UI base
JQuery …
1
vote
2answers
58 views
How to remove installed Java programs on the simulator?
There are lots of java apps on my simulator menu screen which I have been coding and testing? Now I want to remove some of them to clean my simulator a bit. How do I remove them?
0
votes
1answer
24 views
Truncate mediawiki
Hi all,
I'm working with the mediawiki API ( e.g. http://en.wikipedia.org/w/api.php) and I would like to be able to 'truncate' the mysql tables in order to reset the local installa …
1
vote
1answer
49 views
Able to delete a specific revision from SVN?
Does SVN allow you to completely and cleanly delete an entire revision from its folder structure?
I used Tortoise SVN to delete a file from the SVN repository, and due to size I …
0
votes
5answers
211 views
How to properly stop a multi-threaded .NET windows service?
I have a windows service written in C# that creates a truck load of threads and makes many network connections (WMI, SNMP, simple TCP, http). When attempting to stop the windows se …
0
votes
2answers
56 views
Jquery unwrap() method?
There is a great method in jquery called wrap() that will wrap a selected element inside a new element, like so:
Start with:
<p>I wish I was wrapped!</p>
Add code: …
0
votes
6answers
293 views
How do I automatically clean up code in C++?
I'm working as a TA in an introductory programming class, and the students tend to submit their programs as either one line, or without any indentation. Is there any tool that allo …
27
votes
12answers
2k views
Why should you remove unnecessary C# using directives?
For example, I rarely need:
using System.Text;
but it's always there by default. I assume the application will use more memory if your code contains unnecessary using directives …
20
votes
15answers
667 views
Should I always/ever/never initialize object fields to default values?
Code styling question here.
I looked at this question which asks if the .NET CLR will really always initialize field values. (The answer is yes) But it strikes me that I'm not …
0
votes
5answers
143 views
Cleaning up PHP, and cleaning up unnecessary code.
I'm still new to certain PHP functions.
Is there any way I can clean up the following code, because I know all of this is just unnecessary, and it's giving me a headache.
Everythin …
2
votes
8answers
204 views
Cleaning up Objective-C code
When working on complex problems, I find myself trying all sorts of solutions and, while doing my best to stay organized, the code can get quite messy. Objects may be changed and n …
