ringtones for iphone 3g
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 649
Article for Plone 3.2.3
Article for Plone provides a Plone document incorporating images, attachments and links, whith a free choice of layout. more>>
Article for Plone provides a Plone document incorporating images, attachments and links, whith a free choice of layout.
<<less Download (1.1MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
987 downloads
Domino for openSUSE 0.3
Domino theme compiled for openSUSE and related reptiles. more>>
Domino theme compiled for openSUSE and related reptiles.
For the original sources and screenshots go to http://www.kde-look.org/content/show.php?content=42804
<<lessFor the original sources and screenshots go to http://www.kde-look.org/content/show.php?content=42804
Download (MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
555 downloads
Ghost for Linux 0.23
Ghost for Linux is a hard disk and partition imaging and cloning tool similar to Norton Ghost. more>>
Ghost for Linux project is a hard disk and partition imaging and cloning tool similar to "Norton Ghost" and by Symantec.
The created images are optionally compressed, and they can be stored on a local hard drive or transferred to an anonymous FTP server.
A drive can be cloned using the "ClicknClone" function. g4l supports file splitting if the local filesystem does not support writing files >2GB. The included kernel supports ATA, serial-ATA, and SCSI drives.
Common network cards are supported. It is packaged as a bootable CD image with an ncurses GUI for easy use.
Enhancements:
- This release adds new kernels and syslinux, plus other support program options.
- It adds ntfs-3g to support writing to ntfs partitions for the local backup images and adds ntfsclone backups to local drives or partitions.
- Users can now copy the files from the CD image to a flash drive that has been made bootable, and it will then work from flash.
<<lessThe created images are optionally compressed, and they can be stored on a local hard drive or transferred to an anonymous FTP server.
A drive can be cloned using the "ClicknClone" function. g4l supports file splitting if the local filesystem does not support writing files >2GB. The included kernel supports ATA, serial-ATA, and SCSI drives.
Common network cards are supported. It is packaged as a bootable CD image with an ncurses GUI for easy use.
Enhancements:
- This release adds new kernels and syslinux, plus other support program options.
- It adds ntfs-3g to support writing to ntfs partitions for the local backup images and adds ntfsclone backups to local drives or partitions.
- Users can now copy the files from the CD image to a flash drive that has been made bootable, and it will then work from flash.
Download (32MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
586 downloads
Web 2 Icons for Linux -
23 freeware iPhone-like icons of Web 2 Social Bookmarks and Networks for use more>> <<less
Download (2.09MB)
Added: 2009-04-29 License: Freeware Price: Free
213 downloads
CrossFTP for Firefox 1.03
CrossFTP for Firefox is a versatile Cross-Platform FTP client extension. more>>
CrossFTP for Firefox is a versatile Cross-Platform FTP client extension.
This plugin contains two FTP tools: CrossFTP Client and Server. which will appear in the Firefoxs Tools menu:
- CrossFTP Client is a versatile GUI FTP client for multiple platforms. It uses a familiar, Explorer-like interface that even the most novice user can master in minutes.
- CrossFTP Server is a professional FTP Server for multiple platforms. It offers you a high-performance, extremely configurable, and most of all a secure FTP server.
<<lessThis plugin contains two FTP tools: CrossFTP Client and Server. which will appear in the Firefoxs Tools menu:
- CrossFTP Client is a versatile GUI FTP client for multiple platforms. It uses a familiar, Explorer-like interface that even the most novice user can master in minutes.
- CrossFTP Server is a professional FTP Server for multiple platforms. It offers you a high-performance, extremely configurable, and most of all a secure FTP server.
Download (0.002MB)
Added: 2007-07-17 License: MPL (Mozilla Public License) Price:
834 downloads
Quicktime for Linux 2.2
Quicktime for Linux is Quicktime support for Unix. more>>
Quicktime for Linux lets you read and write Quicktime movies using several codecs. There are many Quicktime libraries for Linux; this one emphasizes reliability and accuracy while not stressing economy.
Also included are frontends to several of the codecs which dont require Quicktime encapsulation, header dump, chunk extraction, and recovery tools.
Enhancements:
- Selectively caching GOP frames to speed up reverse playback. Library upgrades for x264 and ffmpeg.
<<lessAlso included are frontends to several of the codecs which dont require Quicktime encapsulation, header dump, chunk extraction, and recovery tools.
Enhancements:
- Selectively caching GOP frames to speed up reverse playback. Library upgrades for x264 and ffmpeg.
Download (28.5MB)
Added: 2006-07-03 License: LGPL (GNU Lesser General Public License) Price:
1251 downloads
Sparklines for Java 1.2
Sparklines are intense, simple, wordlike graphics. more>>
Sparklines are intense, simple, wordlike graphics.
Theres a PHP library for producing sparklines, and even a sparkline web service, but I wanted something I could use to generate sparklines in both Java and JSTL (and I thought it would be a fun project). (Its also worth checking out Whys minimalist python sparklines, which encode the image data directly in the HTML as a data: URI [this library allows you to encode the images as using either data: format or javascript: format (supported by IE) in JSTL])
JSTL examples
< %@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" % >
< %@ taglib prefix="spark" uri="http://www.representqueens.com/taglibs/spark" % >
< c:set var="test" value="5, 35, 22, 19, 16, 10, 4, 33, 9, 12, 27, 36, 22" / >
< img src="< spark:bar name="test" color="red" / >" / >
will produce:
(I think the default size might be a little large).
The "name" attribute specifies the key to find the data (Uses JspContext.findAttribute). It expects the value to be either a List , a Number[], or a String of comma separated int values. Its the only manditory attribute.
The other attributes are width, height, spacing, color, highColor, lastColor, output. You can replace "bar" with "line" to get a linegraph (note: highColor and lastColor are currently not supported for line graphs).
The color attributes can either be a color name (a field name from java.awt.Color), or a HTML hex color (e.g. #ff0000 for red).
Enhancements:
- This release properly URL encodes parameters for server generated sparklines.
- This fixes an issue when using hex specified image colors.
- The tag parameter "background" has been added as a workaround for IE6 PNG transparency.
<<lessTheres a PHP library for producing sparklines, and even a sparkline web service, but I wanted something I could use to generate sparklines in both Java and JSTL (and I thought it would be a fun project). (Its also worth checking out Whys minimalist python sparklines, which encode the image data directly in the HTML as a data: URI [this library allows you to encode the images as using either data: format or javascript: format (supported by IE) in JSTL])
JSTL examples
< %@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" % >
< %@ taglib prefix="spark" uri="http://www.representqueens.com/taglibs/spark" % >
< c:set var="test" value="5, 35, 22, 19, 16, 10, 4, 33, 9, 12, 27, 36, 22" / >
< img src="< spark:bar name="test" color="red" / >" / >
will produce:
(I think the default size might be a little large).
The "name" attribute specifies the key to find the data (Uses JspContext.findAttribute). It expects the value to be either a List , a Number[], or a String of comma separated int values. Its the only manditory attribute.
The other attributes are width, height, spacing, color, highColor, lastColor, output. You can replace "bar" with "line" to get a linegraph (note: highColor and lastColor are currently not supported for line graphs).
The color attributes can either be a color name (a field name from java.awt.Color), or a HTML hex color (e.g. #ff0000 for red).
Enhancements:
- This release properly URL encodes parameters for server generated sparklines.
- This fixes an issue when using hex specified image colors.
- The tag parameter "background" has been added as a workaround for IE6 PNG transparency.
Download (0.030MB)
Added: 2007-03-14 License: The Apache License 2.0 Price:
956 downloads
contextFS for Amarok 0.1
contextFS for Amarok was inspired by the work of amarokFS, here is a script to show the contextbrowser in the fullscreen mode. more>>
contextFS for Amarok was inspired by the work of amarokFS, here is a script to show the contextbrowser in the fullscreen mode.
Same dependencies as amarokFS.
It can also be run by the amarokFS script. Just change the path to /usr/local/bin/contextFS after install.
<<lessSame dependencies as amarokFS.
It can also be run by the amarokFS script. Just change the path to /usr/local/bin/contextFS after install.
Download (0.003MB)
Added: 2007-02-13 License: GPL (GNU General Public License) Price:
985 downloads
contestFS for Amarok 0.1
contestFS for Amarok was inspired by the work of amarokFS, and is a script to show the contextbrowser in the fullscreen mode. more>>
contestFS for Amarok was inspired by the work of amarokFS, and is a script to show the contextbrowser in the fullscreen mode.
Same dependencies as amarokFS.
It can also be run by the amarokFS script. Just change the path to /usr/local/bin/contextFS after install.
<<lessSame dependencies as amarokFS.
It can also be run by the amarokFS script. Just change the path to /usr/local/bin/contextFS after install.
Download (0.003MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
989 downloads
PDCurses for X11 3.3
PDCurses is a public domain curses library for Win32, DOS, OS/2 and X11. more>>
PDCurses is a public domain curses library for Win32, DOS, OS/2 and X11, implementing most of the functions available in System V R4 curses. PDCurses for X11 supports most compilers for these platforms.
PDCurses is distributed principally as source code, but pre-compiled libraries are available for various compilers. See the downloads page for a list.
The X11 port of PDCurses, known as XCurses, allows existing text-mode curses programs to be re-compiled and linked with PDCurses to produce a native X11 application.
Enhancements:
- This release adds an SDL backend, refines the demos, and is faster in some cases.
<<lessPDCurses is distributed principally as source code, but pre-compiled libraries are available for various compilers. See the downloads page for a list.
The X11 port of PDCurses, known as XCurses, allows existing text-mode curses programs to be re-compiled and linked with PDCurses to produce a native X11 application.
Enhancements:
- This release adds an SDL backend, refines the demos, and is faster in some cases.
Download (0.15MB)
Added: 2007-07-12 License: Public Domain Price:
835 downloads
infoRSS 1.1.2 for Firefox
infoRSS displays RSS, Atom, HTML and NNTP feed in a scrolling area the status bar. more>> <<less
Download (0.48MB)
Added: 2007-07-16 License: MPL (Mozilla Public License) Price:
832 downloads
foosic for amaroK 0.3
foosic is a script for amaroK Music Diary. more>>
foosic is a script for amaroK Music Diary. foosic project is an automated music database and a playback statistics tracking system. While you listen to your music, the foosic client submits information about which songs you play. Together with the submissions from other users, we can gather a complete database about currently existing albums, artists, compilations, etc..., as well as information about what is popular and what is not.
You can see your own statistics, and, if you allow it, let your friends see what you are listening to and what you like.
You can browse the database on this site and discover new artists or albums that you didnt know about before."
Based on the protocol description I created a ruby script for amaroK so I can update my statistics also from my Linux box.
The script was tested with ruby version 1.8.3 and amaroK 1.3.8. The script depends on Korundum for the config panel.
You can use the amaroK Script manager to install the script.
As Im no expert neither in ruby nor in Qt, if anyone feels corrections should be made to the script, please tell me so or correct the mistake yourself.
I probably wont add new features unless Im *really* bored. Or they are useful *and* easy to implement.
Oh, and Im not related in any way to the original foosic developers.
<<lessYou can see your own statistics, and, if you allow it, let your friends see what you are listening to and what you like.
You can browse the database on this site and discover new artists or albums that you didnt know about before."
Based on the protocol description I created a ruby script for amaroK so I can update my statistics also from my Linux box.
The script was tested with ruby version 1.8.3 and amaroK 1.3.8. The script depends on Korundum for the config panel.
You can use the amaroK Script manager to install the script.
As Im no expert neither in ruby nor in Qt, if anyone feels corrections should be made to the script, please tell me so or correct the mistake yourself.
I probably wont add new features unless Im *really* bored. Or they are useful *and* easy to implement.
Oh, and Im not related in any way to the original foosic developers.
Download (0.003MB)
Added: 2006-06-02 License: GPL (GNU General Public License) Price:
1243 downloads
Frontend for ffmpeg2theora 2.0
Frontend for ffmpeg2theora is a graphical user interface for tool ffmpeg2theora. more>>
Frontend for ffmpeg2theora is a graphical user interface for tool ffmpeg2theora. Frontend for ffmpeg2theora converts any video which ffmpeg can decode into Ogg/Theora format.
For full readme and translations, please visit my homepage
Build instructions:
At first, unpack downloaded archive (e.g. using midnight commander) and move to program directory (ffmpeg2theora_fe). This program uses build system qmake. Default installation path is set to /usr/bin To change it, edit line DESTDIR in project file ffmpeg2theora_fe.pro Now, it is time to generate Makefile. Simply run
qmake -o Makefile ffmpeg2theora_fe.pro
su -c "make"
To uninstall program, run
su -c "make distclean"
<<lessFor full readme and translations, please visit my homepage
Build instructions:
At first, unpack downloaded archive (e.g. using midnight commander) and move to program directory (ffmpeg2theora_fe). This program uses build system qmake. Default installation path is set to /usr/bin To change it, edit line DESTDIR in project file ffmpeg2theora_fe.pro Now, it is time to generate Makefile. Simply run
qmake -o Makefile ffmpeg2theora_fe.pro
su -c "make"
To uninstall program, run
su -c "make distclean"
Download (0.030MB)
Added: 2007-03-19 License: GPL (GNU General Public License) Price:
953 downloads
SILC Plugin for Kopete 0.3
SILC Plugin for Kopete is a protocol plugin for Kopete, the KDE Instant Messenger. more>>
SILC Plugin for Kopete is a protocol plugin for Kopete, the KDE Instant Messenger. If you ever cursed that you cannot join the SILC Network using Kopete this can help you. It will add SILC support to Kopete.
The plugin is based on libsilc which is part of the SILC Toolkit mentioned above. The library was initially written by Pekka Riikonen and is still maintained by him.
Main features:
- Channels can be joined or added to the contact list.
- One-to-one chats can be initiated by clicking members participating in group chats.
- Password protected channels are supported.
- User invitation is handy through drag-and-drop functionality.
- Signature verification and public key handling are fully supported.
- File transfesr to other buddies is possible, including graphical progress information and automatic detection of NATed workstations.
- guided channel configuration is partially available, this is, mainly topic setting and some boolean options
- MIME support is fully implemented. So it is possible to send files to channels.
- Attributes can distribute your mood, your location on earth or the medium you want to be contacted through.
<<lessThe plugin is based on libsilc which is part of the SILC Toolkit mentioned above. The library was initially written by Pekka Riikonen and is still maintained by him.
Main features:
- Channels can be joined or added to the contact list.
- One-to-one chats can be initiated by clicking members participating in group chats.
- Password protected channels are supported.
- User invitation is handy through drag-and-drop functionality.
- Signature verification and public key handling are fully supported.
- File transfesr to other buddies is possible, including graphical progress information and automatic detection of NATed workstations.
- guided channel configuration is partially available, this is, mainly topic setting and some boolean options
- MIME support is fully implemented. So it is possible to send files to channels.
- Attributes can distribute your mood, your location on earth or the medium you want to be contacted through.
Download (0.097MB)
Added: 2007-05-31 License: GPL (GNU General Public License) Price:
878 downloads
Png2ico for Linux 20021208
Png2ico,converting PNG files to Windows icon resource files. more>> Converts PNG files to Windows icon resource files. If youre looking for a program to create a favicon.ico for your website, look no further.
The program is extremely simple to use. To create a favicon.ico that contains a logo in the resolutions 16x16 and 32x32 (an icon can contain multiple images of different sizes, but a single 16x16 image is enough for a favicon), you would use a command like the following: png2ico favicon.ico logo16x16.png logo32x32.png.<<less
Download (25KB)
Added: 2009-04-01 License: Freeware Price: Free
206 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above ringtones for iphone 3g search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed