Main > Free Download Search >

Free external links software for linux

external links

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2560
external IP 0.9.9

external IP 0.9.9


external IP shows your current external IP in the browsers statusbar. more>>
external IP shows your current external IP in the browsers statusbar.

External IP is set to check your IP address once every hour.

<<less
Download (0.004MB)
Added: 2007-07-23 License: MPL (Mozilla Public License) Price:
846 downloads
Sort::External 0.16

Sort::External 0.16


Sort::External is a Perl module that can sort huge lists. more>>
Sort::External is a Perl module that can sort huge lists.

SYNOPSIS

my $sortex = Sort::External->new( -mem_threshold => 2**24 );
while ( ) {
$sortex->feed($_);
}
$sortex->finish;
while ( defined( $_ = $sortex->fetch ) ) {
&do_stuff_with($_);
}

Problem: You have a list which is too big to sort in-memory.
Solution: "feed, finish, and fetch" with Sort::External, the closest thing to a drop-in replacement for Perls sort() function when dealing with unmanageably large lists.

How it works:

Cache sortable items in memory. Periodically sort the cache and empty it into a temporary sortfile. As sortfiles accumulate, interleave them into larger sortfiles. Complete the sort by sorting the input cache and any existing sortfiles into an output stream.

Note that if Sort::External hasnt yet flushed the cache to disk when finish() is called, the whole operation completes in-memory.

In the CompSci world, "internal sorting" refers to sorting data in RAM, while "external sorting" refers to sorting data which is stored on disk, tape, punchcards, or any storage medium except RAM -- hence, this modules name.

Stringification

Items fed to Sort::External will be returned in stringified form (assuming that the cache gets flushed at least once): $foo = "$foo". Since this is unlikely to be desirable when objects or deep data structures are involved, Sort::External throws an error if you feed it anything other than simple scalars.

Taint and UTF-8 flags

Expert: Sort::External does a little extra bookkeeping to sustain each items taint and UTF-8 flags through the journey to disk and back.

METHODS

new()
my $sortscheme = sub { $Sort::External::b $Sort::External::a };
my $sortex = Sort::External->new(
-mem_threshold => 2**24, # default: 2**20 (1Mb)
-cache_size => 100_000, # default: undef (disabled)
-sortsub => $sortscheme, # default sort: standard lexical
-working_dir => $temp_directory, # default: see below
);

Construct a Sort::External object.

-mem_threshold -- Allow the input cache to consume approximately -mem_threshold bytes before sorting it and flushing to disk. Experience suggests that the optimum setting is somewhere between 2**20 and 2**24: 1-16Mb.
-cache_size -- Specify a hard limit for the input cache in terms of sortable items. If set, overrides -mem_threshold.
-sortsub -- A sorting subroutine. Be advised that you MUST use $Sort::External::a and $Sort::External::b instead of $a and $b in your sub. Before deploying a sortsub, consider using a GRT instead, as described in the Sort::External::Cookbook. Its probably a lot faster.
-working_dir -- The directory where the temporary sortfiles will reside. By default, this directory is created using File::Temps tempdir() command.
feed()

$sortex->feed( @items );

Feed one or more sortable items to your Sort::External object. It is normal for occasional pauses to occur during feeding as caches are flushed and sortfiles are merged.

finish()
# if you intend to call fetch...
$sortex->finish;

# otherwise....
use Fcntl;
$sortex->finish(
-outfile => sorted.txt,
-flags => (O_CREAT | O_WRONLY),
);

Prepare to output items in sorted order.

If you specify the parameter -outfile, Sort::External will attempt to write your sorted list to that location. By default, Sort::External will refuse to overwrite an existing file; if you want to override that behavior, you can pass Fcntl flags to finish() using the optional -flags parameter.

Note that you can either finish() to an -outfile, or finish() then fetch()... but not both.

fetch()
while ( defined( $_ = $sortex->fetch ) ) {
&do_stuff_with($_);
}

