Main > Free Download Search >

Free personalized christmas ornaments software for linux

personalized christmas ornaments

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 83
Christmas Theme 0.1

Christmas Theme 0.1


Christmas Theme is a Christmas theme designed for GNOME. more>> <<less
Added: 2008-10-23 License: GPL Price: FREE
1 downloads
Web-Based Adult Content Server 0.7.0

Web-Based Adult Content Server 0.7.0


Web-Based Adult Content Server is a suite of programs which manage photo sets and video clips of an adult nature. more>>
Web-Based Adult Content Server is a suite of programs which manage photo sets and video clips of an adult nature.
It runs on a home Linux/Unix server and creates a personalized adult Web server in which to store, preuse, and catalogue a personal collection of adult material.
Web-Based Adult Content Server has many features, like model catalogs, attribute-based searching, randomized highlights, new addition lists, and a flexible bookmark mechanism.
Enhancements:
- This release has new features and many bugfixes.
- It includes a new Web-based Model Manager application, locations-based filtering (e.g. Bathroom), and a new connections infrastructure for galleries and ad-hoc collections.
<<less
Download (0.52MB)
Added: 2007-07-09 License: GPL (GNU General Public License) Price:
848 downloads
Pod::HtmlEasy 0.091

Pod::HtmlEasy 0.091


Pod::HtmlEasy Perl module can generate personalized HTML from PODs. more>>
Pod::HtmlEasy Perl module can generate personalized HTML from PODs. By default the HTML generated is similar to the CPAN site style for module documentation.

SYNOPSIS

Simple usage:

my $podhtml = Pod::HtmlEasy- >new() ;

my $html = $podhtml- >pod2html( test.pod ) ;

print "$htmln" ;

Complete usage:

use Pod::HtmlEasy ;

Create the object and set local events subs:

Note that these are all the events, and examples of how to implement
them. All of these events are, of course, already implemented, so if
the actions provided are adequate, no local subs are required.

The actual implementation of on_head1 is somewhat more complex, to
provide for the detection of the module title and insertion of the
uparrow.

