Main > Free Download Search >

Free 1.67 high index software for linux

1.67 high index

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2256
Remote File Index 1.2

Remote File Index 1.2


Remote File Index is an add-on for Plone which keeps track of a document only by its url. more>>
Remote File Index is an add-on for Plone which keeps track of a document only by its url.
Did you ever find a huge pdf file that youd like to keep track of but wouldnt like to copy it entirely on your server ?
Now RemoteFileIndex indexes the content in the portal Catalog and only keeps the url of that document.
Works with:
- Plone 2.5.2
- Plone 2.5.1
- Plone 2.5
Enhancements:
- better integration with ATContentType
<<less
Download (0.008MB)
Added: 2007-03-10 License: GPL (GNU General Public License) Price:
958 downloads
ltxindex

ltxindex


ltxindex is a LaTeX package to typeset indices with GNUs Texindex. more>>
ltxindex is a LaTeX package to typeset indices with GNUs Texindex.

WARNING!!! This code is fairly experimental.

ltxindex.sty provides a simple package to produce indices with texindex instead of makeindex.
In my experience, texindex is fairly simpler to use. If you dont need anything fancy, this package may be just for you!

This package only implements the standard indices used by texinfo, and only defines the concept index (cp) by default. You cant define custom indices, and you must set up fn, ky, pg,
tp, and vr indices on your own.

Usage:

Call this package in the preamble: usepackage{ltxindex}

The package implements the following commands,

cpindex{< concept >} indexes < concept >, without typesetting it in the main text.

cpsubindex{< concept >}{< subconcept >} indexes < subconcept > under < concept >, without typesetting it in the main text.

indexcp{< concept >} typesets < concept > and puts it in the < cp > index.

subindex{< subconcept >}{< concept >} typesets < subconcept > in the main document and puts it under < concept > in the < cp > index.

You may set up fnindex, kyindex, pgindex, tpindex, and vrindex with the command newindex{??}, where ?? is either fn, ky, pg, tp, or vr. This way, you enable commands ??index{< word >}, which allows you to index < word > in the appropriate index. Texinfo shortcuts cindex, findex, kindex, pindex, tindex, and vindex, are also available.

synindex{foo}{bar} makes index foo feed into index bar.

syncodeindex{foo}{bar} is similar, but puts all entries made for index foo inside bold.

As in Texinfo, all these commands produce auxiliary files < filename >.??

Once youre done with the main body of your document, you ask LaTeX to typeset the index with the command printindex{??}, wherever you like. Make sure you precede it with some informative heading, like section*{Concept Index}.

Run LaTeX on filename to produce the .aux and .?? files Run texindex on every < filename >.?? unsorted index file you created for your document. (< filename >.cp index, by default). texindex will create a sorted index file for every index file ( .cps, by default).

ReRun LaTeX to incorporate the indices.
ReRun texindex on every index file (to secure right cross-references).
ReRun LaTeX to put everything in order.

You may avoid all this work in drafting and proofreading:

this package prints "(Index is empty)" or "(Index is nonexistent)" strings in the appropriate places if the indices are unsorted or undefined.
<<less
Download (0.012MB)
Added: 2006-09-27 License: GPL (GNU General Public License) Price:
1122 downloads
Extended Path Index 2.4

Extended Path Index 2.4