Fetch the next sorted item.

<<less
Download (0.022MB)
Added: 2007-05-21 License: Perl Artistic License Price:
886 downloads
Feed Me Links 1.0

Feed Me Links 1.0


Feed Me Links is a Web application for managing and sharing links. more>>
Feed Me Links is a Web application for managing and sharing links.

Feed Me Links provides many interesting features such as tagging, comments, RSS feeds, tag clouds, friend lists, a REST API for exporting, a browser sidebar, and Firefox and IE favorites import.

<<less
Download (0.15MB)
Added: 2005-11-22 License: MIT/X Consortium License Price:
1432 downloads
History links 1.3

History links 1.3


This class can be used to keep track of the pages navigated by a user, so it can generate back or next links. more>>
This class can be used to keep track of the pages navigated by a user, so it can generate back or next links providing a similar effect to the use of the Javascript history.go() function.
It uses sessions to store an array variable that holds the URL of each page of a site that the user accesses. It can limit the number of pages that are kept in the history array.
It may also ignore pages accessed with the POST method or with certain URLs based on options that define exclusion regular expressions. The class can generate links to go back to the last page or the first page that was recorded.
Enhancements:
- The class is completely changed.
- This release adds creation of several objects of a class, a predefined start page, an expanded list of exceptions, and the methods get_history_back, get_history_next, is_history_back (check back one page), is_history_next (check the next page), get_history_backs (go to the first page), get_history_nexts (go to the last page), and get_history_header (go to the previous and next pages using external parameters).
- It adds history "always", and has more compatibility with javascript:history.go() (no checking previous and next pages).
- New methods have been added for the manipulation of history "always".
<<less
Download (0.006MB)
Added: 2005-10-03 License: GPL (GNU General Public License) Price:
1482 downloads
External Site Catalog 1.2

External Site Catalog 1.2


External Site Catalog allows you to index and search external sites in a Plone site. more>>
External Site Catalog allows you to index and search external sites in a Plone site.

ExternalSiteCatalog is a web crawler that can index external sites and make them searchable in Plone.

You can specify the sites to index in a Plone Configlet, and directly index them from Plone, or let a scheduler do the job.

Searching the external sites is done in a special portlet that is installed with ExternalSiteCatalog.

External sites are not searchable in the normal Plone catalog, but are only available in a separate catalog in the portal_externalcatalog tool.

