Tagged Questions
The utilities tag has no wiki summary.
49
votes
25answers
4k views
Most useful .NET utility classes developers tend to reinvent rather than reuse
I recently read this Phil Haack post (The Most Useful .NET Utility Classes Developers Tend To Reinvent Rather Than Reuse) from last year, and thought I'd see if anyone has any additions to the list.
40
votes
6answers
17k views
Timeout a command in bash without unnecessary delay
This answer to a similar question proposes a 1-line method to timeout a long-running command from the bash command line:
( /path/to/slow command with options ) & sleep 5 ; kill $!
But it's ...
25
votes
33answers
2k views
Must have tools for an OS X switcher
What must have tools/apps/utilities are recommended for OS X in general, and for a developer using that platform specifically?
22
votes
8answers
8k views
Command line tool to delete folder with a specified name recursively in Windows?
I want to delete every "_svn" in every folder and subfolder...
For example
c:\
proyect1
_svn
images
_svn
banner
_svn
buttons
_svn
Then I run something like
...
21
votes
23answers
19k views
What is a better file copy alternative than the Windows default? [closed]
I need to copy hundreds of gigs of random files around on my computer and am pretty leery of using the vanilla file copy built into Windows.
I don't want it to hang on a "Are you sure?", "Are you ...
19
votes
11answers
678 views
Is it good to have “Utils” class in your software project?
Usually, during software development, there are all sorts of utility functions I need. Like zipped file, extract zip file, launching Web Browser, get scaled image...
What I did is, I place all this ...
17
votes
11answers
6k views
Java: convert List<String> to a join()d string
Javascript has Array.join()
js>["Bill","Bob","Steve"].join(" and ")
Bill and Bob and Steve
Does Java have anything like this? I know I can cobble something up myself with StringBuilder:
static ...
17
votes
28answers
25k views
Notepad replacement for viewing very large text files
I have a program that creates daily log files that are 30-60MBs in size. I often need to open these files and search for various events. Notepad.exe takes a very long time to open a file that large. ...
15
votes
6answers
1k views
Useful WPF utilities
What are some useful utilities that help you when writing WPF applications? I know about Snoop for visual debugging of WPF applications at runtime, and Shazzam - a WPF pixel shader effect testing ...
13
votes
34answers
2k views
Which freeware apps / utilities do you use to boost your productivity?
Which freeware / open source apps and utilities make your development life a little more enjoyable? Please provide URLs for anything you recommend.
Here's a brief list of some of my favorites:
...
12
votes
14answers
6k views
Command line command to auto-kill a command after a certain amount of time
I'd like to automatically kill a command after a certain amount of time. I have in mind an interface like this:
% constrain 300 ./foo args
Which would run "./foo" with "args" but automatically ...
11
votes
2answers
1k views
Is there a Spy++ like utility for WPF?
As a “hardcore” WinForms programmer from a Win32 background I have always used Spy++ to understand what my applications are doing at the UI level including:
Seeing what events the controls are ...
9
votes
2answers
73 views
Are there any tools for consolidating a whole bunch of style tags into classes?
Example:
Say for instance you had the following two tags some where in a legacy page you've been assigned to work on:
<table style="padding:0px; margin:0px; border: 0px; width:100%;">
...
9
votes
9answers
2k views
Longest line in a file
I'm looking for a simple way to find the length of the longest line in a file. Ideally, it would be a simple bash shell command instead of a script.
9
votes
7answers
5k views
Free utility which runs in Linux to create a UML class diagram from Java source files
I prefer to jot down UML-diagrams on paper and then implement them using Java. It would be nice to have a utility which could create UML-diagrams for me which I may share on-line and include in the ...
9
votes
32answers
1k views
What's in your Utility Toolkit?
Some of the most efficient engineers, developers and IT professionals I know usually carry around a common "toolkit" of useful programs, add-ins or utilities which help them for day-to-day debugging, ...
8
votes
7answers
11k views
Sending an arbitrary Signal in Windows?
Linux supports sending an arbitrary Posix-Signal such as SIGINT or SIGTERM to a process using the kill-Command. While SIGINT and SIGTERM are just boring old ways to end a process in a friendly or ...
7
votes
2answers
2k views
How to convert map to url query string?
Do you know of any utility class/library, that can convert Map into URL-friendly query string?
Example:
I have a map:
- "param1"=12,
- "param2"="cat"
I want to get: param1=12¶m2=cat.
...
7
votes
2answers
975 views
Is there a task manager equivalent that shows GPU usage history?
Is there an application which can show me GPU usage history in the same way as I can bring up task manager to see CPU usage? I would like to be able to see how much load I am putting on the GPU with ...
6
votes
6answers
243 views
Commons method to test for an empty Java object graph?
I've found myself writing a method like this:
boolean isEmpty(MyStruct myStruct) {
return (myStruct.getStringA() == null || myStruct.getStringA().isEmpty())
&& (myStruct.getListB() == ...
6
votes
4answers
287 views
C++: tools to statically analyze code (and/or preprocess it)
Often I could use some tools to statically analyze my code in order to help me making it cleaner. Something like compiler warnings, but those are not enough. Every now and then I dream about writing ...
6
votes
4answers
195 views
Stable Sorting, ie, Minimally-Disruptive Sorting
Suppose I have a list of things (numbers, to keep things simple here) and I have a function I want to use to sort them by, using SortBy.
For example, the following sorts a list of numbers by last ...
6
votes
5answers
1k views
Reusable library to get human readable version of file size?
There are various snippets on the web that would give you a function to return human readable size from bytes size:
>>> human_readable(2048)
'2 bytes'
>>>
But is there a Python ...
6
votes
7answers
2k views
A process command in top
The problem comes up when you run couple of python scripts. in top at command, it shows only 'python' with these scripts. How to rename a process or otherwise tag it so that I could tell them apart in ...
5
votes
6answers
355 views
Creating An Utilities Class?
I'm very new to OOP and am trying my hardest to keep things strictly class based, while using good coding priciples.
I'm a fair ways into my project now and I have a lot of general use methods I ...
5
votes
4answers
9k views
RTMP: Is there such a linux command line tool?
I have looked everywhere to find a linux utility that will allow me to download rtmp streams. Not flv video but MP3 streams. The location of the streams I want to download are in this format.
...
5
votes
4answers
2k views
Unity mode for Remote Desktop
I typically have several remote desktop sessions going at the same time. Within these sessions I might be running different applications. VMWare Workstation has a Unity mode that allows you to ...
5
votes
15answers
520 views
What are your favorite small handy utility programs (tools) helping you programming? [closed]
And how they help you improve your programming ? Could they be integrated in IDE and if yes how ?
Edit: Thanks to altCognito There has been almost duplicate question before named:
What's in Your ...
5
votes
13answers
2k views
Delphi EXE compressor?
At one point I had a nice little compression utility that smashed my Delphi compiled EXE's to a smaller download size, but now I can't find it. Any recommendations?
Also, are there any downsides to ...
5
votes
5answers
2k views
line-end agnostic diff?
I'm working on a mac, with some fairly old files. Different files were created by different programs, so some of them end with \r (mac) and some with \n (unix). I want to be able to run commands like ...
5
votes
3answers
9k views
Make and build utilities on CentOS/RHEL?
I've been unsuccessfully searching for a way to install make utility on my CentOS 5.2. I've looked through some RPM repositories and online, with no avail. Installing gcc, gcc-c++ didn't help! Package ...
4
votes
4answers
233 views
How can I save a “complete” HTML file as single file?
Are there any utilities or web browsers that can save a file and referenced resources as a single HTML file?
With most web browsers / wget there's the option to download required CSS and images as ...
4
votes
5answers
264 views
linux tool to list all functions in a source file?
I am looking for a command line utility on *nix, that can dump the names of all the functions, classes etc. defined in a file(C/C++/Java)
4
votes
2answers
322 views
Memory/Handle/Gdi leak utility
I remember from past having a utility that would allow to leak various system resources, such as memory, handles and gdi. It had a small dialog where one would choose what to leak, it was nice for ...
4
votes
2answers
182 views
Is there a CSS optimizer that will discover identical single properties in selectors and group them together?
Here is an example of what I'd expect:
Input:
a {
background: red;
}
p {
background: red;
}
strong {
background: red;
color: green;
}
Output:
strong{color:green;}
...
4
votes
6answers
1k views
Powerful search-replace GUI app for Mac?
What's the best dedicated search-and-replace GUI tool on a Mac? "Find & Replace It!" seems decent, but they've ridiculously disabled the replace function in the demo, so I can't give it a real ...
4
votes
2answers
826 views
Making good use of XCode performace tools
What are the best practices, tricks, and tutorials for using XCode's performance tools, such as the Leak Monitor and the CPU sampler, for someone trying to debug and enhance performance of an iPhone ...
4
votes
3answers
143 views
Utilities file in php?
What is the best way to deal with "utility" functions in a OOP PHP framework? Right now, we just have a file with several functions that are needed throughout the system. (For example, a ...
4
votes
2answers
280 views
following a log file over http
For security reasons (I'm a developer) I do not have command line access to our Production servers where log files are written. I can, however access those log files over HTTP. Is there a utility in ...
4
votes
6answers
1k views
What other alternatives to log4net logging exist?
(subjective)
I'm looking for what your using to perform logging in your application. This log4net thing is giving me headaches. Is there a better answer out there or is everone just homebrewing a ...
4
votes
6answers
2k views
What Add-Ons / Utilities are available for TFS?
I'm interested in knowing what high quality and useful add-ons or utilities are available for TFS. They can be commercial or open source. Of particular interest are any tools allowing visualisation of ...
4
votes
3answers
4k views
“Unlocker” equivalent for Vista64?
Cedrick Collomb's Unlocker is one of the most useful utilities I've ever come across - when I come across an issue in compiling that some file is locked I can just right click on the file, click ...
4
votes
5answers
486 views
What to include in a Utility Library
With more and more projects under my belt I find that I am often repeating many common tasks from project to project, client to client. So I have started to assemble a "utility" library, a collection ...
4
votes
4answers
598 views
How do you typically import data from a spreadsheet to multiple database columns?
For whatever reason, I have a lot of clients that have existing data that's stored in spreadsheets. Often there are hundreds, if not thousands of items in each spreadsheet, and asking the client to ...
4
votes
4answers
454 views
Regex's For Developers
I've been trying to figure out a regex to allow me to search for a particular string while automatically skipping comments. Anyone have an RE like this or know of one? It doesn't even need to be ...
3
votes
1answer
96 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 ...
3
votes
3answers
673 views
Show a number with specified number of significant digits
I use the following function to convert a number to a string for display purposes (don't use scientific notation, don't use a trailing dot, round as specified):
(* Show Number. Convert to string w/ ...
3
votes
10answers
891 views
Code compare tool for Linux
What is the best code compare tool available for Linux? I have been using Beyond Compare in Windows and am looking for something similar for Ubuntu with nautilus integration.
3
votes
5answers
602 views
Is there something like Snoop (WPF) or FireBug (ASP.NET) for Windows Forms?
I want to point with the mouse on an area in my application and know the name of the UserControl.
3
votes
3answers
387 views
Looking for a binary image layout tool
I am looking for recommendations for a tool that will let me construct a binary image out of a series of smaller images.
I have an embedded system with a flash ROM that I program using a single ...