| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | Glink Index |
script | ASP | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 2 | Site Index |
script | PHP | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 3 | UV Index 0.1 |
windows | Windows Widgets->Widget Miscellaneous | Free |
View Detail
|
|||||||||
Shows the UV Index at Lauder, Otago, New Zealand (~120 km NW of Otago) as measured by NIWA. According to NIWA, UV Index for other places will be avaliable at a later date. Based on ISS locator by Max Emerson. |
||||||||||||||
| 4 | WML Index 1.0 |
windows | Utilities->File managers | Free |
View Detail
|
|||||||||
WML Index is a handy application that was designed in order to create a wml list of all files of bmp/wbmp/jpg/gif/png/mid/wml type. To use it, one must place it in the desired folder and execute it. The resulted index.wml file contains relative links to the file types supported by most mobiles. WML Index is very useful for downloading the listed files on mobile phones. |
||||||||||||||
| 5 | PHP Resource Index |
script | PHP | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 6 | PalmUser Index 7.0 |
pda | Business->Databases | FREE |
View Detail
|
|||||||||
PalmUser Index is a comprehensive cross-referenced index to PalmUser magazine, the journal for Palm organizers and compatibles. Categorised as reviews, tutorials/features and mentions. The file format is CSV (Comma-Separated-Value), which can be read directly by Microsoft Excel and most databases on the desktop, or of course converted easily to most common Palm database applications using their own converters. |
||||||||||||||
| 7 | GLink Index Manager |
script | ASP | $64.95 |
View Detail
|
|||||||||
|
||||||||||||||
| 8 | SVN::Log::Index 0.51 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
SVN::Log::Index is a Perl module that can index and search over Subversion commit logs. SYNOPSIS my $index = SVN::Log::Index->new({ index_path => /path/to/index }); if($creating) { # Create from scratch if necessary $index->create({ repo_url => url://for/repo }); } $index->open(); # And then open it # Now add revisions from the repo to the index $index->add({ start_rev => $start_rev, end_rev => $end_rev); # And query the index my $results = $index->search(query); SVN::Log::Index builds a KinoSearch index of commit logs from a Subversion repository and allows you to do arbitrary full text searches over. |
||||||||||||||
| 9 | Index.dat Scanner 1.2 |
windows | Security Privacy->Privacy | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 10 | PDF Index Assistant 3.0 |
windows | Business Finance->PDF Tools | $30 |
View Detail
|
|||||||||
PDF INDEX ASSISTANT FEATURES Index PDF files and search through you archive quickly. Find some possible ways to index pdf files and create archive. Create PDF archive. PDF Index Assistant provides ability to index PDFs and search text in index. Compare PDF Index Assistant to other tools with pdf-related functionality... PDF Index Assistant BENEFITS PDF Index Assistant provides you with: Effective pdf indexing It saves your time to keep pdf archive It makes you more productive; You can get information faster; Search results are easy to scan; |
||||||||||||||
| 11 | Index.dat Analyzer 2.0 |
windows | Security Privacy->Secure cleaning | Free |
View Detail
|
|||||||||
Index dat Analyzer description Index.dat Analyzer - view, examine and delete contents of hidden index.dat files. Index.dat Analyzer is a free tool which lets you view and delete contents of hidden index.dat files. Index.dat files Index.dat files stored on your computer are obviously a potential privacy threat as they can be found and viewed without your knowledge. |
||||||||||||||
| 12 | Index.die 2.1 |
windows | Security Privacy->Encrypting | $9.99 |
View Detail
|
|||||||||
Index.die is a useful utility that will securely overwrite and delete all index.dat files Index.die is a useful utility that will securely overwrite and delete all index.dat files. Can take up to 30 minutes depending on the size of the index.dat files. This is because the secure file deletion algorithm has 256 passes. There is no point deleting files if they can easily be recovered. Here are some key features of "Index die": · Clean all index.dat files · Warning: deletes all files named index.dat on the drive. Limitations: · 1-cleaning trial |
||||||||||||||
| 13 | Index.dat Analyzer 2.0 |
windows | Utilities->Misc Utilities | Free |
View Detail
|
|||||||||
Index.dat files are hidden files on your computer that contain all tracks of your online activity, where have you been on internet, what sites you visited, list of URL-s, files and documents you recently accessed. Index.dat files stored on your computer are obviously a potential privacy threat as they can be found and viewed without your knowledge. Index.dat Analyzer is free tool to view and delete contents of hidden index.dat files. |
||||||||||||||
| 14 | File Index 1.2 |
windows | Business Finance->Calendars Planners | Free |
View Detail
|
|||||||||
File Index will create an index of your files on a storage medium (CD, HDD, FDD, ZIP) and will create a HTML file of the results. Several options are possible. The results are viewable and "clickable" in any browser. This means that the program also creates links to the indexed files. |
||||||||||||||
| 15 | WWW Index Wizard 2.3 |
windows | Web Development->Misc Web Authoring Tools | $29 |
View Detail
|
|||||||||
|
||||||||||||||
| 16 | index.dat Viewer 1.00 |
windows | Network Internet->Other | Free |
View Detail
|
|||||||||
Index.dat are files hidden on your computer that contain all of the Web sites that you have ever visited. Every URL, cookies and browsing history is listed there. The file locations and names depend on what version of Internet Explorer you have. If you are running IE version 4.0 or above, the file name is "index.dat". Microsoft has not supplied an adequate explanation as to what these files are for or why they have been hidden so well. index.dat Viewer reads the index.dat files directly. This makes sure that what you see displayed by the program are the exact contents of the index.dat files. |
||||||||||||||
| 17 | Bio::Index::Swissprot 1.4 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Bio::Index::Swissprot is a Perl Interface for indexing (multiple) Swissprot .dat files (ie flat file swissprot format). SYNOPSIS # Complete code for making an index for several # Swissprot files use Bio::Index::Swissprot; use strict; my $Index_File_Name = shift; my $inx = Bio::Index::Swissprot->new(-filename => $Index_File_Name, -write_flag => WRITE); $inx->make_index(@ARGV); # Print out several sequences present in the index # in gcg format use Bio::Index::Swissprot; use Bio::SeqIO; use strict; my $out = Bio::SeqIO->new( -format => gcg, -fh => *STDOUT ); my $Index_File_Name = shift; my $inx = Bio::Index::Swissprot->new(-filename => $Index_File_Name); foreach my $id (@ARGV) { my $seq = $inx->fetch($id); # Returns Bio::Seq object $out->write_seq($seq); } # alternatively my ($id, $acc); my $seq1 = $inx->get_Seq_by_id($id); my $seq2 = $inx->get_Seq_by_acc($acc); Inherits functions for managing dbm files from Bio::Index::Abstract.pm, and provides the basic funtionallity for indexing Swissprot files, and retrieving the sequence from them. Heavily snaffled from James Gilberts Fasta system. Note: for best results use strict. Details on configuration and additional example code are available in the biodatabases.pod file. |
||||||||||||||
| 18 | Disk Index 1.4 |
windows | Utilities->Disk Analysis | Free |
View Detail
|
|||||||||
Disk Index is a straight forward tool for examining disk information. Disk Index scans any disk (hard disk, CD-ROM, network disk, etc.) for files and folders and writes the list and disk summary to a regular text file so it can be viewed with any text viewer or editor. Use Disk Index to get insight in all your files and folders on a disk, or catalogue your CD/DVD collection with it. |
||||||||||||||
| 19 | Index & Shutdown 2.0.3 |
mac | Utilities->System Utilities | $10 |
View Detail
|
|||||||||
Index & Shutdown tells Sherlock to Index your hard drives and then shut down. You can run it at the end of each day when you are ready to shut down. Your drive(s) need to be indexed periodically for Sherlocks "Find by Content" to work properly. Before you can search the contents of a disks files, you must create an index of the disk. If you have modified files on the disk since it was last indexed and you want to search the modified content, you need to update the index. The only way to be sure that find by content will always work is to index your drives each day. You could set up a schedule in Sherlock to index the drives each day at a specified time but that slows down your system while you are trying to use it. Index & Shutdown avoids that problem by indexing your drives during shutdown. NOTE : Does work under OS X as a classic app. Whats New in This Release: · Fix - Works as classic app with OS X. Previous versions would incorrectly report the OS version and would not run. · Note: May still not work with beta version of OS X but should work with final version. |
||||||||||||||
| 20 | Index.dat Suite 2.3 |
windows | Information Management->Misc Information Databases | Free |
View Detail
|
|||||||||
Index.dat Suite is a rather unique program that allows you not only to delete the index.dat files, temporary internet files, temp files, cookies and history, but it also allows you to view the index.dat files on your system. Index.dat Suites current features include; View, delete and backup index.dat files View and delete Temporary Internet Files (TIF) View and delete Cookies View and delete History View and delete Temp files View and delete Recent Documents Delete Typed URLs Delete Prefetch folder contents Auto-generation of batch file to assist in deleting the index.dat files in DOS. Optional add to RunOnce, Run or WinLogon registry key Optional deletion of swap file (9x users only) Optional defrag after file deletion Optional backup/deletion of NTUser.dat.log file (2K/XP/Server 2003 users only) Optional System Restore point creation Full application logging |
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
