utility

IPhone Configuration utility not allowing a certain app to be installed with it

I'm building an app and using the iPhone config utility to add it to different devices. Dragging the app file from 'product' in xCode worked fine previously, but for some reason when I drag the app it never appears in the applications list of the utility. I downloaded some Apple source code, built it, and dragged across and it works fine...

utility to create/update license information

Is there a utility to manage license information? Mostly this would just be a minor convenience, but I'd like to be able to do something like $ licentious -L GPL -s git -m "A utility for managing license information" to create a file named (by default) COPYING in the current directory, using my name and email address as configured in ...

Utility App and plist - is this the appropriate approach to making a flashcard style application?

Dear Developers, I am trying to integrate a question/answer section to one of my apps. I wanted to use a Utility style application where the question is loaded as a Uilable in the first view, and the answer is loaded in the flippedview. I was hoping to load the question and answer data from a plist, and integrate a shuffle option so ...

Plist with array of dictionaries: How do I load Item strings into a Utility style app?

Dear Developers. 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: Root...............................(Array) ........Item 0.....................(Dictionary) .................Question.........

how to include utility classes in eclipse (android programming)

I am doing Android programing with Eclipse (Helios), and I have some utility classes created. How do I set up Eclipse, so that if I use one of my utility classes it gets included when the project compiles? ...

Utility to simulate simple http responses

I'm doing quite a lot of work with a javascript messaging system at the moment and end up making lots of use of netcat scripts to monitor and simulate as yet unimplemented server responses. Does anyone know of a utility that can easily manage this sort of thing for prototyping purposes other than setting up a full webserver? ...

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 separate type of class? ...

Lightweight command-line image resizer?

Hello, I'm looking for an image resizer / thumbnailer that is lightweight and efficient. Something that does a good job with all image types, but most importantly jpeg and png. I've looked into ImageMagick and GraphicsMagick, but they are too heavy. This is something I want to distribute with my app, so the smaller the better. I don...

Make a Backup Utility in C#

Hi, I'm thinking of a Backup Utility as my next project idea, but I don't really know where to start or how the backups should be made. Can anyone shine some light on what methods of archiving backups and restoring etc. is done. Thanks ...

Correct BCP syntax

I am a first time BCP user. I have an XML file that I need to import into a new table in SQL Server. This is using SQL Server 2008 and BCP version 10.50.16. I read through the documentation but I get 370,000 errors! (This is a very large file). When I open the error log, I just see a bunch of question marks. About this XML file: i...

how can i design simple application

how can i design simple dot sisx application to track public transport on nokia symbian s60v3 phone ...

programming tools: "less" that knows how to look at the most recent changed file in a directory

I have a program that outputs a logfile with a filename that changes each time it runs, so that I can keep permanent records for each run session. Is there any utility like "less" that I can use to display the last N lines of the file that has changed most recently? edit: the most value to me is if I have something that will automatica...

Minimizing jar dependency sizes

Hello, 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 reduce the jar sizes. Should I download the sources and build a jar with just the classes I need? What existing tools can help automa...

Looking for Windows macro utility that creates toolbars that can be docked in other Windows apps

About 10 years ago there was a macro utility that created toolbars that could be docked within other Windows applications. I can't remember the name of this product and have been unable to find it via Google. Are there any Windows macro utilities that have this capability? I've seen some utilities like Quick Macros (QM) that allow one t...

Most useful .NET utility classes

Hi, This post is for all .NET developers who often tries to reinvent the utility classes which already does by many programmers around the world. I request everyone to please post your favourite utility classes(with code) here. To start the show, Given below is the c# code for multithreaded singleton. Multithreaded Singleton using...

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 referenced behind the scene. I got this when I have an error just copying two dlls and compile. Are there any .NET tools to detect what dll's are...

Utility Classes in Java Programming

Hi All! I am new to Java and I referred regarding my question on the Net but not quite Satisfied. I want to know what the "Utility Class" in Java is? Can anybody please tell me with an Example. Thanks, david ...

Using utility classes in the android programming

Hi Everybody! I have a little idea of the Utility Classes with a slight doubt on demand. If I use a Utility class in my Application than to use that class in my main Activity do I have to create the object of that class or I can directly Import that class in my main activity? I am Sorry if I am not making a clear sense. In the nutsh...

versatile pthread based multithread utility library

Hi folks. I don't want to reinvent the wheel, and what I'm looking for most likely already exist in the FOSS world. I'm looking for a pthread bases utility library that implements often used primitives to do communication between threads. My main need is some kind of blocking queue for fixed size messages and the ability to wait for ...

replace a string in huge file by incrementing with it number of appearance in file?

I have a file of 500MB and it has strings : string_1 ..... string_500, I need generate the copy of this file which has : string_501.......string_1000 I need to do this up to string_500000, what's the best way to solve this? ...