Questions tagged [utility]

Utility software is system software designed to help analyze, configure, optimize or maintain a computer. A single piece of utility software is usually called a utility or tool.

Utility software usually focuses on how the computer infrastructure (including the computer hardware, operating system, application software and data storage) operates. Due to this focus, utilities are often rather technical and targeted at people with an advanced level of computer knowledge - in contrast to application software, which allows users to do things like creating text documents, playing games, listening to music or viewing websites.

367 questions
0
votes
1 answer

Utility to get line no for each function

I have my complete source code in c++ on Windows. Is there any utility which can tell about each function- In which file it has has been defined/declared and what are start and end line number for that function?
mitesh
  • 39
  • 7
0
votes
3 answers

I'm having difficulty implementing a static factory for a number generator

I've read all of the cries for "don't use static" and I understand that it reduces OOP and screws up unit tests and can break code when multi-threading. However, I'm attempting none of those. I'm building a Java singleton utility that contains a…
ToFue
  • 75
  • 5
0
votes
3 answers

iOS equivalent to XAML spy and web inspectors?

When developing XAML apps I utilized XAML spy which allows me to inspect the rendered app elements when running the app in the simulator. It aids in finding where certain styling is emanating from. It's similar to developer consoles in web browsers…
Dave Haigh
  • 4,369
  • 5
  • 34
  • 56
0
votes
1 answer

Chroot equivalent utility for running program on offline windows installation

Chroot is often assimiled to be a kind sandbox. But in Unix, it also allow use of programs on certain non-bootable installation. When I search chroot for windows: I see things like sandbox. I don't want security, I want a way to rescue the system.…
user2284570
  • 2,891
  • 3
  • 26
  • 74
0
votes
1 answer

Creating an object containing functions using jquery extend

I have three js files in my project and there are around 15 functions repeated in each file. They are sort of utility functions. To avoid this repetition, I used $.extend : $.extend({ myFunction1 : function(){}, myFunction2 :…
Shubham L
  • 25
  • 4
0
votes
1 answer

Is there any utility tools or scripting techniques for different vendor prefixes

Basically I would prefer to choose standard css rule for different styles which contain different vendor prefixes. For testing purpose I would choose like this: border-radius: 5px; box-shadow: 0px 0px 4px 0px #fff; transform: rotate(90deg); Later…
Bhojendra Rauniyar
  • 83,432
  • 35
  • 168
  • 231
0
votes
2 answers

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!
Spoonface
  • 1,513
  • 1
  • 20
  • 29
0
votes
1 answer

iTMSTransporter metadata.xml md5 utility ios

So I have 100 achievements to upload, rather than using the website I thought it may be faster to create a metadata.xml file and use iTMSTransporter to upload the data. Unfortunately one snag is a MD5 checksum must be computed for each image file,…
Rasterman
  • 155
  • 1
  • 13
0
votes
1 answer

Creating an utility class with imported libraries in Javascript

(I'm new to javscript and) I want to create a utility class that has access to certain libraries on my webpage. For instance, I currently have D3 and Jquery loaded on my webpage
theblueone
  • 681
  • 1
  • 6
  • 9
0
votes
1 answer

Is it possible to determine the source file for each of the classes in a JAR?

I'm trying to write a utility to cut down on some of the common errors I have when working with source managed java code that is compiled into a jar file. Errors such as forgetting to add a file to a repository or forgetting to commit the changes to…
Xaq
  • 558
  • 1
  • 4
  • 13
0
votes
1 answer

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…
hoytster
  • 247
  • 4
  • 15
0
votes
1 answer

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…
user34537
0
votes
2 answers

Utility class for formatting

I have implemented a utility class called FormatUtils (final with static methods) that converts data from Employee objects into a usable format (e.g. stripping '$' signs off strings and parsing them as doubles, reformatting names into first and last…
false_azure
  • 1,333
  • 4
  • 25
  • 46
0
votes
2 answers

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.
webly
  • 327
  • 2
  • 7
  • 18
0
votes
1 answer

ruby rails create have_list_of_links utility for rspec test

I'm new to ruby/rails and doing a turorial I was wondering how I could solve my little problem... I have a describe "with valid information" which tests what should or should not happen when the user signs in with valid info. In this procedure, I…
jon
  • 910
  • 3
  • 12
  • 34