utility

WAV file splitter utility

I have a PROGRAMMING task (homework) to investigate brute force neural net methods. That part of the problem is MY homework. We have to show that certain simple words repeated in a verbal conversion might be able to be recognized as similar. We don’t have to workout what the word is, just that it is a possible repeat. To limit my ‘searc...

C++ problem with std::pair and forward declarations

Hi! Unfortunately I still got a problem with my templated code from here: http://stackoverflow.com/questions/1911434/c-fancy-template-code-problem on line 49 in the file 'utility': error C2440: 'Initializing': cannot convert from 'const int' to 'IntersectionData *' error C2439: 'std::pair<_Ty1,_Ty2>::second': member could not be in...

How many problems are in the following date parsing routines that come from a real-world project?

These methods are laughably stupid, IMO, but I want to get a feel for what other developers think of such code. Criticisms may include technical and stylistic errors. Corrections may use anything from Apache commons-lang, such as StringUtils, DateUtils, etc, as well as anything in Java 5. The code is intended for a web application, if th...

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 DLL, and library C stands alone. The idea behind three separate projects was that each library had distinct functionality, but library A ha...

Is there a Windows utility that can be used to recieve mails via POP?

Is there a utility (like Blat) that can be used to recieve mail, perhaps via POP? I need something that's A Windows Executable (no DLLs) Simple to use Doesn't need to be installed I'm trying to make a simple email interface for my program. Any ideas would be appreciated. While on the subject, is there a good free email provider that...

Utilities or libraries for finding most closely matched binary file

I would like to be able to compare a binary file X to a directory of other binary files and find which other file is most similar to X. The nature of the data is such that identical chunks will exist between files, but possibly shifted in location. The files are all 1MB in size, and there are about 200 of them. I would like to be hav...

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 bunch of utility code in C/C++ to do this kind of thing, and maybe leverage a library for the text side of things (XML or JSON or whatever)...

Does exist any utility to know the size of a compiled function in an executable?

I want a report showing me the size of diferent symbols(compiled) in the executable. Something like .map files in Delphi, but generic if possible. nm from binutils, shows start address(?), maybe could i use that information? (I'm using object pascal + freepascal compiler) ...

Question on Utility Application - iPhone SDK

Hello everybody, I have this application I made on a utility based app. How would I incorporate this app into a view based application so I can run the code from there.. Like 2 seperate projects in one. I basically want to open/show the utility app in my view based application when I press a button.. Is this possible?? ...

Web application utility class

The following is a utility class that is called by a LoginBean to add and get a User object from a session through FacesContext. The application uses Spring. Should I use an annotation or is it an accepted practise to have static methods in this sort of class? If an annotation is advised, should I use @Component or @Service? // Annotat...

What is a good delivery format from a server to a utility app?

What Format should data be in when going into a utility app from a server? JSON, XML or something else? Edit: I need to tell a client to tell his web guy to build me a web service or let me do it. I need to make sure I am asking for the right thing. ...

Commonly use Utility methods in projects

In many projects, we come across various utility methods, e.g. Email validation Convert from dd/mm/yyyy to mm/dd/yyyy or other date formats I would like to know as what are the varoius common utility method that we genrally use? I know that some methods are project specific but many will be common. I searched in net to get a list of...

What tool do you use to export/import groups and user IDs on Windows servers?

Hi. What's a free tool to export the groups and users on a Windows server and then import them again on a rebuilt system? Thanks. ...

How do you ensure a Utility Projects library dependency gets packaged in the final EAR in Eclipse Galileo?

I have a 'Utilty Project', and an 'EAR Project' that includes that 'Utility Project'. All the classes from the 'Utility Project' end up being packaged as a JAR and placed within the 'lib' directory of the exported EAR, for example: EAR.ear META-INF MANIFEST.MF lib utility.jar (which expands to): META-INF ...

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: $ semaphore -wait && second_program The first program takes a long take to complete. The second program can only start when the first program has finished...

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

In Flex 4.. how??

http://stackoverflow.com/questions/950571/how-can-i-set-window-application-as-light-weight-in-flex-still-not-get-answe There's a solution but how to do it in flex 4 using spark? Because it says it can't find "window"... ...

If I'm making a utility app for iPhone, should the flipside info be stored in the AppDelegate class?

I don't really like using plists (I know I should get used to it, but I haven't yet). Is that what the app delegate can be used for, getting info between the two? Thanks. ...

iPhone Utility Application Convert to View Based Application

Hello everyone, I have a an utility application that was built for the iPhone SDK on Xcode. However, I need to incorporate the application code into my View Based Application. What I am trying to do is create a button on my View Based Application, that will initiate the code that was meant in the utility application. Somehow this all is...

Looking for merge tool with very good in-line-comparison support

I have seen this topic discussed several times, but emphasis is on "very good in-line-comparison" here, which was not really covered by those threads. E.g. I would like the tool to recognize and highlight that the resource "colorpicker_newstring" has been added when comparing the following two blocks. WinMerge and Kdiff both fail... Doe...