Extended Path Index provides an extended index type based on the Zope index type that has additional query methods. more>>
Extended Path Index provides an extended index type based on the Zope index type that has additional query methods that are especially suited to generating navigation trees, site maps - and also supports querying a single folder, something the standard PathIndex cant do.
Note: You normally dont need to install this separately, as it ships as a standard part of Plone 2.1 and up. This download is for people wanting to use it outside of Plone or in earlier releases of Plone.
This index supports depth limiting, and the ability to build a structure usable for navtrees and sitemaps. The actual navtree implementations are not (and should not) be in this Product, this is the index implementation only.
Main features:
- Can construct a site map with a single catalog query
- Can construct a navigation tree with a single catalog query
- Doesnt wake up any objects
- Much lower RAM consumption
- Massively improved performance
- Catalog based instead of traversal based
Works with:
- Plone 2.5.1
- Plone 2.5
- Plone 2.1.4
- Plone 2.1.3
- Plone 2.1.2
- Plone 2.1.1
- Plone 2.1
Enhancements:
- A minor release for Plone 2.5.1
<<less
Download (0.014MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
940 downloads
Thumbnail AutoIndex 2.0

Thumbnail AutoIndex 2.0


Thumbnail AutoIndex is a thumbnail index generation script designed to be a companion to mod_autoindex for Apache. more>>
Thumbnail AutoIndex is a thumbnail index generation script designed to be a companion to mod_autoindex for Apache. Thumbnail AutoIndex script generates a thumbnail index of images contained in a directory that is much like mod_autoindex generated indexes.
Enhancements:
- fixed PHP5 MIME detection
- fixed PHP5 If-Modified-Since handling
- Etag support
- fixed script real path detection
- cosmetics
<<less
Download (0.005MB)
Added: 2006-04-24 License: GPL (GNU General Public License) Price:
1287 downloads
HTML::Widgets::Index 0.6

HTML::Widgets::Index 0.6


HTML::Widgets::Index is a Perl module for creating web indexes and menus. more>>
HTML::Widgets::Index is a Perl module for creating web indexes and menus.

This module renders the index of a document tree using the data stored in a MySQL database generated by anxova. It has a flexible set of render options that gives the webmaster many options on the menu item layout.

Table

The tree data must be in a table in a database. The fields of this table should be:

id: int identifies the entry
uri: varchar(150) link of the entry
text: varchar(150) text displayed in the screen
id_parent: int the parent of the current entry. The root is 0
ordern: int menu item position on the menu

Data

Say you have a document tree like this:

a
a1.html
a2.html

b
b1.html
b2
b21.html
b22.html
b3.html

c
c1.html

Then you must enter this in the table :

; First the directory A
INSERT INTO index_items (id,id_parent,uri,text)
VALUES (1,0,a,dir A);

; Now the docs of the a dir
INSERT INTO index_items (id,id_parent,uri,text)
VALUES (2,1,a1.html,A first);
INSERT INTO index_items (id,id_parent,uri,text)
VALUES (3,1,a2.html,A 2nd);
; Now the directory B INSERT INTO index_items (id,id_parent,uri,text) VALUES (4,0,b,dir B); INSERT INTO index_items (id,id_parent,uri,text) VALUES (5,4,b1.html,B first);

; The directory B has subdirs INSERT INTO index_items (id,id_parent,uri,text) VALUES (6,4,b2,B second section);
INSERT INTO index_items (id,id_parent,uri,text)
VALUES (7,6,b21.html,B 2 1 doc);

Notice the uri field is relative, not absolute. You dont need to specify all the path to a document. So you can move docs in the directory, then just change the parent in the table.

The items are sorted alphabetically, if you want to change the order displayed in the html, just add the field ordern when you do the insert:

INSERT INTO index_items (id,id_parent,uri,text,ordern)
VALUES (5,4,b1.html,B first,2);

INSERT INTO index_items (id,id_parent,uri,text)
VALUES (6,4,b2,B second section,1);

<<less
Download (0.064MB)
Added: 2007-08-15 License: Perl Artistic License Price:
800 downloads
DirIndexFaker 1.1

DirIndexFaker 1.1


DirIndexFaker is a PHP script designed to produce fake Apache directory listings. more>>
DirIndexFaker script is writen in PHP and its designed to produce fake Apache directory listings for the purpose of slowing down and overloading with false positives the Web spiders used by the RIAA, MPAA, etc.
People like the riaa, mpaa, and others are on a copyright enforcing rampage, destroying innocent victims along the way. They are using automated tools (web spiders) to find people hosting illegal content to sue. Sometimes the spiders catch innocent people in their web of evil.
Since our politicians think the RIAAa well-being is more important than ours, we must find a way to make the RIAA/MPAAs spiders too expensive to operate. Therefore our goals should be to:
- Slow the spider down, or get it stuck in a loop
- Provide soo many false positives, that sorting the actual infringers from the innocent is too expensive to allow the copywrong police to continue
These things are what a honeypot, or tarpit is designed to do. There are several available RIAA/MPAA spider trapping scripts currently available, but they all have unacceptable limitations (either requirements are too high, or they take an unacceptable toll on your server).
What was needed was a script which could generate fake apache index pages, but with links to large files with copyrighted sounding names. The server operator should not have to have root, nor should it waste excessive disk space for the server operator, IE - the files should be generated by the script, and not actually stored on the servers disk. This is what DirIndexFaker does!
The best existing script I could find which came close to meeting these criteria was the DMCA Bot Killer , but it had several problems:
- It requires the files to be generated beforehand with a perl script, the code is in the source, but commented out and a little wonky.
- It does not look like an apache index page, it looks suspicious, the **AAs spiders could be easily modified to detect this.
- It requires a list of filenames to use when generating our warez index. This list is loaded from a server at every invocation. This is innefficient, and error-prone.
So DirIndexFaker is a fixed version of the DMCA Bot Killer.
Usage:
Simply extract the contents of the .zip file to a subfolder under your PHP enabled webservers document root, then place a link to that subfolder somewhere on your site where bots can see it, and people cannot. One way to hide the link from humans is with CSS.
Note: You may be tempted to keep the search engines away with your robots.txt file, but is is well known that the RIAA is using the search engines to find infringing content, so this is not a good idea.
Enhancements:
- This release adds the ability to slow down RIAA/MPAA bots with a usleep call.
- This is enabled by default, but can be disabled by commenting out a line at the top of index.php.
- The bottom row has been fixed to make server info match the actual server version running on your host.
- The random seed has been changed so that filenames/sizes will only change once a day.
- This makes it harder to detect as a fake.
<<less
Download (0.005MB)
Added: 2005-12-16 License: GPL (GNU General Public License) Price:
1407 downloads
High Level Virtual Machine 0.1

High Level Virtual Machine 0.1


High Level Virtual Machine is a toolkit for developing virtual machines for dynamic languages. more>>
High Level Virtual Machine is a toolkit for developing virtual machines for dynamic languages.
The High Level Virtual Machine is:
- Based on LLVM (Low Level Virtual Machine). LLVM is HLVMs sister project. HLVM gains tremendous capability from LLVM in the areas of code generation, bytecode storage, runtime execution, etc.
- Aimed at supporting dynamic languages such as Ruby, Python, Perl, Jython, Haskell, Prolog, etc.
- A complete compiler developers toolkit for creating new languages easily. To write a new compiler, language designers simply write a plugin that describes the language to HLVM and how to translate the grammar productions into HLVMs comprehensive Abstract Syntax Tree (AST). After that, HLVM handles all aspects of code generation, bytecode storage, XML translation, JIT execution or interpretation, and native compilation.
- A language interoperability framework. Because all front end compilers generate code in the same AST, they can interoperate. Use of the runtime library for common constructs (e.g. "string") allow even complex data types to be shared between languages. Users of HLVM can write complex programs in multiple languages and be assured the result can be executed efficiently.
- A code management system including code revisioning, interface versioning, automated recompilation, separation of workspaces, etc.
- Currently under development. Project started April 20th, 2006. Stay tuned to this web site for future developments.
<<less
Download (0.12MB)
Added: 2006-06-15 License: LGPL (GNU Lesser General Public License) Price:
1227 downloads
SVN::Log::Index 0.51

SVN::Log::Index 0.51


SVN::Log::Index is a Perl module that can index and search over Subversion commit logs. more>>
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.

<<less
Download (0.013MB)
Added: 2007-06-12 License: Perl Artistic License Price:
866 downloads
FTP Index 2002-01-16

FTP Index 2002-01-16


FTP Index provides a FTP indexer and search engine. more>>
FTP Index provides a FTP indexer and search engine.
FTP Index is a search engine for FTP servers. It scans servers for definable filetypes and stores the results in a MySQL database.
It utilizes the ftpls tool from the ftpcopy package for indexing the servers.
It scans multiple servers at the same time by running with multiple processes.
Enhancements:
- fixed a nasty bug that caused the loss of the half all found files.
<<less
Download (0.016MB)
Added: 2007-04-26 License: GPL (GNU General Public License) Price:
914 downloads
Bio::Index::Blast 1.4

Bio::Index::Blast 1.4


Bio::Index::Blast is a Perl module with indexes Blast reports and supports retrieval based on query accession(s). more>>
Bio::Index::Blast is a Perl module with indexes Blast reports and supports retrieval based on query accession(s).

SYNOPSIS

use strict;
use Bio::Index::Blast;
my ($indexfile,$file1, $file2);
my $index = new Bio::Index::Blast(-filename => $indexfile,
-write_flag => 1);
$index->make_index($file1, $file2);

my $id;
my $data = $index->get_stream($id);

my $bplite_report = $index->fetch_report($id);
print "query is ", $bplite_report->query, "n";
while( my $sbjct = $bplite_report->nextSbjct ) {
print $sbjct->name, "n";
while( my $hsp = $sbjct->nextHSP ) {
print "t e-value ", $hsp->P,
}
print "n";
}

This object allows one to build an index on a blast file (or files) and provide quick access to the blast report for that accession. Note: for best results use strict.

<<less
Download (4.7MB)
Added: 2006-10-10 License: Perl Artistic License Price:
1111 downloads
Electronic Design Automation - Index 1.0

Electronic Design Automation - Index 1.0


Electronic Design Automation - Index is a web-based index system that can keep track of your sch/pcb/fp/pl numbers. more>>
The system can be used in the electronic world to keep track of your: Schematic, Printed Circuit Board, Front Plate, Programmable Logic Device numbers.
EDA index is programmed in PHP (and XHTML 1.0), using a MySQL database to store data, so its more or less OS independent, but a Linux server is recommended, since it already got most software installed as default, this configuration is also called LAMP (Linux Apache MySQL PHP)
Its also recommended that a local intranet server is used, since the system dont got a user login, so all data can be viewed without a password, but when you need to add or edit data a password is required. At first this approach might seem wierd, but its designed to allow quick lookups. Example:
You are sitting with a broken pcb with a number on it, and need to find the schematic (so you can repair it) on the computer or in the printed project (schematic) archive. EDA Index allow an quick lookup in the database, without you needing to login, so you get the job done faster.
As far as I know, there are no commercial (or free) program available that can do what EDA Index can, some companies may have created their own software, but how do that help you.
I have worked in an electronic department that had a self made application, but it lagged features like search.
This program is very usefull, if you are using numbers when:
Drawing electronic Schematics and PCBs using a CAD program like: Eagle, gEDA, Protel, Orcad, etc.
Creating Front Plate layouts in: GIMP, Coral Draw, Photoshop, AutoCAD, etc.
Programming Programmable Logic Devices like: PLD, EPLD, CPLD, PIC, APIC, PEEL, PAL, GAL, FPGA, Intel 80XX, Motorola 68XX, etc. Writing the code in: VHDL, Assambler, JEDEC, etc.
Enhancements:
- Included the bugfix to RC2.
- Updated online documentation.
- Updated INSTALL file.
<<less
Download (0.90MB)
Added: 2005-05-31 License: GPL (GNU General Public License) Price:
1616 downloads
High Performance Linpack 1.0a

High Performance Linpack 1.0a


High Performance Linpack is a highly parallel, high performance benchmarking tool. more>>
HPL is a software package that solves a (random) dense linear system in double precision (64 bits) arithmetic on distributed-memory computers. It can thus be regarded as a portable as well as freely available implementation of the High Performance Computing Linpack Benchmark.

The algorithm used by HPL can be summarized by the following keywords: Two-dimensional block-cyclic data distribution - Right-looking variant of the LU factorization with row partial pivoting featuring multiple look-ahead depths - Recursive panel factorization with pivot search and column broadcast combined - Various virtual panel broadcast topologies - bandwidth reducing swap-broadcast algorithm - backward substitution with look-ahead of depth 1.

The HPL package provides a testing and timing program to quantify the accuracy of the obtained solution as well as the time it took to compute it. The best performance achievable by this software on your system depends on a large variety of factors.

Nonetheless, with some restrictive assumptions on the interconnection network, the algorithm described here and its attached implementation are scalable in the sense that their parallel efficiency is maintained constant with respect to the per processor memory usage.

The HPL software package requires the availibility on your system of an implementation of the Message Passing Interface MPI (1.1 compliant). An implementation of either the Basic Linear Algebra Subprograms BLAS or the Vector Signal Image Processing Library VSIPL is also needed. Machine-specific as well as generic implementations of MPI, the BLAS and VSIPL are available for a large variety of systems.
<<less
Download (0.50MB)
Added: 2005-04-11 License: BSD License Price:
1682 downloads
ruby index/search 0.0.2

ruby index/search 0.0.2


ruby index/search is a general indexing framework for ruby. more>>
ruby index/search is a general indexing framework for ruby. With it, you can create collections of documents, then index and search them. Currently, both inverted indexing and LSA indexing are supported, with rudimentary result clustering in the works.

The indices may be marshalled out (with Marshal.dump()), then pulled back in with Marshal.load(), to allow for relatively quick search operations in both LSA and inverted indices.

<<less
Download (0.053MB)
Added: 2006-04-27 License: GPL (GNU General Public License) Price:
1276 downloads
Auto Directory Index PHP Script 2.2.1

Auto Directory Index PHP Script 2.2.1


Auto Directory Index PHP Script is a customizable PHP script that indexes directories. more>>
Auto Directory Index PHP Script is a PHP script that makes a table that lists the files in a directory, and lets users access the files and subdirectories.
It includes searching, icons for each file type, an admin panel, uploads, access logging, file descriptions, and more.
Main features:
- You dont have to put index.php in every subfolder - it automatically lets you access subdirectories
- Shows different icons for each file type - includes three different icon styles
- Ability to hide/block certain files, folders, or file extensions
- Works on all servers that support PHP 4.1.0 or higher (including PHP5)
- No databases needed
- Ability to upload files and to have user accounts
- Built-in admin tools (available when logged in with an admin level account)
- Creating and deleting directories
- Uploading, renaming, and deleting files
- Log viewer and visitor statistics
- Searching for specific files/folders
- Access logging and statistics (stores users IP in a text file along with the time and file request)
- Anti-Leech feature
- Bandwidth limiting
- Files/folders can have custom descriptions
- Thumbnails of images can be generated and displayed
- Can keep track of number of downloads for each file
- Nicer looking than servers default output, and the display is customizable
- Version 2.0 uses a template system for easy customization of HTML output
- Available in 34 languages
- XHTML 1.1 and CSS compliant, so it displays correctly in all browsers
- This software is free
Enhancements:
- Handling of passwords with .htaccess was improved.
- The default stylesheet was updated.
- Translations were added.
<<less
Download (0.10MB)
Added: 2007-01-07 License: GPL (GNU General Public License) Price:
1030 downloads
 
Other version of Auto Directory Index PHP Script
Auto Directory Index PHP Script 1.5.4is a customizable PHP script that indexes directories. - Works on all servers that support PHP 4.1.0 or higher (including PHP5) - No databases needed
License:GPL (GNU General Public License)
Download (0.083MB)
1546 downloads
Added: 2005-08-11
Genezzo::Index::bt2 0.64

Genezzo::Index::bt2 0.64


Genezzo::Index::bt2 is a basic btree built of row directory blocks. more>>
Genezzo::Index::bt2 is a basic btree built of row directory blocks.

construct comparison/equality callbacks

my $cmp1 = sub
{
my ($k1, $k2) = @_;

# NOTE: use "spaceship" (-1,0,1) comparison with
# short-circuit OR (which returns 0 or VALUE, not 0 or 1)
# to perform multi-column key comparison
# a la Schwartzian Transform

return (
( ($k1->[0] $k2->[0])
|| ($k1->[1] $k2->[1])) == -1
);
};

my $eq1 = sub
{
my ($k1, $k2) = @_;
return (($k1->[0] == $k2->[0])
&& ($k1->[1] == $k2->[1])
);
};

SYNOPSIS

use Genezzo::Index::bt?;

my $tt = Genezzo::Index::btree->new();

$tt->insert(1, "hi");
$tt->insert(7, "there");

This btree algorithm is a bottom-up implementation based upon ideas from Chapter 16 of "Algorithms in C++ (third edition)", by Robert Sedgewick, 1998 and Chapter 15, "Access Paths", of "Transaction Processing: Concepts and Techniques" by Jim Gray and Andreas Reuter, 1993. The pedagogical examples use a fixed number of entries per node, or fixed-size keys in each block, but this implementation has significant extensions to support variable numbers of variably-sized keys in fixed-size disk blocks, with the associated error handling, plus support for reverse scans.

<<less
Download (0.45MB)
Added: 2006-09-30 License: Perl Artistic License Price:
1120 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5