Main > Free Download Search >

Free get more done software for linux

get more done

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3982
Get-Money 1.0

Get-Money 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-07 License: Freeware Price: Free
199 downloads
Get YouTube Video 1.3c

Get YouTube Video 1.3c


Get YouTube Video is a service menu for KDE. more>>
Get YouTube Video is a service menu for KDE.

Usage:
Right-click onto a link to a YouTube video or at the background of the YouTube site showing the video and choose action -> Download YouTube Video -> ...

Install:
cd ~/.kde/share/apps/konqueror/servicemenus/
tar xvzf /path/to/youtube-servicemenu.tar.gz

I made some modifications to the YouTube Service Menu. It didnt work for me, so I looked at the source. I added a differnent method to guess the video_id and I added additional parameters to the query string to download the video.

The query-string trick is:
video_id is a part of the site-url, in which the video is embedded:

video_ids = set(re.findall(www.youtube.com/v/([-A-Za-z0-9_]+), data))

or

m = re.search(video_id=(?P [-A-Za-z0-9_]+), data)

or

m = re.search(v=(?P [-A-Za-z0-9_]+), data)

Then I do:

url = "http://www.youtube.com/watch?v=%s" % video_id

Now url points to a site in which the video will be embedded, so I can apply following regular expression to its contens:

m = re.search(watch_fullscreen?(?P .*?)&fs=1&title=" + "(?P
<<less
Download (0.003MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
3227 downloads
Get File 1.2.2

Get File 1.2.2


Get File is a Firefox extension that can get a file from an URL. more>>
Get File is a Firefox extension that can get a file from an URL.

To use this extension, go in File menu and choose "Get a File".

Ive also developed a french freeware for supervision of your computer.

http://www.pastouchexp.info/

<<less
Download (0.014MB)
Added: 2007-07-09 License: MPL (Mozilla Public License) Price:
875 downloads
How-To-Get-Money 1.0

How-To-Get-Money 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-03-31 License: Freeware Price: Free
206 downloads
Test::More 0.70

Test::More 0.70


Test::More is yet another framework for writing test scripts. more>>
Test::More is yet another framework for writing test scripts.

SYNOPSIS

use Test::More tests => 23;
# or
use Test::More qw(no_plan);
# or
use Test::More skip_all => $reason;

BEGIN { use_ok( Some::Module ); }
require_ok( Some::Module );

# Various ways to say "ok"
ok($got eq $expected, $test_name);

is ($got, $exptected, $test_name);
isnt($got, $expected, $test_name);

# Rather than print STDERR "# heres what went wrongn"
diag("heres what went wrong");

like ($got, qr/expected/, $test_name);
unlike($got, qr/expected/, $test_name);

cmp_ok($got, ==, $expected, $test_name);

is_deeply($got_complex_structure, $expected_complex_structure, $test_name);

SKIP: {
skip $why, $how_many unless $have_some_feature;

ok( foo(), $test_name );
is( foo(42), 23, $test_name );
};

TODO: {
local $TODO = $why;

ok( foo(), $test_name );
is( foo(42), 23, $test_name );
};

can_ok($module, @methods);
isa_ok($object, $class);

pass($test_name);
fail($test_name);

BAIL_OUT($why);

# UNIMPLEMENTED!!!
my @status = Test::More::status;

STOP! If youre just getting started writing tests, have a look at Test::Simple first. This is a drop in replacement for Test::Simple which you can switch to once you get the hang of basic testing.

The purpose of this module is to provide a wide range of testing utilities. Various ways to say "ok" with better diagnostics, facilities to skip tests, test future features and compare complicated data structures. While you can do almost anything with a simple ok() function, it doesnt provide good diagnostic output.

<<less
Download (0.076MB)
Added: 2007-05-04 License: Perl Artistic License Price:
540 downloads
More for C++ 1.0

More for C++ 1.0


More for C++ is a class library that provides some features usually not common for C++. more>>
More for C++ is a class library that provides some features usually not common for C++

More for C++ includes a mark-sweep garbage collector, platform-independent classes for threading, sockets, and I/O, unit tests, and a few other utility classes.

First of all, there is a garbage collector for automatic memory management. When an object has been referenced by a special smart pointer and should not be used any more, it will be destroyed by the librarys garbage collector.

Next, there are platform independent packages for file operations, networking and multithreading. At the time being, concrete implementations exist for Win32 and GNU/Linux.

Additionally, the library has some utility classes like containers, observers and (of course the inevitable class "String" (which - like any other class provided by and used with this library - will also be managed by the garbage collector).
One of the most recent packages is called "servlet". It offers the possibility to write loadable modules for the popular Apache web server, serving dynamic content with C++.

Last but not least, "More for C++" comes with its own framework for writing unit tests. This package has been inspired by the fabulous JUnit by Kent Beck and Erich Gamma.

By using this library, you are able to combine the performance of C++ with the elegance and ease of use of Java and Python. A native garbage collector in combination with the smart pointer class helps you to avoid common programming errors like dangling pointers or memory leaks. Besides this, the platform independence helps you to easily port your programs to the most important operating systems.
<<less
Download (0.16MB)
Added: 2006-01-18 License: Artistic License Price:
1375 downloads
Get-Rich 1.0

Get-Rich 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-06 License: Freeware Price: Free
200 downloads
B::More 1.01

B::More 1.01


B::More Perl module contains additional introspection methods and functions. more>>
B::More Perl module contains additional introspection methods and functions.

Adds stuff I needed in B and wasnt there.

Feel free to email me with suggestions for other methods I can add.

B::SV METHODS

svref

Inverse of B::svref_2object.

B::PVMG METHODS

magic

Returns a string containing the types of all MAGIC.

magic TYPE

Returns the B::MAGIC object for the magic with specified type, or undef if no magic with that type was found.

FUNCTIONS

defstash

Returns the default stash (main::) as B::HV object.

curstash

Returns the current stash (package) as B::HV object. Note that this only makes sense at compile time (in a BEGIN-block or in eval-string).

<<less
Download (0.003MB)
Added: 2007-06-25 License: Perl Artistic License Price:
851 downloads
Clone::More 0.90.2

Clone::More 0.90.2


Clone::More is a Perl module that can copy Perl data structures. more>>
Clone::More is a Perl module that can copy Perl data structures.

SYNOPSIS

use Clone::More qw( clone );

my $structure = [
{ key => value }
];

for my $set ( @$structure ) {
my $clone = clone( $set );

for ( keys %$clone ) {
print "Everything matches" if ( exists( $set->{$_} ) && $set->{$_} eq $clone->{$_} );
}
}

This is intended to act as a utility in order to natively clone data structures via a simple Perl interface. Will ensure that all references will be separated from the parent data strure, yet kept relative to the new structure (if need be).

Please take a look at the WARNINGS, GOTCHAS and FUTURE DEVELOPMENT sections, as resources to see if this module is fully capable of doing everything that you want it to do (and it will do most everything).

<<less
Download (0.027MB)
Added: 2007-05-16 License: Perl Artistic License Price:
891 downloads
Get Company Info 0.4

Get Company Info 0.4


Get Company Info allows you to view the latest financial data and other company information in a separate tab. more>>
Get Company Info allows you to view the latest financial data and other company information in a separate tab.

Highlight a company name on your page with the mouse, right-click and choose Get Company Info. You will receive the latest financial data and other company information in a separate tab.

No need in ugly toolbars. Recognizes companies by both names and tickers.

<<less
Download (0.075MB)
Added: 2007-04-27 License: MPL (Mozilla Public License) Price:
913 downloads
more.groupware 0.7.4

more.groupware 0.7.4


Moregroupware is groupware that includes standard modules like calendar, news, contacts, and more. more>>
Moregroupware is groupware that includes standard modules like news, contacts, calendar and more. To make a long story short: moregroupware is a web-based groupware application. Some of the features that are worth being mentioned:
- Contact/address management
- Webmail
- full-featured Calendar
- ToDo management
- News
- Project management
- Some preferences for each module
- available in different languages
- Skins based on Cascading Style Sheets
Main features:
- simple setup wizard
- easy module management and upgrade
- advanced rights management
- integrated online help
- easily skinnable with CSS
- based on the Smarty template engine
- works on MySQL and PostgreSQL
- available in more languages than just english
Enhancements:
- This release finally summarizes the tons of bugfixes done over the past year (more than that), and as usual we have updated the bundled libraries to current versions.
- Please read the NEWS-0.7.4 file and the documentation for more information.
- more.groupware is a web-based groupware written in PHP. Including modules like webmail, notes, todo, contacts, project management, calendar and others.
<<less
Download (2.3MB)
Added: 2006-04-28 License: GPL (GNU General Public License) Price:
1280 downloads
Orakle 1.0

Orakle 1.0


Orakle is an oracle for the desktop to ease choices. more>>
Orakle is an oracle for the desktop to ease choices.

It works similar to the Magic 8 Ball Konfabulator widget.

Dont get too much addicted.

TODO:
* add more answers
* 2/3 lines per text
- maybe resize the theme

<<less
Download (0.034MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1222 downloads
Cover Hunter 0.3

Cover Hunter 0.3


CoverHunter will scan your digital music albums and try to get the cover image for each one. more>>
CoverHunter will scan your digital music albums and try to get the cover image for each one.

If more than one cover was found, you can choose which one will be set as the cover for that album. These covers are usable for XMMS, KDE, GNOME, etc.

<<less
Download (0.027MB)
Added: 2005-09-15 License: GPL (GNU General Public License) Price:
844 downloads
Apt-get Install / Remove Packet 1.0

Apt-get Install / Remove Packet 1.0


Apt-get Install / Remove Packet is a tool to install/remove packets with debian apt-get. more>>
Apt-get Install / Remove Packet is a tool to install/remove packets with debian apt-get.

About Apt-Get:

Advanced Packaging Tool, or APT, is a package management system used by Debian and its derivatives. APT was originally designed to work with .deb packages on Debian systems, but it has since been modified to work with RPM packages via apt-rpm, and to run on other operating systems such as Mac OS X (see fink). On systems with package management based on .deb, such as Debian, APT is a front-end for dpkg.

APT simplifies the process of installing and removing software on Unix systems, by automating the retrieval, (from the Internet, local network, or CD) the configuration, the compiling (sometimes) and the installation of software from APT sources.

There is no apt program per se; APT is a C++ library of functions that are used by several command line programs for dealing with packages, most notably apt-get and apt-cache.

APT front-ends can upgrade the system or specific packages. Packages can be installed or removed. When installing one or several packages, APT front-ends can list the dependencies of these packages, ask the administrator if packages recommended or suggested by newly installed packages should be installed too, automatically install dependencies and perform other operations on the systems packages to allow the installation of the packages. Similarly, to update one or several packages, front-ends can install, remove or update other packages.

APT is often hailed as one of Debians best features, giving Debian the reputation of being a "pain to install, but a joy to maintain", although with Debian 3.1 and its Debian-Installer, Debians installation might be too easy nowadays to keep this true.

<<less
Download (0.032MB)
Added: 2006-03-22 License: GPL (GNU General Public License) Price:
1319 downloads
Get-Rich-Quick 1.0

Get-Rich-Quick 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-05 License: Freeware Price: Free
202 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5