Main > Free Download Search >

Free entry level job search software for linux

entry level job search

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4622
Fluent CFD Search 1.0.8

Fluent CFD Search 1.0.8


Fluent CFD Search is an extension providing a classic first Fluent CFD Software Search toolbar. more>>
Fluent CFD Search is an extension providing a classic first Fluent CFD Software Search toolbar.

Fluent is leading software company in CFD. It also include search on Airpak and Icepak which are other two products from Fluent.

<<less
Download (0.004MB)
Added: 2007-04-03 License: MPL (Mozilla Public License) Price:
610 downloads
Archive Search 0.9.2

Archive Search 0.9.2


Archive Search is an extension which displays an archived versions of the webpage. more>>
Archive Search is an extension which displays an archived versions of the webpage.

Displays an archived versions of the webpage.

First click: Internet Archive
Second click: Google cache
Third click: Yahoo
Fourth click: MSN

<<less
Download (0.005MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
931 downloads
Answers.com Search 1.3

Answers.com Search 1.3


Answers.com Search is a Superkaramba theme that searches Answers.com. more>>
Answers.com Search is a Superkaramba theme that searches Answers.com.

If you tried this theme before and it doesnt works for you, please try this new version since it fixes a major problem that used to prevent the theme from working.

<<less
Download (0.008MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1188 downloads
Level Shmup 1.0

Level Shmup 1.0


Level Shmup is a frantic addictive shoot-em-up. more>>
Level Shmup is a frantic addictive shoot-em-up.

Level Shmup is an old-school arcade style shoot-em-up game in the style of classics such as R-Type and Gradius. Interesting features of this game include the ability to fire in eight directions, and an adaptive difficulty curve.

The game automatically gets easier or harder based on your performance, with bonuses awarded for completion on the highest difficulties.

Usage:

Level Shmup must be run from a terminal to work. Just navigate to the folder youve uncompressed the game to, and type ./levelshmup (then Enter, of course).

<<less
Download (18MB)
Added: 2006-05-30 License: Freeware Price:
1296 downloads
UK Threat Level 0.15

UK Threat Level 0.15


UK Threat Level is an extension which displays the current UK Threat Level as an icon in the status bar. more>>
UK Threat Level is an extension which displays the current UK Threat Level as an icon in the status bar.

Future releases of this extension should include a preferences window allowing you to choose where you want your threat alert to appear and many other features.

<<less
Download (0.030MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
930 downloads
pro-search 0.17.2

pro-search 0.17.2


pro-search is a crawler for FTP servers, SMB shares, HTTP servers, and DC++ networks. more>>
pro-search is a crawler for FTP servers, SMB shares, HTTP servers, and DC++ networks.

<<less
Download (0.17MB)
Added: 2007-05-22 License: GPL (GNU General Public License) Price:
896 downloads
js-search 1.0

js-search 1.0


js-search is a javascript indexing and searching. more>>
js-search is a javascript indexing and searching.

A client-side library for building a simple inverted index, and searching it.

You can download the source code from SVN with the following command:

svn checkout http://js-search.googlecode.com/svn/trunk/ js-search
<<less
Download (MB)
Added: 2006-11-03 License: The Apache License 2.0 Price:
1093 downloads
Homeland Security Threat Level 0.52

Homeland Security Threat Level 0.52


Homeland Security Threat Level is an extension which displays the current U.S. Homeland Security Threat Level as an icon. more>>
Homeland Security Threat Level is an extension which displays the current U.S. Homeland Security Threat Level as an icon.

Displays the current U.S. Homeland Security Threat Level as an icon in the status bar.

<<less
Download (0.028MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
932 downloads
Wikipedia search 0.3

Wikipedia search 0.3


Wikipedia search is a superkaramba theme for searching on en.wikipedia.org. more>>
Wikipedia search is a superkaramba theme for searching on en.wikipedia.org.

Based on Answers.com karamba by sg1 http://www.kde-look.org/content/show.php?content=30887

Thanks to Rcio Zienke for language config entry.

To-do

- make some transtalations
- display article in wikipedia search window

<<less
Download (0.012MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1214 downloads
nautilus-search-tool 0.2.2

nautilus-search-tool 0.2.2


nautilus-search-tool is a Nautilus extension to have search files on popup menu. more>>
nautilus-search-tool is a Nautilus extension to have "search files" on popup menu.

<<less
Download (0.35MB)
Added: 2007-07-01 License: GPL (GNU General Public License) Price:
848 downloads
Easy Job Application 1.3.2

Easy Job Application 1.3.2


Easy Job Application allows you to send job applications using Gmail in websites like Craigslist. more>>
Easy Job Application allows you to send job applications using Gmail in websites like Craigslist.

This extension checks the Gmail authentication and try to connect using https. If youre using just http to log on into Gmail it may not work. Try to use Gmail with https. Ill try to make a fix to accept both types of authentication.

<<less
Download (0.012MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
943 downloads
List::Search 0.3

List::Search 0.3


List::Search is a Perl module for fast searching of sorted lists. more>>
List::Search is a Perl module for fast searching of sorted lists.

SYNOPSIS

use List::Search qw( list_search nlist_search custom_list_search );

# Create a list to search
my @list = sort qw( bravo charlie delta );

# Search for a value, returns the index of first match
print list_search( alpha, @list ); # 0
print list_search( charlie, @list ); # 1
print list_search( zebra, @list ); # -1

# Search numerically
my @numbers = sort { $a $b } ( 10, 20, 100, 200, );
print nlist_search( 20, @numbers ); # 2

# Search using some other comparison
my $cmp_code = sub { lc( $_[0] ) cmp lc( $_[1] ) };
my @custom_list = sort { $cmp_code->( $a, $b ) } qw( FOO bar BAZ bundy );
print list_search_generic( $cmp_code, foo, @custom_list );

This module lets you quickly search a sorted list. It will return the index of the first entry that matches, or if there is no exact matches then the first entry that is greater than the search key.

For example in the list my @list = qw( bob dave fred ); searching for dave will return 1 as $list[1] eq dave. Searching for charles will also return 1 as dave is the first entry that is greater than charles.

If there are none of the entries match then -1 is returned. You can either check for this or use it as an index to get the last values in the list. Whichever approach you choose will depend on what you are trying to do.

The actual searching is done using a binary search which is very fast.

<<less
Download (0.005MB)
Added: 2007-07-27 License: Perl Artistic License Price:
819 downloads
DGS Search 0.9.6

DGS Search 0.9.6


DGS Search was created to provide an easy to install search utility. more>>
DGS Search was created to provide an easy to install search utility capable of handling filesystem and database searches on UNIX and Windows based platforms.

DGS Search is aimed at supporting the small to medium sized web site.

<<less
Download (0.044MB)
Added: 2006-05-04 License: GPL (GNU General Public License) Price:
1269 downloads
Data::ICal::Entry::Event 0.12

Data::ICal::Entry::Event 0.12


Data::ICal::Entry::Event is a Perl module that represents an event in an iCalendar file. more>>
Data::ICal::Entry::Event is a Perl module that represents an event in an iCalendar file.

SYNOPSIS

my $vevent = Data::ICal::Entry::Event->new();
$vevent->add_properties(
summary => "my party",
description => "Ill cry if I want to",
# Dat*e*::ICal is not a typo here
dtstart => Date::ICal->new( epoch => time )->ical,
);

$calendar->add_entry($vevent);

$vevent->add_entry($alarm);

A Data::ICal::Entry::Event object represents a single event in an iCalendar file. (Note that the iCalendar RFC refers to entries as "components".) It is a subclass of Data::ICal::Entry and accepts all of its methods.

<<less
Download (0.10MB)
Added: 2007-01-17 License: Perl Artistic License Price:
1011 downloads
WebService::GoogleHack::Search 0.15

WebService::GoogleHack::Search 0.15


WebService::GoogleHack::Search is a Perlmodule used to query Google. more>>
WebService::GoogleHack::Search is a Perl module used to query Google.

SYNOPSIS

use WebService::GoogleHack::Search;

#create an object of type search
my $search = GoogleHack::Search->new();

#Query Google.
$search->searchPhrase($searchString);

#The results variable will now contain the results of your query.

#Printing the searchtime

print "n Search Time".$search->{searchTime};

#Printing the snippet element 0

print "nnSnippet".$search->{snippet}->[0];

This module provides a simple interface to the Google API. It is used by the GoogleHack module.

<<less
Download (0.088MB)
Added: 2006-11-29 License: Perl Artistic License Price:
1059 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5