The utilities tag has no wiki summary.
0
votes
0answers
18 views
MySQL Utilities - ~/.my.cnf option file
I am trying to use 2 of the mysql utilities, mysqldiff and mysqldbcompare and want to avoid putting my password on the command line
Is it possible to use an option file to specify the password for my ...
0
votes
2answers
61 views
Static Utility class with Context/Activity - Android
Over the development of an Android app I've come to a collection of utility-type methods that I have put into a static class. All these methods are used across multiple Activities and most of them do ...
0
votes
0answers
237 views
What's the best practice to create utility functions in AngularJS? [closed]
What's the best practice to create utility functions in AngularJS?
I'm not talking about utilities with commonly shared variables amongst controller. Rather, I'm focusing on basic helper functions. ...
0
votes
1answer
44 views
Is there any way to make a database inherit users and role memberships when they are attached? Or any tools which will automatically do this?
When I attach a database I would like for several users to be created on it and for them to be assigned to certain fixed database roles. Any way to ensure that this happens automatically (potentially ...
1
vote
1answer
58 views
Processing append float[]
Im working on a Processing App wich is supposed to grap data from a serial port and put in into various graphs. I've downloaded the giCentre Utilities libary to draw the graphs.
Based of one of the ...
2
votes
0answers
42 views
PHP_CSV_Utilities Cannot find CSV_Reader Class
Does anyone have experience with the PHP CSV Utilities library ( http://code.google.com/p/php-csv-utils/wiki/Documentation )? I've tried to install it on my Mac--I'm running XAMPP and editing with ...
0
votes
1answer
84 views
File comparison Prorgram [closed]
What is are some good file comparison utilities that which can compare and notate the difference between multiple files?
3
votes
1answer
55 views
Ideal stubs utility for php unit testing
I am looking utility for the stubs for unit testing in php.
Stub must meet typehinting. Must be able to check the method calls with parameters. Must be able to return values according to the ...
0
votes
1answer
134 views
Jdbc utility for calling procedure in oracle
I have complex procedures in oracle package with complex in/out parameters. I will show one of the my procedures in following :
PROCEDURE Authorize(PO_ErrorCode OUT NUMBER,
...
1
vote
0answers
177 views
How to write to an ini file from bash? [closed]
I am looking for a corespondent of defaults from OS X, one that would allow me to add/update and entry inside a section of an ini file.
Something that would be easy to call, like update-ini file.ini ...
0
votes
1answer
236 views
Disk usage by application in Windows XP [closed]
Most process-monitoring software can show CPU(s) load by application in real-time.
But I can't find anything that could show me real-time Disk(s) usage by applications (hard disks, CDs/DVDs, flash ...
0
votes
1answer
30 views
Utility for selectively coping source project
I need some tool.
I have project (Java/Android). At folder src I have all my java files. I made some changes in the project (some files changed). Now I want copy from src all updated files (for ...
0
votes
1answer
88 views
How to sniff Java applet HTTP traffic on MacOS?
Are there any utilities/browser plugins to sniff java applet http traffic except for tcpdump? I'd like to have well-structured representation.
0
votes
1answer
36 views
linux script change struct declarations
struct node {
int val;
struct node *next;
};
typedef struct {
int numer;
int denom;
} Rational;
int main()
{
struct node head;
Rational half, *newf = malloc(sizeof(Rational));
head = (struct ...
2
votes
1answer
490 views
What Java utilities exist for benchmarking a machine's CPU, memory, disk and network I/O performance?
I need to explain why my application is performing poorly at a remote location. It is going to be inconvenient for me to install a profiler. I suspect that the machine is configured poorly but I need ...
0
votes
5answers
211 views
Exposing objects through properties in C#
I want to write a static utility class which only has a set of properties, which expose functionality to the user
For example I could call:
Utils.String.GetHexString("Hello World");
or
...
1
vote
6answers
2k views
Java API to convert Array to CSV
Suppose I have an array of int, float, string etc. Is there any utility API (e.g. Commons, Guava) that will give me a comma separated string?
Like so,
int[] a = {1,2,3,4,5}.
String s = ...
1
vote
1answer
348 views
How dangerous is a compact anti-pattern, DetachedCriteria based, DAO utilitary for hibernate?
Long time ago I created an one-class-hibernate-util to ease my life on really really small applications using DetachedCriteria, as follows:
import java.util.List;
import ...
-1
votes
1answer
890 views
Ionic zip throws out of memory exception
I use ionic zip (version-1.9.1.8) to compress some files..I usually have large files summing to 2 to 3 GB ...this ionic zip works fine in my system but while i use it in another user ...
-1
votes
1answer
49 views
Designing a filter to capture files
I am trying to design a utility.Here is the basic requirement of this utility.
Input Parameter : A time interval
The utility must open files in a folder and filter the contents (say timestamp )in it ...
2
votes
0answers
186 views
Is there any model driven editor for entity framework?
The idea with model-driven development is to automize otherwise repetitive tasks.
LinqPad makes it possible to load an assembly and an optional connection string and start querying a database.
In ...
4
votes
4answers
1k views
unix command to prepend text to a file
Is there a unix command to prepend some string data to a text file?
Something like:
prepend "to be prepended" text.txt
Thanks!
0
votes
3answers
185 views
Method to strip C comments from patch files
I'm looking at trying to strip out C comments from our patch files and have looked at numerous regexes, but if we remove lines from our patches - it would break them.
How would you write a regex or ...
3
votes
1answer
174 views
What are some online Javascript tools that display execution and flow / control flow in step-by-step increments
There is an online tool where you can post javascript code and the program automatically highlights the lines based on control flow jumps and order of execution.
It's not an error console.
I can't ...
5
votes
1answer
840 views
Symfonian way to store custom utilities and helpers in symfony 2
Sometimes there are some functions or procedures that I write as helpers and utilities to use all across my apps... Now I'm starting to use Symfony 2, and I don't know what is the best way according ...
-1
votes
1answer
628 views
How to take difference between all files in 2 directories and redirect it to some other file
I have two directories A and B, which contains common files. I want to take the diffs from all files and collect all diffs in a file.
1
vote
1answer
207 views
Mac - keeping an application always in the foreground - how?
On my Mac running Snow Leopard, I want one of my application window to always be in the foreground (on top of all others) -
searching brings the 'afloat' external application : ...
3
votes
3answers
114 views
Is there a unix command line utilty for 'mapping' by line?
I have an input stream, and I want to "map" to output lines. For instance, if my input stream were the files nums, I'd want that this syntax
$ cat nums
9534
2343
1093
7023
$ cat nums | map ./myscript ...
4
votes
3answers
2k views
StringUtils in javascript
I'm looking for a js library like StringUtils of commons-lang in java, which contains a lot of common methods to operating strings.
Such as:
IsEmpty/IsBlank - checks if a String contains text
...
4
votes
2answers
537 views
Mac OS X shell utility that shows individual cpu usage in multi-core systems
I've been looking for a osx utility that shows cpu usage for each cpu. For example
CPU 0 - 10%
CPU 1 - 2%
...
I know of many ways of getting this information in other Unix-like system (/proc, ...
5
votes
1answer
64 views
Plulling a sample of your database - Postgresql
we have a semi-large database that takes a long time to import locally on our individual dev machines. I was wondering if there were any tools that could connect to a database, do a little analysis ...
-1
votes
1answer
101 views
wired output of the combination of $.each and jQuery.inArray function
My complete code:
jQuery.extend({
combinationCheck: function (p1position) {
var Combination = [1, 2, 3, 4, 5, 6, 7, 8];
Combination[0] = [1, 2, 3];
Combination[1] = [4, 5, 6];
...
1
vote
2answers
82 views
List symbols exported by an assembly that are used by another assembly
I have two .net assemblies - lets call them A and B. Assembly A uses some classes exported by B.
Is there a utility that can tell me which of B's classes are used by A and which members (functions, ...
1
vote
1answer
77 views
Does VS 2008 or 2010 Express edition come with any kind of usable from console http downloading util?
I want to create a simple project setup script. I assume user (which owns a PC with VS2008 or 2010 on board (Express)) can download a .BAT file with my set up script from the internet. I wonder is ...
2
votes
2answers
4k views
.NET DLL references/dependency checking utility
With Visual Studio, I can see the dll references as the attached picture as an example.
With this reference information, I can open the (from the example) Composition project to find all the other ...
0
votes
2answers
337 views
Merge flat files
I am trying to create a JCL for merging flat files using IEBGENER. The number of input files is not constant. Can we do it using IEBGENER?
1
vote
0answers
96 views
Recommend a good XMPP management software [closed]
Can some one recommend a good GUI / Browser based software that can manage a XMPP server? I am looking to manage XMPP pubsub nodes and ability to post in pubsub node, edit, delete posts etc.
0
votes
2answers
104 views
Which tools to learn to develop on Linux [closed]
I've written a C-app on Linux, but I didn't know about "make" to auto compile, just write code with Vim and manually compile my app.
Which tools, utilities that a programmer should learn to be more ...
-1
votes
2answers
325 views
What method PortalUtil.getUser() is for? [closed]
When does this method work? It returns null for me all the time.
0
votes
6answers
1k views
Free Linux like “tail -f” for Windows
Is there alternative to hoo-wintail (costs $49.95) for Windows, which can color specific lines according to pattern in monitored file.
Thanks
0
votes
1answer
697 views
Does any one have used ios-sim utility to run .app file in Simulator?
How to pass /Developer50 path to ios-sim. I am passing like this way, what is wrong in that??
ios-sim launch --verbose --sdk 5.0 --env /Developer50
this does not seems to work.
I have /Developer, ...
1
vote
3answers
737 views
Reading text files of unknown encoding in C++
What should I use to read text files for which I don't know their encoding (ASCII or Unicode)?
Is there some class that auto-detects the encoding?
1
vote
1answer
85 views
Software like xclip that comes standard on just about all Linux Distros with X?
I have an application that needs to access the clipboard on *nix OSs but I do not have access to the X event loop because of how it works. Therefore I need to send a command to another application to ...
1
vote
2answers
330 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 ...
-4
votes
3answers
534 views
How to write a Windows Firewall preferably with Java [closed]
I am creating a Java Desktop Application that is going to have a Firewall. My Application is going to support Windows XP, Vista and 7.
I found that the netstat /? command works for listing ...
1
vote
1answer
287 views
What Tool/Utility can I use to list deleted files on windows
I am making a Java Desktop Application that is going to Shred or Swipe or More Permanently Delete files. I can do the swiping but first I have to find and access the deleted files.
Is there some ...
5
votes
2answers
701 views
linux image from clipboard
I'd like to access the graphics in the linux clipboard, to save it as a file.
I'm doing this in a Python/Tkinter program, so I asked about it ...
0
votes
3answers
508 views
Java common utilities to get list size and last object
Even if it's easy to make an handle make, but I wonder if there is any famous helper help to get the size of a list or to get the last object of a list. I think it is really a popular requirements, ...
1
vote
1answer
553 views
Any tool to easily configure Windows Error Reporting, JIT debugger etc.?
When your program crashes at a non-development environment, there are still ways to locate the error. You can have the Windows create a full crash dump, or you can have it attach a debugger such as ...
1
vote
0answers
64 views
Tool(s) for planning projects/functions?
Does anyone know of any good programs for planning out functions and programs? I have a small sized project I need to work through in the next few days, I can't help but feel that planning everything ...
