utility

What do you use for packaging/repackaging MSIs?

I've been evaluating different MSI packagers with the intent of deploying installers for one custom application and several third-party applications (installer-chaining may be necessary in some cases). A developer will be working creating the MSI for the custom app, but the rest will be done by Operations-type people with little scriptin...

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? ...

Iphone SDK Utility Application template has leak

Hi, 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 an new project from this template, i don't add new objects. ...

Excel password removal

We receive Excel workbook files every day which are password protected with the same password. We know this password. Is there a utility or method to remove password protection on these workbook files without invoking Excel.exe or the Excel object. Our goal is to take Excel out of the process and utilize SpreadsheetGear in VB.net. Ho...

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 /Users/kte/Projects/build/Debug-iphonesimulator/TestAppGen.app/Info.plist TestAppGen-Info.plist mkdir /Users/kte/Projects/build/Debug-iphonesimulator/TestApp...

Java API for processing of taxonomies

Looking for API that helps me with processing of taxonomies. It should be possible to work with taxonomy in object model (loading from xml file), list categories, traverse tree of categories (if it's tree taxonomy), getting name and value for category, etc. Read only mode is sufficient. Google hasn't helped a lot :( Usage can be as foll...

Is there a ready utility for web sites to collect user information?

The basic requirement is in look and feel. It should look professional,have an good user interface. I don't know if someone has already developed such a tool especially for doing this kind of job. ...

Is there a utility to cue up several strings for clipboard pasting (for step-by-step code presentations)?

I was at Apple WWDC in 2008 and all the engineers used some sort of utility to cue up 10-20 lines of code for easy pasting, one at a time. They used this to demonstrate code construction on the fly. It let them avoid having to actually type any Cocoa code in front of the large audiences. I'm looking for a similar utility for doing scree...

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 name inside lots of jars files? Thank you. ...

Find and Replace in Files - UTF8

Searching for a free application for commercial usage that allows find/replace in multiple files (regular expressions are nice but not a must), that supports opening and saving in UTF-8. Tried a few like BKReplaceEm but the application ends up saving all the files as ASCII which causes some problems with web-rendering. Please advise. ...

Windows utility to find numbers and do operations?

Is there such a thing that finds numbers using regex and can perform simple arithmetic operations to it? Imagine you have a source/config file storing positions and later changed the code which requires an offset now. How do you normally go about this without doing it manually? Edit: I knew I should've added this bit with the orignal p...

C# Utility to Delete Periodically Aged Files

Any recommendation on a C# utility (open source) that can can cleanup/delete aged files. Ideally runs as a service. ...

What are Sql Browser with foreign key / references support?

I now want to create foreign keys for all of my mew DBs. So far i have been using sqlite and MyIasm DBs so i havent used a DB that supported it. I am thinking i should install and use a MySql server with InnoDb (connected via C#). My question is what can i use to actually see the FKs relations? I would like to see it by using a sqlite d...

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 of doing that? ...

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 merging later on? An already done c# library would be great... but I'm happy hear suggestions about how to program this myself... or even use...

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 group of url parsing methods that have no state associated with them, and perform operations using only the input arguments of the method. I ...

Is this utility useful enough to bother putting into CodePlex?

It was my second C# project, undertaken years ago, and it has lived on, because (imho) it is Genuinely Useful Software. It's also badly designed and the code is embarrassing. It runs C# code. You write a method, the method name appears in a listbox, you double-click the method name to execute it. That's it. Examples: When I open up m...

Checking all files are encoded as UTF-8

Does anyone know of a Windows app that can scan through a directory and check which scripts are/aren't encoded as a specified charset (UTF-8 in this case)? I could do it manually, but that could take a while and is quite error prone! ...

Server side audio mixer. What's available? (Can cSounds do this?)

I am interested in finding out if there exists a program or library which can perform the following task, and would be suitable for running as part of a server side process on a web site. (it's okay if it takes longer than the 200 milisecond maximum that is reasonable for a single page request-I can run it as an asynchronous process) Th...

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? ...