|
Totally
Free
Utilities
Have you ever
written a utility for fun just to end up using it all the time? Well we
have and then we decided to give some of these goodies
away, just because we can....
Feel free to download the utilities below, they are totally free, with no
strings attached, just our way of giving back to the Internet community.
We do appreciate feed-back, good or bad:
e-mail
your feedback.
Free SEO Tools:
Running a web
site? You need these FREE tools for all your Search Engine Optimization and
Internet Marketing.
New!
Rank
Your Site with DTC-SiteRanking.exe
New!
Control
your Pay-per-Click costs with DTC-BidBrowser.exe
Free Goodies:
Some trusted tools we have developed
or licensed and use on a regular
basis.
New!
Enhanced
ping Tool: ePing.exe
New!
Keep
your PC clock accurate: TimeSync.exe
New! Monitor
CPU usage: CPUMeter.exe.
New!
An
easy to use WHOIS utility: DTC-Whois.exe
Free
SQL Developer Client: SQLBunny.exe
Encryption
utility: crypt.exe
Binary
file viewer: vf.exe
UNIX
fgrep for Windows: fgrep.exe
Celsius
to Fahrenheit conversion: cf.exe
C/C++
code analyser: ca.exe
Extract
strings from binary files: strings.exe
Free Browser Tool-Bar:
New!
Surf
smarter & kill those pesky pop-ups with the //digital things Tool-Bar
Windows
Applications & Plug-Ins:
Site Ranking:
Compare
the Internet ranking of your site or of any site on the Internet.
Essential tool to track the return on investment of Internet Marketing
Campaigns or site SEO projects.
Syntax:
DTC-SiteRanking
Click here to download!
Bid Browser:
How
much would it cost to be #1 for a given search keyword and who will you be
competing with? The Bid Browser quickly answers these questions. If you
use Overture for Pay-per-Click campaigns, this tool is a must-have.
Syntax:
DTC-BidBrowser
Click here to download!
Whois:
Who
is the owner of any domain of the Internet? Find out with this very simple
tool.
Syntax:
DTC-Whois
Click here to download!
EPing:
Ping
up to 5 connections at a time and/or traceroute from a simple GUI
interface. This utility even has graphical representation of the ping
performance!
Syntax:
ePing
Click here to download!
TimeSync:
Keep
your computer clock accurate and in sync with the US Government Official
Atomic Clock! As simple as that and no tax to pay!
Syntax:
DTC-TimeSync
Click here to download!
CPUMeter 1.02 (improved!):
A simple yet useful tool for Internet professionals: Need a simple way to monitor
an NT Server CPU usage and available memory over a long period of time
without being there?
CPUMeter polls the CPU (works with 1 or 2 CPUs) and displays
the weighted average utilization over a specified period (polling
frequency and baseline are adjustable). When requested
(click 'Start Log'), the program writes an entry every minute to [drive]:\CPUMeter-yyymmmddd-hhmmss.log,
recording the average CPU utilization and available memory. Also features
real-time and baseline-level graphical display of CPU utilization.
This utility works only on NT 4.0, Windows 2000/2003 and XP as it uses
OS-specific low-level system calls. It requires VB6 run-time environment
(normally installed on your Windows computer).
Syntax:
CPUMeter
Click here to download!
//digital things Tool-Bar:
Surf
Smarter! Fully integrated in your browser: Google Search, Site Info, Site
Ranking, Related Links and Pop-Up Blocker! All this is FREE and
your privacy is preserved. Through our association with Amazon.com, we are
offering an exclusive //digital things version of the award winning Alexa Toolbar. No browser
should be without this handy tool! Plus, when you download and use the
toolbar, you'll help support //digital things.
Click here to download!
SQL Bunny 1.3:
Have you ever grown
frustrated with the limitations of WISQL and not wanting to purchase the
alternate, bloated and expensive SQL client applications available on the
market? That's why we wrote SQLBunny, a cute and fast SQL client for
connectivity testing and SQL development.
SQLB
is reliable and has a very useful 'debug' mode. It also has data export
capabilities. SQLB allows 4 simultaneous server connections (you can mix
and match MS-SQL, Sybase, Oracle & MySQL and switch connections with a click of the
mouse), each data window is tagged with server name, user name and time of
data retrieval. SQLB works on any Windows platform, from Win3.1 to Win2000
and XP.
You will need to edit the WIN.INI file to set up the server connections
but all this is explained in the comprehensive help. Just in case, here is
an example on how to do it:
Insert the section below into your WIN.INI (used for 16 bit application
support in Win 3.1, Win95/98, NT4.0, Win2K & XP).
[SQLSERVER]
SERVERNAME=DBMSSOC3,serverUNC,1433
SERVERNAME=DBNMP3,serverUNC
The first entry is for TCP/IP connection, the second one is for Named
Pipes connection. Use whatever is appropriate.
Replace 'SERVERNAME' with the name you want for your server and 'serverUNC'
with the network name or IP address of the SQL Server. You may add
additional connection specification lines to provide connections to
multiple servers.
When connecting with SQLBunny, provide the 'SERVERNAME', login and
password and the application will connect to your SQL Server.
To install SQLBunny, download (768KB), unzip and run setup.
Click here to download!
After
installation, download the full
license
and copy it in the folder where you installed the application.
Command-Line Applications:
Here is a collection of such utilities for you command-line addicts!
Most utilities display the appropriate syntax when invoked without
command-line arguments. EXE sizes range from 6 to 20KB (yes, KB).
File encryption utility:
Encrypts/decrypts the input file with a public key passed as a
parameter, according to a private key built into the application.
Safe with all types of files no matter how large, pretty decent security,
the longer the password, the better.
Syntax:
crypt [-c|u] inputfile outputfile password
Example: crypt -c resume.doc resume-safe.doc mypassword
- Encrypts the file.
Example: crypt -u resume-safe.doc resume.doc mypassword
- Decrypts the file.
Click here to download!
File Viewer:
Lists files and allows viewing by selecting name and pressing Enter.
When files are viewed, you can switch from the 'text' mode to the
'binary' mode to actually see the file bytes by pressing F10.
Useful to verify output of file format conversion programs.
Syntax:
vf path
Example: vf *.doc
Click here to download!
UNIX fgrep for Windows:
Searches text files for string pattern.
Syntax:
fgrep -cilq filepath - c=count matching lines i=case-insensitive l=list
matches q=quit at first match
Example: fgrep -ci last_name myfiles.*t
Click here to download!
Converting
Fahrenheit to Celsius:
In case you have forgotten the formula!
Syntax:
cf n [c|f]
Example: cf 37 c - Converts 37 C in F.
Example: cf 98.6 f - Converts 98.6 F in C.
Click here to download!
C/C++ source
code analyzer:
This utility parses C/C++ code files and reports the number of lines,
the number of comment lines and the 'hack factor' (ratio between comments
and code).
If the 'hack factor' has a '*' next to it, your code needs more
commenting.
Syntax:
ca filepath
Example: ca mycode*.c - Analyzes 'mycode.c'
Click here to download!
List strings in executable files:
Reads binary files and extract strings stored within. Useful to find
the compiler used, application owner, library functions or DLLs used,
serial numbers...
Syntax:
strings filename
Example: strings command.com
Click here to download!
Legal disclaimer:
The programs below are tested compiled executables free of viruses. We
guarantee these programs (as supplied from the web site) do not contain
any Trojan horses or worms and that they do not exchange information
across the internet. We cannot guarantee any copy not directly downloaded
since it may have been reverse-engineered and modified.
We cannot be held liable for any direct, consequential or incidental
consequences arising from using the software. Some of the programs display
a 'GSD Software Products' copyright notice. This is normal, as //digital
things is the new name for the now defunct GSD Software Products company.
Some applications distributed from this page are from the great folks at
Softnik and are co-branded by //digital things pursuant to their
co-branding agreement with us.
By downloading any file, you explicitely agree to hold //digital things harmless of
any liability whatsoever.
|
Fight Back IM Monopolists!
Download universal IM clients
for all IM protocols (AOL, MSN, Yahoo!, etc...). We are not associated
with Jabber or Trillian but we support their philosophy and oppose
monopolistic attempts by some of those large ISPs to control and
regiment IM access.
The Internet IS about inter-communication!
Click on the logo to go to the download page:

|