Tagged Questions
The utility tag has no wiki summary.
23
votes
7answers
21k views
Java: Static Class?
I have a class full of utility functions. Instantiating an instance of it makes no semantic sense, but I still want to call its methods. What is the best way to deal with this? Static class? Abstract?
...
23
votes
6answers
7k views
Implement touch using Python?
touch is a Unix utility that sets the modification and access times of files to the current time of day. If the file doesn't exist, it is created with default permissions.
How would you implement it ...
16
votes
5answers
5k views
C/C++ call-graph utility for Windows platform
I have a large 95% C, 5% C++ Win32 code base that I am trying to grok.
What modern tools are available for generating call-graph diagrams for C or C++ projects?
14
votes
12answers
2k views
What are the Best Components of Boost? [closed]
I've been browsing revision 1.38.0 of the Boost libraries, in an attempt to decide if there are enough jewels there to justify negotiating my company's external software approval process. In the ...
11
votes
8answers
6k views
Iphone SDK Utility Application template has leak
i'm only create an project with a Utility Application template.
This template has a native memory leak when i push "info button" to
flip the view.
Anyone know how can i fix this leak ???
I just make ...
10
votes
7answers
1k views
Utility classes.. Good or Bad?
I have been reading that creating dependencies by using static classes/singletons in code, is bad form, and creates problems ie. tight coupling, and unit testing.
I have a situation where I have a ...
10
votes
5answers
4k views
Java Utility Class vs. Service
What's the difference in Java between a utility class (a class with static methods) and a Service class (a class with public methods that provides a "service"). For example, one can argue that a ...
10
votes
6answers
6k views
How can I programmatically manipulate Windows desktop icon locations?
Several years back, I innocently tried to write a little app to save my tactically placed desktop icons because I was sick of dragging them back to their locations when some event reset them. I gave ...
6
votes
1answer
119 views
Hey, I need some help with my custom bootloader
Im trying to write a bootloader for a Hobby OS and have it working great.
Nothing Special, just prints a line of text:
BITS 16
ORG 0
start: jmp main
OEM db "Test OS "
...
6
votes
3answers
219 views
Minimizing jar dependency sizes
an application I have written uses several third party jars. Sometimes only a small portion of the entire 50kB to 1.7mB jar is used - one or two function calls or classes.
What is the best way to ...
5
votes
3answers
102 views
Automatically add type signatures to top-level functions
I was lazy and wrote a Haskell module (using the excellent EclipseFP IDE) without giving type signatures to my top-level functions.
EclipseFP uses HLint to automatically label every offending ...
5
votes
2answers
1k views
Getting a device UDID from .mobileconfig
I'm trying to write function similar to http://whatismyudid.com/ that, then approved, will return the users UDID and store it to a database for future reference with that user.
I have written a ...
5
votes
4answers
322 views
How might one go about implementing a disk fragmenter?
I have a few ideas I would like to try out in the Disk Defragmentation Arena. I came to the conclusion that as a precursor to the implementation, it would be useful, to be able to put a disk into a ...
4
votes
2answers
131 views
Is there a java utility method for creating a list with specified size and contents?
public static <T> List<T> repeat(T contents, int length) {
List<T> list = new ArrayList<T>();
for (int i = 0; i < length; i++) {
list.add(contents);
}
...
4
votes
7answers
336 views
Why shouldn't I have a single monolithic utility library?
We've got a few common libraries (C# but I guess this isn't platform- or language-specific), let's call them A, B, and C. Library A has references to B and C, library B has a reference to a 3rd-party ...
4
votes
12answers
3k views
Find a class somewhere inside dozens of JAR files?
This isn't exactly a programming question, but it is indirectly related to CLASSPATH errors.
I am unsure of the dependencies for this project. What is a good tool to search for a particular class ...
4
votes
7answers
4k views
Free alternative(s) to PowerGREP
First of all, great praise goes out to PowerGREP it's a great program.
But it's not free.
Some of it's options I'm looking for:
Being able to use .NET regexp's (or similar) to find things in a ...
4
votes
3answers
2k views
Does a free general purpose ASN.1 Decode/Dump/Inspect program exist?
Does a free general purpose ASN.1 Decode/Dump/Inspect program exist? I have a suspect ASN.1 block which may have failed decryption, and I would like to inspect it to see it it appears valid, and if ...
4
votes
4answers
810 views
Are there any good ant visualization programs out there?
I am looking for a utility that will suck in an ant build file and present a graphical display of the targets and properties available to that target. Please don't respond with 'VisualAnt' I own it ...
4
votes
8answers
260 views
What open source .Net utility projects or code libraries do you use?
I use log4net in just about every code project. I was wondering what other generally useful code projects are available?
3
votes
3answers
104 views
Any tools for detecting all the .NET dll's referenced
I use Antlr tools as follows (on Mono)
dmcs /r:Antlr3.Runtime.dll /r:StringTemplate.dll *.cs /out:Main.exe
I reference two dll's, but there is another dll file (antlr.runtime.dll) that is ...
3
votes
3answers
355 views
Can a utility class be a Model class in a MVC framework?
Im designing a MVC framework but I dont know where should I put my utility classes. I read somewhere where it said utility classes are Model Classes. Is this line of thinking correct or are they some ...
3
votes
2answers
584 views
General purpose utility or library for compiling/decompiling binary data files?
I have various binary file formats which I need to dump to some kind of text format, edit and then recompile (possibly to a slightly different version of the binary format). Of course I could write a ...
3
votes
5answers
822 views
How do I split a big file into smaller ones (more FTP friendly), and merge them back later?
My server doesnt allow upload/download of big files. On the other hand, I built a bootstrapper that needs to upload/download big files.
How can I split a big file into smaller subfiles.. and do the ...
3
votes
6answers
112 views
Is there a one-liner or some extremely easy to use tool to create utility jars?
I'd like to show other people how to create jars from their code, so they can share it with others. In the meantime, I'd like to make this as easy as possible for them.
What would be the easiest way ...
2
votes
2answers
44 views
Need something like getTotal(ClassName, ListOfObjectsOfClass, numericFieldOfClass)
I have class say for example public class Item {
int price;
String name;
// getters and setters
}
I have such 1000 or more objects (just example).
For each item there is a different ...
2
votes
1answer
213 views
String replace utility conversion from Python to F# [closed]
I have a simple python utility code that modifies the string line by line. The code is as follows.
import re
res = ""
with open("tclscript.do","r") as f:
lines = f.readlines()
for l in ...
2
votes
4answers
136 views
js: var declarations, loops, efficiency, utility
readability aside ...
in terms of efficiency and/or functionality, i'm not clear on the difference between placing a declaration outside (my practice) or inside a loop (seen in other SO posts). or ...
2
votes
2answers
147 views
How to get openssl utilities to accept console input instead of input from file
A number of openssl.exe utilites as "enc" accepts on the command line input that indicates where it can find its necessary files. One such a parameter is "-in". For instance "-in c:\temp\key.hex. I ...
2
votes
2answers
86 views
“tracing” version of readlink(1)
I would like a version of "readlink -f" that provides a trace of every individual symlink resolution it performs. Something like:
$ linktrace /usr/lib64/sendmail
/usr/lib64 -> lib
...
2
votes
2answers
931 views
ZIP Using Oracle Stored Procedure
Right now I am using Oracle utility procedure, UTL_COMPRESS.LZ_COMPRESS(), to compress some data. But the problem is it compresses the thing using GZIP compatible format, which is not also ZIP ...
2
votes
2answers
190 views
List::Util - reduce - length - encoding - question
Why do I get a wrong result with the first reduce example?
test.txt
__BE
bb bbbbbbbbbbbbbbb
aaaaaa
test.pl
#!/usr/bin/env perl
use warnings; use 5.012;
use open ':encoding(UTF-8)';
use ...
2
votes
0answers
371 views
Plist with array of dictionaries: How do I load Item strings into a Utility style app?
I am trying to load plist data into UILabels in a utility template app that has two views. There is a flip animation that allows switching between the views.
Here is the structure of the plist:
...
2
votes
4answers
1k views
Copy Source Code as HTML Add-In for VS2010?
I've been unable to find such an add-in for VS2010, I only found it for earlier versions.
Does anyone know where I can find a newer version?
2
votes
3answers
128 views
Command line semaphore utility
I want to write a command line utility that can be used to synchronize the execution off programs in different consoles.
Console A:
$ first_program && semaphore -signal
Console B:
$ ...
2
votes
2answers
835 views
How can I run com.apple.tools.info-plist-utility?
I am using XCode to build an iPhone application, where I would like to externally process the info plist file in the same manner as the XCode build step shown below does
Processing ...
2
votes
1answer
157 views
Transactional File Copy
Does anyone know of a program for Windows Server 2008, Windows 7, etc. that allows you to do the following:
Automatically replaces the Windows copy feature with improved features allowing you to:
...
2
votes
6answers
2k views
Utility for removing SourceSafe bindings?
I'm looking for a utility that will remove SourceSafe bindings automatically given the location of the solution file. I found several mentions of this tool:
...
1
vote
1answer
38 views
Unrecognized selector sent to instance error from Utility App navigation controller view
I have a utility app. I've implemented this code on the flipside, which calls a Feedback view to send an email, like this tutorial. This works, but then when I click on the Send Feedback UIButton, my ...
1
vote
2answers
66 views
Best Utility Class Implementation
I have read several questions regarding when to use a utility class or any class that doesn't have a state associated with it.
My question is what is the best implementation once you have decided to ...
1
vote
4answers
82 views
When my method is a Helper, Utility or should be turned into a Extension?
For example this encryption function could be called a Utility ?
public static string HashText(string text)
{
byte[] encodedBytes;
using (var md5 = new MD5CryptoServiceProvider())
{
...
1
vote
0answers
92 views
mupdf utility pdfdraw output quality always the same whatever dpi and antialiasing parameter I feed it with
I am using mupdf utility pdfdraw under Windows but I see that the output is the same for example between 60 and 96 dpi and whatever antialiasing bit parameter I put on the command-line. Processing ...
1
vote
1answer
107 views
Problem with a local utility used as a dependency in a product
Here's the problem. I have mynamespace.mypackage that has as a dependency mynamespace.mydependencypackage, that is a local utility. It's registered using component registry.
In config.py from ...
1
vote
2answers
42 views
How to Track All Output Files From Executable, If Possible?:
I have been assigned to a project with no documentation and lots of unmanaged code.
There are explicitly-declared paths throughout the project (and in fact, they are environmental variables that were ...
1
vote
2answers
468 views
Converting newline formatting from Mac to Windows
I need a conversion utility/script that will convert a .sql dump file generated on Mac to one readable on Windows. This is a continuation of a problem I had here. The issue seems to be with newline ...
1
vote
1answer
147 views
What's a good GUI utility to apply patches on Windows?
I'm looking for a good GUI patch utility for Windows - this is something that I'll be sending to someone who hasn't worked with patches much before, so ease of use is important. I know WinMerge can ...
1
vote
1answer
88 views
Utility to create sql statements
This is a question about Sql generation, not sql creating sql nor ORM.
Is their any cross database tools that will enable the creation of insert statements, e.g. for all the tables in particular ...
1
vote
1answer
188 views
C#'s equivalent to Python's os.path.splitext()?
With Python, it has os.path.splitext() to replace the extension name to something as follows.
import os.path
names = os.path.splitext('hello.exe')
print names[0] + ".coverage"
And I have ...
1
vote
2answers
415 views
Using iPhone Configuration Utility for custom app
Can Apple's iPhone Configuration Utility be used to configure my own application? I have created an app with a number of different settings, and I would like the option of having someone in a ...
1
vote
2answers
284 views
SNMP trap to IPv6 address
Is anybody aware of (windows) utility which can send SNMP traps to IPv6 addresses?
I've tried trapgen but it seems it's not able to work with IPv6 addresses.
Also there is net-snmp windows port but ...