my $podhtml = Pod::HtmlEasy- >new (

on_B = > sub {
my ( $this , $txt ) = @_ ;
return "< b >$txt< /b >" ;
} ,

on_C = > sub {
my ( $this , $txt ) = @_ ;
return "< font face=Courier New >$txt< /font >" ;
} ,

on_E = > sub {
my ( $this , $txt ) = @_ ;
$txt =~ s{^&}{}smx;
$txt =~ s{;$}{}smx;
$txt = qq{#$txt} if $txt =~ /^d+$/ ;
return qq{ &$txt;};
} ,

on_F = > sub {
my ( $this , $txt ) = @_ ;
return "< b >< i >$txt< /i >< /b >" ;
} ,

on_I = > sub {
my ( $this , $txt ) = @_ ;
return "< i >$txt< /i >" ;
} ,

on_L = > sub {
my ( $this , $L , $text, $page , $section, $type ) = @_ ;
if ( $type eq pod ) {
$section = defined $section ? "#$section" : ;
$page = unless defined $page;
return "< i >< a href=http://search.cpan.org/perldoc?$page$section >$text< /a >< /i >" ;
}
elsif( $type eq man ) { return "< i >$text< /i >" ;}
elsif( $type eq url ) { return "< a href=$page target=_blank >$text< /a >" ;}
} ,

on_S = > sub {
my ( $this , $txt ) = @_ ;
$txt =~ s/n/ /gs ;
return $txt ;
} ,

on_X = > sub { return ; } ,

on_Z = > sub { return ; } ,

on_back = > sub {
my $this = shift ;
return "< /ul >$NL" ;
} ,

on_begin = > sub {
my $this = shift ;
my ( $txt , $a_name ) = @_ ;
$this- >{IN_BEGIN} = 1;
return ;
} ,

on_error = > sub {
my ( $this , $txt ) = @_ ;
return qq{< !-- POD_ERROR: $txt -- >} ;
} ,

on_end = > sub {
my $this = shift ;
my ( $txt , $a_name ) = @_ ;
delete $this- >{IN_BEGIN};
return ;
} ,

on_for = > sub { return ;} ,

on_head1 = > sub {
my ( $this , $txt , $a_name ) = @_ ;
return qq{< a name=$a_name >< /a >< h1 >$txt< /h1 >$NL$NL} ;
} ,

on_head2 = > sub {
my ( $this , $txt , $a_name ) = @_ ;
return qq{< a name=$a_name >< /a >< h2 >$txt< /h2 >$NL$NL} ;
} ,

on_head3 = > sub {
my ( $this , $txt , $a_name ) = @_ ;
return qq{< a name=$a_name >< /a >< h3 >$txt< /h3 >$NL$NL} ;
} ,

on_head4 = > sub {
my ( $this , $txt , $a_name ) = @_ ;
return qq{< a name=$a_name >< /a >< h4 >$txt< /h4 >$NL$NL} ;
} ,

on_include = > sub {
my ( $this , $file ) = @_ ;
return qq{./$file} ;
} ,

on_item = > sub {
my ( $this , $txt ) = @_ ;
return qq{< li >$txt< /li >$NL} ;
} ,

on_index_node_start = > sub {
my ( $this , $txt , $a_name , $has_children ) = @_ ;
my $ret = qq{< li >< a href=#$a_name >$txt< /a >$NL} ;
$ret .= q{$NL< ul >$NL} if $has_children ;
return $ret ;
} ,

on_index_node_end = > sub {
my $this = shift ;
my ( $txt , $a_name , $has_children ) = @_ ;
my $ret = $has_children ? q{< /ul >} : $EMPTY ;
return $ret ;
} ,

on_over = > sub {
my ( $this , $level ) = @_ ;
return qq{< ul >$NL? ;
} ,

on_textblock = > sub {
my ( $this , $txt ) = @_ ;
return if exists $this- >{IN_BEGIN};
return qq{< p >$txt< /p >$NL} ;
} ,

on_uri = > sub {
my ( $this , $uri ) = @_ ;
return qq{< a href=$uri target=_blank >$uri< /a >{ ;
} ,

on_verbatim = > sub {
my ( $this , $txt ) = @_ ;
$txt =~ s{(A$NL)*(A$NL)z}{}gsmx;
return unless length $txt;
return qq{< pre >$txt< /pre >$NL} ;
} ,
) ;

## Convert to HTML:

my $html = $podhtml- >pod2html(test.pod ,
test.html ,
title = > POD::Test ,
body = > { bgcolor = > #CCCCCC } ,
css = > test.css ,
) ;

<<less
Download (0.025MB)
Added: 2007-07-23 License: Perl Artistic License Price:
823 downloads
Ciberia Content Federator 1.0

Ciberia Content Federator 1.0


Ciberia is a free blog aggregator, or content federator, that allows anyone to create a Ciberpunk.com style site. more>>
Ciberia is a free blog aggregator, or content federator, that allows anyone to create a "Ciberpunk.com style" site in just five minutes.

You only need to have PHP installed on your server, and can change the appearance with CSS.

Instructions for installing Ciberia:

1. In data/uris_ciberguests.php and data/uris_members.php files, write the proper URIs from the blogs feeds
from member and guest blogs (left and right columns respectively), the path in the server from the install directory
and the e-mail adress where readers can write you.
2. In /graphics directory, save the pictures of members and guests as member_1.png, member_2.png ... and guest_1.png
etc. just in the same order you saved the URIs in step 1. We recommend 50x60 pixels.
3. Upload it all to your server and check that directories have write permission only for the program, not for the readers.
Be careful also with update.php: readers should have read permission only for that file.
4. Run install.php from your browser by typping http://www.yourdomain.any/install.php in the direction bar.
5. Dont forget to delete install.php after installation is finished!
6. Personalize style.css to modify the final view of the website. If you want to add banners or sections, you will must modify update.php

How Ciberia works:

The program updates its cache every 10 minutes, dont panic if your post does not appear inmediately on front.
<<less
Download (0.045MB)
Added: 2005-10-13 License: GPL (GNU General Public License) Price:
1471 downloads
smsjoker-script 2.4

smsjoker-script 2.4


smsjoker-script is a script to send SMS over the SMS-Script-Gateway of http://www.smsjoker.de/ more>>
smsjoker-script is a script to send SMS over the SMS-Script-Gateway of http://www.smsjoker.de/
I use it to send SMS out of kaddressbook in KDE 3.5.x with:
smsjoker-script "%N" "%F"
An other interesting usage is to send an text (like "Merry Christmas and a happy new Year") to every number in an textfile.
Usage: /Path/to/the/script/smsjoker [Options] [Destination] [Text]
If you enter [Destination] you must also enter [Text]
[Destination] can be an number or the path to an textfile with numbers on each line
[Text] can be the SMS-Text or the path to an textfile with the SMS-text in it
If you dont give Destination and Text you come to the interactive-mode
Possible Options:
-t [eigen|anonym] eigen shows your own Cellphone-Number as sender not an standard-one
-d Go to Debug-Mode
-p Enforce Popups
Enhancements:
- Important Update: The IP of the smsjokers http-interface will change. You should update to 2.4 now.
<<less
Download (0.008MB)
Added: 2006-12-03 License: GPL (GNU General Public License) Price:
1056 downloads
Christmas Social Bookmark Icons Linux -

Christmas Social Bookmark Icons Linux -


Beautiful Christmas Icons for Feeds and Social bookmarks more>> <<less
Download (5.50MB)
Added: 2009-04-24 License: Freeware Price:
182 downloads
Paketto Keiretsu 1.10

Paketto Keiretsu 1.10


Paketto Keiretsu is a collection of tools that use new and unusual strategies for manipulating TCP/IP networks. more>>
Paketto Keiretsu is a collection of tools that use new and unusual strategies for manipulating TCP/IP networks.
They tap functionality within existing infrastructure and stretch protocols beyond what they were originally intended for.
It includes Scanrand, an unusually fast network service and topology discovery system, Minewt, a user space NAT/MAT router, Linkcat, which presents a Ethernet link to stdio, Paratrace, which traces network paths without spawning new connections, and Phentropy, which uses OpenQVIS to render arbitrary amounts of entropy from data sources in three dimensional phase space.
Enhancements:
- OpenBSD Support
- Solaris (and Big-Endian) Support
- "Distco" mode to Scanrand, for quickly discovering the distance to an arbitrary host. Fast RSTs dont reset the TTL, so RST TTL / 2 = average distance. We use a barren segment of the TTL range to detect and evaluate TTL reflection.
- Many, many bug fixes
- Merry Christmas! Happy Holidays!
<<less
Download (0.88MB)
Added: 2006-03-10 License: GPL (GNU General Public License) Price:
1336 downloads
Jesusonic 0.99.1

Jesusonic 0.99.1


Jesusonic Software turns your PC or Mac into a fully programmable realtime effects processor. more>>
Jesusonic Software turns your PC into a fully programmable realtime effects processor.
General things to note before installing/running:
- Remember that this is just a preview release--many things may be broken, and it may not work completely as you expect.
- Be sure to turn your speakers down! If you run Jesusonic and it is sampling the input and outputting the output, you could get some nasty feedback if not prepared.
- On Windows, set up your mixer settings accordingly. Once you run Jesusonic, it will let you choose the input/output method. For low latency, ASIO or Kernel Streaming is really a must. Kernel Streaming should work most of the time, though currently it just uses the default sound devices, so you may have to change this in the Windows control panel. If you have an ASIO driver for your soundcard, this is the vastly preferred way to go. A good ASIO driver for USB sound devices is available (though not free) from usb-audio.com. A good ASIO driver for all soundcards (it just wraps the - WDM driver) is available at asio4all.com (and is free).
- More documentation will be available in the next couple weeks, the main goal here was to get something for the really hardcore people to play with by Christmas. Sorry if its hard to understand, but in general just try hitting keys to do things.
Supports ALSA and OSS, only tested on Debian unstable distribution, but should work on most recent Linux 2.4 and 2.6 systems.
Enhancements:
- fixed bug in package tool (preset packaging)
- added left pane (effect queue) in main view (tab toggles)
<<less
Download (1.1MB)
Added: 2006-02-24 License: Other/Proprietary License Price:
1418 downloads
Pansophica 1.2-7

Pansophica 1.2-7


Pansophica is a Web search agent with unique neural net intelligence. more>>
Pansophica is a Web search agent with unique neural net intelligence.
Pansophica organizes and personalizes Web sites and searches. And, Pansophica makes it easier, quicker, and more fun to find Web documents than ever before.
Experience powerful virtual reality visualization that slams you with relevant documents.
Get smarter with neural nets that learn, adapt and make your own personal view of the Web. Fly, zoom, twist, and conquer the Web.
Benefits:
Find what you need
- Eliminate dead materials
- Cluster according to topic
- See attributes like size and age
- Graze to terms and subjects of interest through a concept map
- Explore a document map that clusters according to topic
- Search by keywords and phrases
- Subset and rank according to relevancy
- Experience a visually rich and interactive interface
- Double-click to open documents in your browser
Get the whole picture
- Search engines cover only 10% of the Internet. Pansophica sees it all.
Save and re-use
- Revisit searches later
- Save and email searches to friends and associates
- Make powerful visual presentations of search results
Enhancements:
- Updates to work with the new Google page layout.
<<less
Download (0.90MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
971 downloads
tkspeedtouch 0.1

tkspeedtouch 0.1


tkspeedtouch is a simple and clean GUI for setting up Alcatel SpeedTouch modems. more>>
tkspeedtouch is a simple and clean GUI to setting up speedtouch alcatel modem. It uses appropriate drivers developed by http://speedtouch.sourceforge.net coders, and Alcatel microwave code. Configuration no need longer phases.

Only a linux box within a USB compatible kernel with pppd support. Also need TK a GUI rendering progam lenguage that works within TCL scripting lang. Few steps and you can use your ADSL modem, typing only `./start-on ... Programm Runs only in GUI (X11).

Program configure your box to USE base setting and features of modem. Advanced configuration of pppd or customized settings for modem are not need to run modem. you can also modify and personalize your scripts after app. esecution.
<<less
Download (0.063MB)
Added: 2005-04-08 License: GPL (GNU General Public License) Price:
1659 downloads
DNA Counter 1.0.4

DNA Counter 1.0.4


www.dnabaser.com This tool will show the proportions between nucleotides in a DNA sequence. You dont need to install it or unpack it. Just download the program and double click to run it. Other software: DNA Baser is an affordable alternative for assembly of DNA sequences and generation of contigs. File formats supported are abi, scf and seq (or FASTA). Chromatograms of the assembled sequences are displayed in a synchronized format with the generated contig. more>>

DNA Counter - www.dnabaser.com

This tool will show the proportions between nucleotides in a DNA sequence.

You dont need to install it or unpack it. Just download the program and double click to run it.

Other software by HeracleSoftware:

DNA Baser is an affordable alternative for assembly of DNA sequences and generation of contigs. File formats supported are abi, scf and seq (or FASTA). Chromatograms of the assembled sequences are displayed in a synchronized format with the generated contig. Ambiguous bases in the contig are highlighted and corrections are suggested by DNABaser based on Quality Values of the trace files. Minimum input from the user required. Editing of ambiguous bases, including insertion and deletion, is possible. The settings of the assembly engine can be adjusted by the user. The user can personalize the appearance of chromatograms, nucleotides, background. The Quality Values of the trace files are displayed above chromatograms, so that the user can easily decide on the corrections in the final contig. Original chromatogram files are automatically trimmed based on Quality Values. The contig is automatically saved in FASTA format, in the same directory with the original trace files. By using a built-up database of primer and vector sequences, that can be edited/upgraded by the user, DNABaser can be set to automatically trim the vector sequence out of the final contig.

The affordable price is another important feature of DNABaser, at only 490 USD per single license; significant discounts are offered for institutions that order several licenses of DNABaser (see our pricing policy on our web pages).


Enhancements:
Version 1.0.3

better speed


System Requirements:CPU: 100MHz, 16MB RAM, Video 800x600, 0.3MB HDD free space
<<less
Download (214Kb)
Added: 2008-08-01 License: Free Price: Free
10 downloads
QUAKE 4 Quakemas Map Pack

QUAKE 4 Quakemas Map Pack


QUAKE 4 Quakemas Map Pack is a bonus collection for Christmas with maps for Quake 4. more>>
QUAKE 4 Quakemas Map Pack is a bonus collection for Christmas with maps for Quake 4.

This Map Pack is compatible with QUAKE 4 1.0, and updates 1.0.4.0 and 1.0.5.0.

This Map Pack consists of the file pak013.pk4 and contains the following multiplayer maps:

Campgrounds Redux (q4dm9):

With QUAKE 4s updated technology, Campgrounds Redux now has a fresh look and feel, revitalizing this QUAKE III(tm) classic. Excellent for any number of players, this updated version supports Deathmatch, Team Deathmatch and Tournament modes, where hard-core QUAKE fans can get crazy with this throw-back to one of their old favorites.

Railed (q4tourney1):

Set in an abandoned, rusting Strogg facility, the environment in Railed produces fast-paced frenetic tournament style action! This new map is all about close-quarters combat and hair-trigger reflexes as players hustle through the winding, multi-tiered corridors. Designed especially for Tournament play, Railed also supports Deathmatch and Team Deathmatch game modes, and is guaranteed to provide some thrilling fast-action gameplay.

Tremors (q4ctf7):

Built within a twisting underground cavern and peppered throughout with pipes, bridges, and catwalks, Tremors demands tactical expertise. Enemies attack from above and below in the enormous, multi-tiered environment, making team-play invaluable. Tremors is perfect for huge Capture-The-Flag games, and also supports the Arena Capture-The-Flag gameplay mode.

To use the new maps in the map rotation cycle, a new map cycle script file has been included with the Map Pack, called mapcycle-mp1.scriptcfg.

To use the new map cycle script:

1. On the Multiplayer- Create Server screen, click "Advanced Options"
2. In the "Map cycle script file" field, enter mapcycle-mp1.scriptcfg
3. Click "Close advanced options"
4. Start the server

Alternately, this can be set with the console command:

g_mapCycle mapcycle-mp1.scriptcfg

To uninstall, simply delete the pak013.pk4 file from your QUAKE 4q4base directory.
<<less
Download (16.4MB)
Added: 2005-12-23 License: Freeware Price:
1400 downloads
Security Officers Best Friend (SOBF Tool) 1.0b1

Security Officers Best Friend (SOBF Tool) 1.0b1


Security Officers Best Friend (SOBF Tool) is an Information Security Risk Analysis and Management tool. more>>
Security Officers Best Friend (SOBF Tool) is an Information Security Risk Analysis and Management tool. It is the reference implementation of the SOMAP.org Guide and follows the risk analysis workflow as described in the Guide.

The SOBF Tool is currently in development and there are public preview downloads from time to time.

The SOBF tool makes heavy use of the structures and references from the Repository and features a layer with personalized data ontop the theoretical layer provided by the Repository. The SOBF tool links theoretical informations with a concrete inventory to help the security officer in analyzing and managing his or her assets.

With the data and calculations from the SOBF Tool a security officer can generate reports about situations, gaps, protection profiles and the state of an environment.

<<less
Download (16.3MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
844 downloads
VectorLinux 5.8 STD

VectorLinux 5.8 STD


Vector Linux is a small, fast, Linux operating system for Intel, AMD and x86 compatible systems. more>>
Vector Linux is a small, fast, Linux operating system for Intel, AMD and x86 compatible systems, based on one of the original Linux distributions, Slackware.
The enormously popular Slackware is the true Unix of Linux distributions and is used by major corporations, universities and home users alike. Its popularity stems from the fact that it is a robust, versatile and almost unbreakable system.
Slackware has been traditionally known to be about as user friendly as a coiled rattlesnake and thats where Vector Linux comes into play. We have produced a bloat free, easy to install, configure and maintain Slackware based system that is second to none.
Main features:
- Kernel version 2.6.7 available in ide or scsi configurations.
- Glibc-2.3.2
- Available as a text console system or with optional XFree GUI
- XFree-4.3.x is the default X system.
- New graphical package manager has been added, vecpkg.
- Easy on your system resources, should run fine with a minimum of 32mb of ram
- Only reguires 850 megs of disk space for full install (but you should have more available for additional programs and swap space)
- Laptop support including pcmcia and apm.
- Usb support with hotplugging
- Most available Linux hardware drivers are included.
- XFCE4, Fluxbox and ICEwm window managers with antialias font support. More available on the deluxe CD.
- KDE-3.2.3 and dropline-gnome is available on the deluxe CD version.
- Internet ready with Mozilla-1.7, Dillo, Gaim, Xchat and more. Mplayer, flash, acrobat reader and java all available on the deluxe CD.
- Abiword a stand alone full featured word processor that imports exports MS word style documents. OpenOffice available on the deluxe CD.
- Xview and GQview for viewing, manipulating and editing graphics files
- The Gimp a very sophisticated image creation program available on the deluxe CD
- XMMS to play most music formats including CDs
- A full compliment of GUI programs to handle email, file management, text editing, sound manipulation, file compression, desktop themes and more.
- Full development suite with most common libraries, compilers and related tools.
- Gcc updated to version 3.2.3.
- fully functional ftp server based on proFTPD
- PPP setup wizard for easy connection to the net via your modem. Both pppsetup and wvdial available. Update gkdial is now available also.
- VI style text editors, mutt for email, lynx text web browsing, Midnight Commander file manager, ncftp, telnet, ping, finger and all the basic networking applications and daemons.
- Vim, apache, mysql, Emacs, samba, screen all available on the deluxe CD version.
- Added security with a built in gshield firewall, port sentry, openssl and openssh..
- Enhanced USB support with hotplugging.
- The default file manager (midnight commander) will install uninstall all software packages including rpms, slps, debs, and tgz.
Enhancements:
- The VectorLinux development team is proud to announce the release of VectorLinux 5.8 Standard, code named Santa (Merry Christmas!). This is the fruit that has resulted from several months of coding, debugging and testing by the core development team and the VectorLinux community. This release follows our legendary tradition of stability (inherited from Slackware 11.0), blazing speed on even modest hardware, and simplicity of design and function. The release features fully-working browser plugins, including Flash 9, Java, mp3, Real and Windows media, and DVD playback. Additional features include: Linux kernel 2.6.18.5, fully customized Xfce 4.3.99.2, SeaMonkey 1.0.6, Firefox 2.0 and Opera 9.10, the GIMP and Xara LX for your graphic needs, AbiWord and Gnumeric for your office tasks...
<<less
Download (551MB)
Added: 2006-12-18 License: GPL (GNU General Public License) Price:
1044 downloads
SlimScrobbler 0.37.5

SlimScrobbler 0.37.5


SlimScrobbler is an slimserver plugin that builds a profile of your musical tastes. more>>
SlimScrobbler project will submit music files that you listen to on your Squeezebox to Last.FM, where it will show up on your recently-played list and count towards your listening statistics.
If you want to listen to Last.FM internet radio through your Squeezebox, then you also need James Craigs Last.FM plugin - and very good it is too.
Once upon a time there were two websites, one called Audioscrobbler, and one called Last.FM. Audioscrobbler tracked what you listened to on your PC; Last.FM provided personalised streaming radio.
In 2005 they merged completely and dropped the "Audioscrobbler" name. Thats why all the plugins for Last.FM tend to be called Scrobblers.
Enhancements:
- Changed tag submission format again!
<<less
Download (0.050MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1025 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5