<<less
Download (0.20MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
988 downloads
MyThreads-Links 1.1.2

MyThreads-Links 1.1.2


MyThreads-Links is a flexible web based links manager that looks similar to Yahoo but was written in PHP and uses MySQL. more>>
MyThreads-Links project is a flexible web based links manager that looks similar to Yahoo but was written in PHP and uses MySQL.
MyThreads-Links uses PHPLib Templates so that its very simple for anyone to change the look and feel of the program without having to edit the code.
Main features:
- Any user can suggest, edit or delete links and categories (and sub-categories),
- links and categories modifications are then validated by the webmaster,
- search engine,
- meta categories (new links, updated links, most requested links),
- optional email notification,
- easy customization since all HTML is in templates (english and french available),
- easy database customization, add some fields in your database and have them managed by myThreads in 5 minutes,
- easy installation with the web based installer.
<<less
Download (0.19MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1026 downloads
Destiney Scripts Links 2.1.2

Destiney Scripts Links 2.1.2


Destiney Scripts Links provides a script for a dynamically-generated links site. more>>
Destiney Scripts Links provides a script for a dynamically-generated links site.

Destiney Scripts Links script is an OpenSource project written in PHP for use with the MySQL Server entity.

Links provides a pre-built, dynamically generated, link site. Links counts referrers in and out for listed sites.

Links provides site categorization an infinite number of levels deep.

<<less
Download (0.15MB)
Added: 2007-02-06 License: BSD License Price:
990 downloads
Getleft for Linux 1.2

Getleft for Linux 1.2


Getleft is supposed to download complete Web sites for Linux. more>> A GetRight substitute, I have seen in Usenet that some people seem to think so, while I get a big ego boost from reading it, the fact remains it isnt.
If you came here searching for a Linux answer to GetRight, look for KGet part of the Kde project or Downloader for X for Gnome. (But please, give Getleft a try)
Features:
-While it goes, it changes the original pages, all the links get changed to relative links, so that you can surf the site in your hard disk without those pesky absolute links.
-Limited Ftp support, it will download the files but not recursively.
-Resumes downloading if interrupted.
-Filters not to download certain kind of files.
-You can get a site map before downloading.
-Getleft can follow links to external sites.
-Multilingual support, at present Getleft supports Dutch, English, Esperanto, German, French, Italian, Polish, Korean, Portuguese, Russian, Turkish and Spanish.
-If you would like Getleft to support your own language, please check this.
Some others not worth mentioning.
<<less
Download (2.5MB)
Added: 2009-04-13 License: Freeware Price: Free
194 downloads
Free Link Page 1.2

Free Link Page 1.2


Free Link Page is a project that allows visitors to add links to your page in a specified category. more>>
Free Link Page is a project that allows visitors to add links to your page in a specified category.

This script allows visitors to add links to your page in a specified category. It is quite easy to install.

The administration module supports deleting of existing links.

Installation:

1.Open links.pl with a text editor.
Change the url in line one, to the Perl program at your server.
Usually it is: - /usr/bin/perl or /usr/local/bin/perl for Unix.
- C:/Perl/Perl.exe for Windows (use slash "/")
Set the correct paths and required urls.

2.Upload links.pl in ASCII-mode to your cgi-bin directory
and change mode it to 755 (-rwxr-xr-x).

3.Open addlink.html with a text editor.
Change the line

to the correct location of links.pl

Thats all.
<<less
Download (0.042MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
915 downloads
Links 2.1pre29

Links 2.1pre29


Links is a graphics and text mode web browser, released under GPL. more>>
Links is graphics and text mode WWW browser, similar to Lynx. Links displays tables, frames, downloads on background, uses HTTP/1.1 keepalive connections, and features Javascript.
In graphics mode it displays PNG, JPEG, GIF, TIFF, and XBM pictures, runs external bindings on other types, and features anti-aliased font, smooth image zooming, 48-bit dithering, and gamma and aspect ratio correction.
Main features:
- Links runs on Linux, BSD, UNIX in general, OS/2, Cygwin under Windows, AtheOS, BeOS, FreeMint.
- Links runs in graphics mode (mouse required) on X Window System (UN*X, Cygwin), SVGAlib, Linux Framebuffer, OS/2 PMShell, AtheOS GUI
- Links runs in text mode (mouse optional) on UN*X console, ssh/telnet virtual terminal, vt100 terminal, xterm, and virtually any other text terminal. Mouse is supported for GPM, xterm, and OS/2. Links supports colors on terminal.
- Easy and quick user control via pull-down menu in both text and graphics mode, in 25 languages.
- HTML 4.0 support (without CSS)
- HTTP 1.1 support
- Tables, frames in both graphics and text mode, builtin image display in graphics mode
- Builtin image display for GIF, JPEG, PNG, XBM, TIFF in graphics mode
- Anti-advertisement animation filter in animated GIFs
- Javascript support with full user control over script run
- Bookmarks
- Background file downloads
- Automatic reconnection in case of TCP connection breakdown
- Keepalive connections
- Background (asynchronous) DNS lookup
- Possibility to hook up external programs for all MIME types, possibility to choose one of more programs at every opening.
- 48-bit high-quality image gamma correction, resampling and Floyd-Steinberg dithering in all color depths.
- Font resampling (antialiasing) for virtually unlimited pitch range, LCD optimization of fonts and images.
- Builtin fonts in the executable without reliance on any fonts installed in the system
- User-adjustable menu, HTML font size and image zoom factor.
- User-adjustable display gammas (red, green, blue), viewing-condition correction gamma and precise calibration of both monitor and Links on a calibration pattern
- Automatic aspect ratio correction for modes like 640x200, 640x400, 320x200 with user-adjustable manual aspect ratio correction.
- Support for one-wheel mice (vertical scroll), two-wheel mice (vertical and horizontal scroll) and smooth scrolling by grabbing the plane with a mouse (no wheel needed).
- Easy installation, the browser is just one executable and no more files.
<<less
Download (4.0MB)
Added: 2007-07-15 License: GPL (GNU General Public License) Price:
832 downloads
Easy various links manager 0.10

Easy various links manager 0.10


Easy various links manager or Everest Linux Links Manager (evlinks) is a network manager and config toolkit. more>>
Easy various links manager or Everest Linux Links Manager (evlinks) is a network manager and config toolkit that aims to replace network services and networkmanager.

Tthe design of evlinks:

1. use mac address as config file names to avoid interface name change.

2. multi profile support, for example, you can have a setting for Office and another setting for home.

3. never display info such as "eth0/wlan0/ath0" to users. what is the meaning of this strange words for normal user?

4. coupled loosely, if any component of evlinks crash or can not work, others works very well.

5. policy support: for example, whether start wired at booting time,whether start wireless at booting time,offline or online, if wired line unpluged, shall we switch to wireless?

The components of evlinks:

1. evlinkslo/evlinksboot:

run at system booting.
enable loopback and other interfaces according to config file.

2. evlinksiw, wireless config tool

3. evlinkswireless, a wrapper for evlinksiw to handle multiple wireless adapters. if you only have one wireless adapter, it will start evlinksiw directly.

4. evlinksw, wired config tool, support multiple profiles.

5. evlinkswired, same as evlinkswireless, a wrapper for evlinksw to handle multiple wired adapter.

6. evlinksmonitor, a hal client to monitor the adapter changes. since it use hal, then we can catch the signal when new adapter plugged and removed.

7. evlinkstraffic, network traffic monitor. used in evlinksmonitor and evlinkspppoe.

8. evlinkspppoe, PPPoE clients, used to connect ADSL(no PPPoA support)

9. evlinksdispatcher and evlinksrun. dirty code to help normal user run it easily.that is to say, normal user use evlinksrun to call evlinks utils, they all run as super user. it is not a good design, also had security problem, need change later.

<<less
Download (MB)
Added: 2007-07-09 License: GPL (GNU General Public License) Price:
509 downloads
Keep Listening 0.1.1

Keep Listening 0.1.1


The project is a simple program using xine code from mplayer (thanks!) to download BBC Listen Again streams. more>>
The project is a simple program using xine code from mplayer (thanks!) to download BBC Listen Again streams.
Simply open the "Listen with External Real Player" links with this program and you can save the Real audio file. Play it with mplayer, vlc, or even Real Player (their linux player is actually quite good amazingly).
To build it you just need Qt 4. If it doesnt work, you might want to generate mplayers config.h for your system, and then copy it over libreal/config.h
Ive also included a binary that might possible work if you are lucky, but this is linux so it probably wont.
Anyway, enjoy! Also Mark Thomas - legend.
PS: If someone wants to make some packages that automatically do the association thing, that would be great!
PPS: Progress bar is approximate - it will take as long to download as the programme lasts.
To install, do something like:
qmake
make
sudo make install
Then (for KDE):
Go to a BBC listen again stream. Download the .ram file linked to by "Listen in External Real Player".
Right click it->properties->Type: Edit file type->Add Application->/usr/bin/keeplistening
Enhancements:
- Fixed compilation errors (kdevelop assumed absolute paths)
- Close on errors
- Added auto-close checkbox (on by default)
- Ignore lines starting with ## in ram files.
<<less
Download (0.19MB)
Added: 2007-05-09 License: GPL (GNU General Public License) Price:
899 downloads
Ask and Receive - Reciprocal Links 2.0

Ask and Receive - Reciprocal Links 2.0


full-featured Reciprocal Link management system in PHP more>> Ask and Receive? is a full-featured Reciprocal Link management system intended to be installed on any web site which provides PHP language support.
Ask and Receive? Increases quality traffic to your site with out any cost and without any gimmicks or SPAM. Links to your web site from other sites is the best way to get your web site top listed in search engines. In addition, having outgoing links from your site which link to noteworthy and top listed sites is considered by SEOs (Search Engine Optimizers) as another excellent method to increase your sites ranking. With Ask and Receive? you let visitors automatically add their own links to your site and then approve which links you want to accept. Also, with Ask and Receive? you can add outgoing links directly to your own site, and nudge those site owners to return the favor by linking to you. Ask and Receive? has been designed with enhanced Search Engine Optimization features. This means that the link pages that are set up on your web site will be highly visible to search engines such as Google and will help your overall page rank index and page visibility, and will do so using proper and acceptable methods, considered good-practice by Google and other search engines.
With Ask and Receive? you can wait for visitors to enter their requests for reciprocal links, or you can "nudge" a site by adding a link to them first. This is the "being nice first" feature, and allows you to rapidly add a set of high-caliber out-going links on your site while simultaneously "nudging" those site owners to return the favor by linking back to your site: and Ask and Receive? generates and then emails to these other site owners all the HTML code needed for your link.
Contains over 50 user editable features in the rl_vars.php file. This file can either be edited with a text editor, or, depending on the configuration of your ISPs installation of PHP, can be edited from the Ask and Receive? Admin menu. All source code provided
<<less
Download (77KB)
Added: 2009-04-24 License: Freeware Price: Free
182 downloads
HTML::Links::Localize 0.2.4

HTML::Links::Localize 0.2.4


HTML::Links::Localize is a Perl module that can convert HTML Files to be used on a hard disk. more>>
HTML::Links::Localize is a Perl module that can convert HTML Files to be used on a hard disk.

SYNOPSIS

use HTML::Links::Localize;

my $converter =
HTML::Links::Localize->new(
base_dir => "/var/www/html/shlomi/Perl/Newbies/lecture4/",
dest_dir => "./dest"
);

$converter->process_file("mydir/myfile.html");

$converter->process_dir_tree(only-newer => 1);

my $new_content = $converter->process_content($html_text);

HTML::Links::Localize converts HTML files to be used when viewing on the hard disk. Namely, it converts relative links to point to "index.html" files in their directories.

To use it, first initialize an instance using new. The constructor accepts two named parameters which are mandatory. base_dir is the base directory (or source directory) for the operations. dest_dir is the root destination directory.

Afterwards, you can use the methods:

$new_content = $converter->process_content(FILE)

This function converts a singular text of an HTML file to a hard disk one. FILE is any argument accepatble by HTML::TokeParser. It returns the new content.

$converter->process_file($filename)

This function converts a filename relative to the source directory to its corresponding file in the destination directory.

$converter->process_dir_tree( [ only-newer => 1] );

This function converts the entire directory tree that starts at the base directory. only-newer means to convert only files that are newer in a make-like fashion.

<<less
Download (0.004MB)
Added: 2006-08-15 License: Perl Artistic License Price:
1165 downloads
WWW::Yahoo::Links 0.02

WWW::Yahoo::Links 0.02


WWW:Yahoo:Links 0.02 is yet another excellent utility for webmasters. It actually allows you to track Inbound Links in Yahoo Site Explorer API more>>

WWW:Yahoo:Links 0.02 is yet another excellent utility for webmasters. It actually allows you to track Inbound Links in Yahoo Site Explorer API.

Enhancements: 2008-08-06

  • Corrected "Errors" response handling
  • Fixed JSON version in requirements
  • Verbose testing
<<less
Added: 2008-10-20 License: Perl Artistic License Price: FREE
14 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5