Main > Free Download Search >

Free how to save 500 a month software for linux

how to save 500 a month

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2108
Format on Save 1.1.0

Format on Save 1.1.0


Format on Save is a Eclipse plugin to automatically organizes imports and formats code when saving a Java editor. more>>
Format on Save is a Eclipse plugin to automatically organizes imports and formats code when saving a Java editor.

This is the exact equivalent as doing Ctrl-Shift-O, Ctrl-Shift-F before saving. New features: - Sort Members and Correct Indentation - preference page to configure defaults

<<less
Download (0.051MB)
Added: 2006-09-13 License: GPL (GNU General Public License) Price:
1138 downloads
Password Save 0.5

Password Save 0.5


Password Save extension brings up a plain text listing of your passwords in a browser window. more>>
Password Save extension brings up a plain text listing of your passwords in a browser window that can be easily copy-pasted or saved to the hard-drive.

Some javascript warning fixes and a bit of debugging code for helping people that the extension doesnt work for (Email me if you get a blank screen and have some free time to help me debug and well solve this problem once and for all)

In Preferences, go to Privacy => Passwords. When you click View Saved Passwords, there will be an added "Dump Passwords" button. Clicking this will pop up a new browser window with the saved passwords which can easily be saved, printed, or copy-pasted into another location.

This extension will only work (as is) on the released 1.5beta1 - 1.5beta2. The intall.rdf can be tweaked to get it to install fine on any recent nightly or the Deer Park Alphas. It -=can not=- be tweaked to work on 1.0. Sorry!

<<less
Download (0.005MB)
Added: 2006-04-09 License: GPL (GNU General Public License) Price:
738 downloads
Auto Save Document 1.2.0.28

Auto Save Document 1.2.0.28


Auto Save Document is an extension used to store the currently shown document in a separate directory automatically. more>>
Auto Save Document is an extension used to store the currently shown document in a separate directory automatically.

Autosave is a small extension, which can be used to store the currently shown document in a seperate directory automatically when browsing a certain site. You may configure the sites, where all pages will be stored to cache, by adding them to a list. The documents are stored as html-text only (no embedded objects like pictures etc.)

The files are cyclic reused, e.g. if you set the cache size to 100, Autosave will store the document contents to X:/MyCache/Autosave_0.html ... AutoSave_100.html and start again with AutoSave_0.htm when the 101st page is browsed. A small Icon in the statusbar will change its colour each time to indicate a page was written.

If you click this small icon, the current page will be dumped, regardless if the site is in the autosave list or not.

NOTE: this extension is really, really simple! Only plain text is saved, no external .css,.js => the result may look ugly! The one and only intention for this extension is, to save the text for external parsing or similar! Look for Scrapbook etc. in case you want to store more than the plain text!

<<less
Download (0.009MB)
Added: 2007-04-03 License: MPL (Mozilla Public License) Price:
973 downloads
PlotCalendar::Month 1.1

PlotCalendar::Month 1.1


PlotCalendar::Month is a Plot an ASCII or HTML calendar. more>>
PlotCalendar::Month is a Plot an ASCII or HTML calendar.

SYNOPSIS

Creates a Month object for plotting as ASCII, HTML, or in a Perl/Tk Canvas. Calls Day.pm for the individual days within the calendar.

Measurements in pixels because - well, because. It seemed simpler when I made the decision. And it works for both Tk and HTML.

The month is laid out like this :

Month_name Year

---------------------------------------------------------------
| Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---------------------------------------------------------------
| | | | | | | |
| day | day | | | | | |
| | | | | | | |
|--------|--------|--------|-------|--------|--------|--------|
| | | | | | | |
| day | day | | | | | |
| | | | | | | |
|--------|--------|--------|-------|--------|--------|--------|
| | | | | | | |
| day | day | | | | | |
| | | | | | | |
|--------|--------|--------|-------|--------|--------|--------|
| | | | | | | |
| day | day | | | | | |
| | | | | | | |
|--------|--------|--------|-------|--------|--------|--------|
| | | | | | | |
| day | day | | | | | |
| | | | | | | |
|--------|--------|--------|-------|--------|--------|--------|
| | | | | | | |
| day | day | | | | | | optional
| | | | | | | | row
|--------|--------|--------|-------|--------|--------|--------|

Globals : height, width, fgcol,
bgcolmain,


References expect to be given the entire thing, that is
< A HREF="http://yaddayaddayadda/" >
or
< A HREF="mailto:george_tirebiter@noway.nohow" >

The software will terminate it with a < /A > at the right spot.

EXAMPLE

require PlotCalendar::Month;

my $month = PlotCalendar::Month->new(01,1999); # Jan 1999

# global values, to be applied to all cells

------------------------- size of whole calendar
$month -> size(700,700); # width, height in pixels
------------------------- font sizes for digit, name of day, and text
$month -> font(14,10,8);
------------------------- clip text if it wants to wrap?
$month -> cliptext(yes);
------------------------- This can be any day you want
$month -> firstday(Sun); # First column is Sunday
------------------------- If this is not set, regular text will be used.
------------------------- If it is set, then in that directory should be
------------------------- gif files named 0.gif, 1.gif ... January.gif, ...
$month -> artwork(/home/ajackson/public_html/cgi-bin/Calendar/Calendar_art3/);

# arrays of values, if not an array, apply to all cells, if an array
# apply to each cell, indexed by day-of-month

The colors are the standard values used in html
Textstyle encoding is b=bold, i=italic, u=underline, n=normal
Fontsize = 6-14, roughly point sizes

my @text;
my @daynames;
my @nameref;
my @bgcolor;
my @colors = (WHITE,#33cc00,#FF99FF,#FF7070,#FFB0B0,);
my (@textcol,@textsize,@textstyle,@textref);
my @style = (i,u,b,);
my @url;

----------- build some random color and text fields as a demo

for (my $i=1;$i fgcolor(BLACK,); # Global foreground color
$month -> bgcolor(@bgcolor); # Background color per day
$month -> styles(b,bi,ui,); # Global text styles

# Comments

my @prefs = (before,after,after);
my @comments = ([Comment one],["Comment two","and so on"],[Comment three]);
my @comcol = qw(b g b);
my @comstyle = qw(n b bi);
my @comsize = qw(8 10 14);

------------------------- Comments get stuck into an otherwise empty cell
$month->comments(@prefs,@comments,@comcol,@comstyle,@comsize);

------------------------- Wrap a hotlink around the whole day, for each day
$month -> htmlref(@url);

------------------------- set the names for every day
$month -> dayname(@daynames);
------------------------- wrap the name in a hotlink
$month -> nameref(@nameref);

------------------------- set the text and its properties for each day
$month -> text(@text);
$month -> textcolor(@textcol);
$month -> textsize(@textsize);
$month -> textstyle(@textstyle);
$month -> textref(@textref);

# global HTML only options

----------------- allow days to expand vertically to accomodate text

$month -> htmlexpand(yes);

# grab an ascii calendar and print it

my $text = $month -> getascii;

print $text;

------------------- get the html calendar

my $html = $month -> gethtml;

print "< HTML >< BODY >n";
print $html;

<<less
Download (0.020MB)
Added: 2007-07-30 License: Perl Artistic License Price:
816 downloads
Title Save 0.1d

Title Save 0.1d


Title Save is a Firefox extension that replicates IEs default behavior when saving a webpage. more>>
Title Save is a Firefox extension that replicates IEs default behavior when saving a webpage, placing the pages title as filename.

Also, if the page is saved as "Complete", the corresponding URL is inserted as an HTML comment at the top of the file.

<<less
Download (0.005MB)
Added: 2007-06-21 License: MPL (Mozilla Public License) Price:
860 downloads
HTML::CalendarMonthDB 1.01

HTML::CalendarMonthDB 1.01


HTML::CalendarMonthDB is a Perl Module for Generating Persistant HTML Calendars. more>>
HTML::CalendarMonthDB is a Perl Module for Generating Persistant HTML Calendars.

INTERFACE METHODS

* dbname (name of database to use, required if you wish to use a
database)
* dbuser (database user, default nobody)
* dbpass (database user password, default )
* dbcalendar (database calendar name, default )
* dbclient (database calendar client name, default )
* dbhost (database host name, default )
# Examples:
# Create a calendar for this month.
$cal = new HTML::CalendarMonthSimple(); # not persistant
# One for a specific month/year
$cal = new HTML::CalendarMonthSimple(month=>2,year=>2000); # not persistant
# One for "the current month" in 1997
$cal = new HTML::CalendarMonthSimple(year=>1997); # not persistant

# One for a specific month/year, to use database specified
$cal = new HTML::CalendarMonthSimple(month=>2,year=>2000,dbname=>test,dbuser=>postgres,dbcalendar=>testcal,dbclient=>testClient);

<<less
Download (0.024MB)
Added: 2007-08-07 License: Perl Artistic License Price:
808 downloads
HTML::CalendarMonthSimple 1.25

HTML::CalendarMonthSimple 1.25


HTML::CalendarMonthSimple is a Perl Module for Generating HTML Calendars. more>>
HTML::CalendarMonthSimple is a Perl Module for Generating HTML Calendars.

SYNOPSIS

use HTML::CalendarMonthSimple;
$cal = new HTML::CalendarMonthSimple(year=>2001,month=>2);
$cal->width(50%);
$cal->border(10);
$cal->header(Text at the top of the Grid);
$cal->setcontent(14,"Valentines Day");
$cal->setdatehref(14, http://localhost/);
$cal->addcontent(14,"

Dont forget to buy flowers.");
$cal->addcontent(13,"Guess whats tomorrow?");
$cal->bgcolor(pink);
print $cal->as_HTML;

HTML::CalendarMonthSimple is a Perl module for generating, manipulating, and printing a HTML calendar grid for a specified month. It is intended as a faster and easier-to-use alternative to HTML::CalendarMonth.

This module requires the Date::Calc module, which is available from CPAN if you dont already have it.

<<less
Download (0.015MB)
Added: 2007-08-13 License: Perl Artistic License Price:
803 downloads
Save Scummer 002

Save Scummer 002


Save Scummer project is a Seven Day Roguelike written by Jeff Lait. more>>
Save Scummer project is a Seven Day Roguelike written by Jeff Lait.
This provides a windows and linux executable versions along with the source for those brave enough to try and build it from scratch. It also provides a linux and windows curses version for those allergic to graphics.
Main features:
- Intelligent "Do What I Mean" commands that reduce all possible actions to a single keystroke.
- Infinite undo to correct mistakes in pressing said single keystroke.
- Fight the fifty-two monsters from Letter Hunt and one new bonus monster.
- 1980 different weapons and 216 different spells!
- Play one of 8 races or 9 classes!
Enhancements:
- Added documentation about intent of this game and listed various non-bugs.
- Fixed a bug where the borg would attack enemies even when blind.
- Added an eXplore mode so you can take over and pilot the game manually. The correct key to hit isnt in the in-game documentation to encourage you to play it properly first.
<<less
Download (1.2MB)
Added: 2007-04-17 License: BSD License Price:
921 downloads
Etoile Live CD 0.2

Etoile Live CD 0.2


Etoile Live CD is a Linux distribution based on the popular Ubuntu Linux. more>>
Etoile Live CD is a Linux distribution based on the popular Ubuntu Linux.

This is the 0.2 pre-release that we worked on at the Fosdem 2007. Theres still quite a lot of problems on it (check the bugtracker), so we expect the final 0.2 release in about a month. In the meantime, feel free to download the iso and play with it -- and reports any bugs that are not already in the bugtracker !"
<<less
Download (666.7MB)
Added: 2007-03-01 License: GPL (GNU General Public License) Price:
579 downloads
Tk::Month 1.4

Tk::Month 1.4


Tk::Month is a calendar widget which shows one month at a time. more>>
Tk::Month is a calendar widget which shows one month at a time.

SYNOPSIS

use Tk;
use Tk::Month;

$m = $parent->Month(
-month => July,
-year => 1997,
-title => %b %y,
-command => &press,
-printformat => %e,
-navigation => [0|1],
-includeall => [0|1],
-showall => [0|1],
-first => [0|1|2|3|4|5|6],
)->pack();

$m->configure(
-month => July,
-year => 1997,
-command => &press,
-printformat => %e %B %Y %A,
-navigation => [0|1],
-includeall => [0|1],
-showall => [0|1],
-first => [0|1|2|3|4|5|6],
);

$m->separator();
$m->command(
-label => Label,
-command => &callback,
);

<<less
Download (0.016MB)
Added: 2007-08-02 License: Perl Artistic License Price:
813 downloads
Save Complete 0.9b7

Save Complete 0.9b7


Save Complete is a Firefox extension that saves a webpage completely. more>>
Save Complete is a Firefox extension that saves a webpage completely, providing a better alternative to the flawed built-in save functionality of Firefox.

As more and more sites use CSS, Firefoxs built-in complete save becomes increasingly less effective, as it doesnt support stylesheets.

This extension fixes this, and saves the complete page, including all images and all stylesheets associated with the document, even imported stylesheets and images referenced in the stylesheet files.

<<less
Download (0.017MB)
Added: 2007-06-21 License: MPL (Mozilla Public License) Price:
946 downloads
Download Sort 2.5.7

Download Sort 2.5.7


Download Sort is a Firefox extension that automatically saves downloaded files to different directories. more>>
Download Sort is a Firefox extension that automatically saves downloaded files to different directories when using "Save Link As..." or "Save Image as..."

<<less
Download (0.025MB)
Added: 2007-07-16 License: MPL (Mozilla Public License) Price:
876 downloads
Save Lyric 1.0

Save Lyric 1.0


Save Lyric script request lyric download (from http://lyrc.com.ar) and if succesfull save it into played mp3s directory. more>>
Save Lyric script request lyric download (from http://lyrc.com.ar) and if succesfull save it into played mp3s directory.

<<less
Download (0.002MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1089 downloads
Furl-save 1.0.3

Furl-save 1.0.3


Furl-save project is a Perl script that does a backup of your categorized, keyword-tagged web bookmarks. more>>
Furl-save project is a Perl script that does a backup of your categorized, keyword-tagged web bookmarks and their respective page contents stored on online service furl.net
It was tested on following platforms:
- RedHat Linux 7.3
- RedHat Linux 9.0
- Fedora Core 4, 5, 6 on Intel x86
- Microsoft Windows XP with ActivePerl installed
<<less
Download (0.004MB)
Added: 2007-04-20 License: MIT/X Consortium License Price:
919 downloads
Save The Penguins 0.02

Save The Penguins 0.02


Save The Penguins is a crazy space shooter with penguins and flying saucers. more>>
Save The Penguins is a crazy space shooter with penguins and flying saucers.
This is inspired by "Save The Gweeks" for the Archimedes, in which you saved the gweeks from the snerds. I havent had access to the original, so how close it is I couldnt say.
You control this sphere/circle/whatever with the mouse. Left click to acellerate towards the cursor. Right click to fire lasers. Middle click to pause. Esc to Quit.
The idea is to kill the space ships before they either kill you or all the penguins.
The art for the penguins came from Pingus, the tileset was ripped from supertux.
If anyone would like to contribute levels/art/sound that would be cool.
Main features:
- Scrolling, moving and shooting.
- Tileset defined in simple configuration file
- Loading/Saving level to file with in-game level editor (press E).
- Objects (that is, non-static ones) get damaged when you hit them. The penguins explode in a pile of blood.
- Reasonable collision detection - you have to at least try to get it stuck.
- NEW!! Nice particle-based explosions. Saves me both needing a graphic for it, and it looks pretty cool
- NEW!! Powerups. Dont do much atm. One heals you, the other two hurt you by different amounts. Theres a hook to attach a sound to powerup/powerdown for when I get round to it.
<<less
Download (0.46MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
827 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5