skin eternal
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 186
Dreams Eternal 0.1
Dreams Eternal project is a story-driven FPS game that is set in the dream world. more>>
Dreams Eternal project is a story-driven FPS game that is set in the dream world.
Dreams Eternal is an FPS game that focuses on a strong story line and puzzle solving. It is set in the dream world.
The very short summary of the story is that a scientific experiment went wrong and everybody is stuck in the dream world.
You have to end this experiment by hopping from dream to dream. In every dream you have to find clues to try to find out how the experiment can be aborted.
<<lessDreams Eternal is an FPS game that focuses on a strong story line and puzzle solving. It is set in the dream world.
The very short summary of the story is that a scientific experiment went wrong and everybody is stuck in the dream world.
You have to end this experiment by hopping from dream to dream. In every dream you have to find clues to try to find out how the experiment can be aborted.
Download (MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1081 downloads
Interact 2.4
Interact project is an online learning and collaboration platform. more>>
Interact project is an online learning and collaboration platform.
Interact is an online learning and collaboration platform that was developed by the Christchurch College of Education.
It is a free alternative to the likes of WebCT and Blackboard, and was designed with the intention of making it easy for students and lecturers to interact online, and focuses on constructivist and Vygotskian views of teaching and learning.
Development Release for testing only - not recommended for live servers.
Enhancements:
- Major changes
- Lowercased all database table/column names to allow for better portability between linux/windows
- Major revamp of skins interface
- New default skin
- Improvements to journal/blog component
- New Chat component
- Fixed cross server scripting vulnerabilities
<<lessInteract is an online learning and collaboration platform that was developed by the Christchurch College of Education.
It is a free alternative to the likes of WebCT and Blackboard, and was designed with the intention of making it easy for students and lecturers to interact online, and focuses on constructivist and Vygotskian views of teaching and learning.
Development Release for testing only - not recommended for live servers.
Enhancements:
- Major changes
- Lowercased all database table/column names to allow for better portability between linux/windows
- Major revamp of skins interface
- New default skin
- Improvements to journal/blog component
- New Chat component
- Fixed cross server scripting vulnerabilities
Download (2.3MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
819 downloads
SkinLF 6.7
SkinLF provides a skin system for Java programs. more>>
Todays applications tend to be skinnable: cdplayers, email notifiers, even operating systems. SkinLF project provides a skin system for Java programs.
Skin Look And Feel allows Java developers to write skinnable application using the Swing toolkit. Skin Look And Feel is able to read GTK (The Gimp Toolkit) and KDE (The K Desktop Environment) skins to enhance your application GUI controls such as Buttons, Checks, Radios, Scrollbars, Progress Bar, Lists, Tables, Internal Frames, Colors, Background Textures, Regular Windows. Skin Look And Feel (aka SkinLF) also includes NativeSkin to create irregular windows.
Enhancements:
- This version includes a patch addressing a threading issue in popup menu animation.
- Several changes were made to reduce a potential memory leak when using disabled buttons.
- SkinLF was updated to Laf-Plugin 0.2 (from https://laf-plugin.dev.java.net/).
<<lessSkin Look And Feel allows Java developers to write skinnable application using the Swing toolkit. Skin Look And Feel is able to read GTK (The Gimp Toolkit) and KDE (The K Desktop Environment) skins to enhance your application GUI controls such as Buttons, Checks, Radios, Scrollbars, Progress Bar, Lists, Tables, Internal Frames, Colors, Background Textures, Regular Windows. Skin Look And Feel (aka SkinLF) also includes NativeSkin to create irregular windows.
Enhancements:
- This version includes a patch addressing a threading issue in popup menu animation.
- Several changes were made to reduce a potential memory leak when using disabled buttons.
- SkinLF was updated to Laf-Plugin 0.2 (from https://laf-plugin.dev.java.net/).
Download (0.80MB)
Added: 2006-07-24 License: The Apache License Price:
1193 downloads
NewsTyper 1.1
NewsTyper is an RSS/RDF reader built with Macromedia Flash. more>>
NewsTyper is an RSS/RDF reader built with Macromedia Flash.
Enhancements:
- This release has a skin interface, major security fixes, and interface cleanup.
<<lessEnhancements:
- This release has a skin interface, major security fixes, and interface cleanup.
Download (0.067MB)
Added: 2005-09-23 License: GPL (GNU General Public License) Price:
1493 downloads
SGCE 1.4 Beta
SGCE is a skin care management system that manages customers, treatment follow-up, product supply, clinic history and more. more>>
SGCE is a skin care management system that manages customers, treatment follow-up, product supply, clinic history, and skin status.
The project is a Web-based management system with Brazilian-Portuguese language support.
Installation:
- Load mysql structure from database-mysql.sql file
- Set up conf.inc.php
<<lessThe project is a Web-based management system with Brazilian-Portuguese language support.
Installation:
- Load mysql structure from database-mysql.sql file
- Set up conf.inc.php
Download (0.028MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
865 downloads
Download (38.2MB)
Added: 2007-06-03 License: Free To Use But Restricted Price:
548 downloads
EZ Red Skin Fix
EZ Red Skin Fix is a script-fu that can be used to improve skin that has a reddish tint. more>>
EZ Red Skin Fix is a script-fu based on a technique by lylejk of dpreview.com that can be used to improve skin that has a reddish tint.
<<less Download (MB)
Added: 2006-09-15 License: GPL (GNU General Public License) Price:
1139 downloads
Shed Skin 0.0.23
Shed Skin is an experimental Python-to-C++ compiler. more>>
Shed Skin is an experimental Python-to-C++ compiler. Shed Skin accepts pure Python programs, and generates optimized C++ code. This means that, in combination with a C++ compiler, it allows for translation of Python programs into highly efficient machine language. For a set of 16 non-trivial test programs, measurements show a typical speedup of 2-40 over Psyco, about 12 on average, and 2-220 over CPython, about 45 on average (see Section 5 of my Masters Thesis on the right). Shed Skin also outputs annotated source code.
The high performance and elegant approach of Shed Skin (it is only 6000 lines!) come at a cost. First, it currently only accepts programs that are statically typed. This simply means that variables can only ever have a single type. So e.g. a = 1; a = 1 is not allowed. Of course, a single type can be abstract or generic (as in C++), so that e.g. a = A(); a = B(), where A and B have a common base class, is allowed.
Second, Python programs cannot currently freely use the Python standard library. However, some common imports are supported (see *_.py), and many others can be easily added. The problem is a practical one, since in theory it is possible to create bindings for most library modules. A simple work-around can be to only compile critical parts of a Python program, and communicate with it through e.g. files and standard in- and output. This way, the main program can use the full Python dynamics and standard library, and the whole program is written in pure Python.
Shed Skin is still alpha software, and there are some other minor, mostly temporary, limitations. Please read the Limitations section carefully, before trying to compile a program. The only thing I ask in return for making the software available under the GPL, is that you send me an email when you encounter a problem, that is not listed among these limitations. This is the fastest way to getting your program supported, since I typically do not fix problems I do not know about. Please also let me know if you would like me to implement certain library calls.
Enhancements:
- Support for __iadd__, __imul__, and such was added (but not for __ipow__ and __imod__).
- The set implementation was optimized.
- A string formatting problem was fixed (%% did not always work).
- Some bugs were fixed in generating extension modules.
- A particular inheritance problem was fixed.
<<lessThe high performance and elegant approach of Shed Skin (it is only 6000 lines!) come at a cost. First, it currently only accepts programs that are statically typed. This simply means that variables can only ever have a single type. So e.g. a = 1; a = 1 is not allowed. Of course, a single type can be abstract or generic (as in C++), so that e.g. a = A(); a = B(), where A and B have a common base class, is allowed.
Second, Python programs cannot currently freely use the Python standard library. However, some common imports are supported (see *_.py), and many others can be easily added. The problem is a practical one, since in theory it is possible to create bindings for most library modules. A simple work-around can be to only compile critical parts of a Python program, and communicate with it through e.g. files and standard in- and output. This way, the main program can use the full Python dynamics and standard library, and the whole program is written in pure Python.
Shed Skin is still alpha software, and there are some other minor, mostly temporary, limitations. Please read the Limitations section carefully, before trying to compile a program. The only thing I ask in return for making the software available under the GPL, is that you send me an email when you encounter a problem, that is not listed among these limitations. This is the fastest way to getting your program supported, since I typically do not fix problems I do not know about. Please also let me know if you would like me to implement certain library calls.
Enhancements:
- Support for __iadd__, __imul__, and such was added (but not for __ipow__ and __imod__).
- The set implementation was optimized.
- A string formatting problem was fixed (%% did not always work).
- Some bugs were fixed in generating extension modules.
- A particular inheritance problem was fixed.
Download (0.16MB)
Added: 2007-06-29 License: GPL (GNU General Public License) Price:
850 downloads
Gmail Skins 0.9.8
Gmail Skins provides skins and other extra features for Gmail. more>>
Gmail Skins provides skins and other extra features for Gmail.
Main features:
- Change the colour/skin of your inbox.
- Integrate your google homepage alongside your inbox. This allows you to view weather reports, rss feeds, news headlines, flickr recently added, google calendar module etc from your inbox.
- Easily insert images from your Picasa web album in to your emails
- Insert smileys/emoticons and images in to your emails.
- Insert HTML tables and other complex HTML in to your emails.
- Make the navigation (Inbox, Starred, Sent Mail, etc) horizontal.
- Fix the navigation in place so that you dont have to scroll to the top of the page to see it.
- Zebra stripes on mailbox - pretty!
- Change the attachment paperclip (on inbox) to an icon indicating the type of attachment.
- Hide various page elements (invite panel, page footer, your email address from the top right of inbox).
To access the settings panel you must change the language on your gmail account to EN-US - This is because of how tightly gmailskins integrates in to the Gmail interface. You can change your language back again afterwards and the settings will still be applied, although "your mileage may vary".
Some features will be added to your account, please do not mistake these for beta features rolled out by google like this guy: http://www.digg.com/links/Gmail_New_Features.
<<lessMain features:
- Change the colour/skin of your inbox.
- Integrate your google homepage alongside your inbox. This allows you to view weather reports, rss feeds, news headlines, flickr recently added, google calendar module etc from your inbox.
- Easily insert images from your Picasa web album in to your emails
- Insert smileys/emoticons and images in to your emails.
- Insert HTML tables and other complex HTML in to your emails.
- Make the navigation (Inbox, Starred, Sent Mail, etc) horizontal.
- Fix the navigation in place so that you dont have to scroll to the top of the page to see it.
- Zebra stripes on mailbox - pretty!
- Change the attachment paperclip (on inbox) to an icon indicating the type of attachment.
- Hide various page elements (invite panel, page footer, your email address from the top right of inbox).
To access the settings panel you must change the language on your gmail account to EN-US - This is because of how tightly gmailskins integrates in to the Gmail interface. You can change your language back again afterwards and the settings will still be applied, although "your mileage may vary".
Some features will be added to your account, please do not mistake these for beta features rolled out by google like this guy: http://www.digg.com/links/Gmail_New_Features.
Download (0.12MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
1056 downloads

Better GReader 0.7
Better GReader will improve your browsers capability greatly. more>>
Better GReader 0.7 will improve your browser's capability greatly. It is designed as a Firefox addon that adds a menu of options you can enable within Google Reader.
Google Reader is one of the best web-based feed readers out there, but it could stand a few adjustments. Greasemonkey scripters have come up with a few Google Reader user scripts that make some welcome GReader tweaks like maximizing the viewing area, skipping Google's default subscribe mechanism, and adding keyboard shortcuts. And those are what this extension is designed for!
Enhancements:
- Added Hide "x people liked this" feature user script
- Updated Absolutely Compact skin
Requirements:
- Mozilla Firefox
Added: 2009-07-23 License: MPL Price: FREE
285 downloads
Webmin / Usermin Theme 0.41
Webmin / Usermin Theme project aims to create a new and better navigation system for Webmin. more>>
Webmin / Usermin Theme project aims to create a new and better navigation system for Webmin. It is easy to install over the Thememanager. It supports skins to change the layout. This project was previously known as "Webmin Navigation and Layout".
Know problems:
Problem: If you make any changes on configuration files you will lost this changes after an update.
Answer: The best way to solve this problem is saving files before updating or using skins ( You should save this skin too!)
To change the skin do the following:
1. Jump in the path where webmin is installed
2. cd theme_gehrigal/skins
3. Run ./change_skin.pl
To install a new skin do following:
1. Jump in the path where webmin is installed
2. cd theme_gehrigal/skins
3. Run ./install_skin.pl
Enhancements:
- Bugfix for some versions of usermin ( directory rights changed to 755)
Please delete the old version before installing this version!
<<lessKnow problems:
Problem: If you make any changes on configuration files you will lost this changes after an update.
Answer: The best way to solve this problem is saving files before updating or using skins ( You should save this skin too!)
To change the skin do the following:
1. Jump in the path where webmin is installed
2. cd theme_gehrigal/skins
3. Run ./change_skin.pl
To install a new skin do following:
1. Jump in the path where webmin is installed
2. cd theme_gehrigal/skins
3. Run ./install_skin.pl
Enhancements:
- Bugfix for some versions of usermin ( directory rights changed to 755)
Please delete the old version before installing this version!
Download (0.15MB)
Added: 2007-08-07 License: GPL (GNU General Public License) Price:
817 downloads
Linux Multimedia Player 2.5
Linux Multimedia Player, is an yet another tiny Linux based OS. more>>
LiMP is a a tiny LIVE CD based linux distro, that loads into memory and works only in the memory. This is the easiest, simpler yet powerful distro that works in all computers (PIII onwards).
Linux Multimedia Player supports most of the known formats, let it be mpeg-I, or mpeg-II, or divx, or wmv,qt-mov,real video for video and for audio mp3,wav,wma, ogg, real audio. It has the auto detection of partitions (ide or sata or scsi), sound cards,video cards, network cards and supports all the the cards as of kernel 2.6.13. It identifies the Partitions and mounts in the folder START.
It has the network support, which can be configured inside the GUI. It also mounts the Windows Shares, Linux Smb shares in the folder START.
It is complete tiny OS, with menu driven option and requires no knowledge of linux. All in a embedded image file of size 35 MB that gives you the entertainment. It can be easily integrated into WINDOWS XP/2000/98/95 or in linux boot loader or boot from cdrom.
LiMP distro runs only from memory and so CDROM/DVD is free to use. LiMP is completely safe to use as it mounts the partitions (NTFS, EXT2, EXT3, REISERFS) and windows / linux shares in READONLY mode.
Computer Shutdown schedule for bed time listeners. It supports viewing encrypted DVDs (Zone set DVDs). User has to option to load his favorite language font, for viewing subtitle User can set his favorite skin for xmms as default so that it loads on startup.
It runs a vnc server and can be accessed remotely from any vnc client.
Enhancements:
- The kernel was updated to 2.6.21.1.
- ALSA was updated to 1.0.14rc3.
- Idesk, a desktop program, was added.
- Mplayer, conky, and openbox were updated.
- Xdialog was added, providing an even easier interface.
- LiMP includes compressed cache to give better performance (http://linuxcompressed.sourceforge.net/).
<<lessLinux Multimedia Player supports most of the known formats, let it be mpeg-I, or mpeg-II, or divx, or wmv,qt-mov,real video for video and for audio mp3,wav,wma, ogg, real audio. It has the auto detection of partitions (ide or sata or scsi), sound cards,video cards, network cards and supports all the the cards as of kernel 2.6.13. It identifies the Partitions and mounts in the folder START.
It has the network support, which can be configured inside the GUI. It also mounts the Windows Shares, Linux Smb shares in the folder START.
It is complete tiny OS, with menu driven option and requires no knowledge of linux. All in a embedded image file of size 35 MB that gives you the entertainment. It can be easily integrated into WINDOWS XP/2000/98/95 or in linux boot loader or boot from cdrom.
LiMP distro runs only from memory and so CDROM/DVD is free to use. LiMP is completely safe to use as it mounts the partitions (NTFS, EXT2, EXT3, REISERFS) and windows / linux shares in READONLY mode.
Computer Shutdown schedule for bed time listeners. It supports viewing encrypted DVDs (Zone set DVDs). User has to option to load his favorite language font, for viewing subtitle User can set his favorite skin for xmms as default so that it loads on startup.
It runs a vnc server and can be accessed remotely from any vnc client.
Enhancements:
- The kernel was updated to 2.6.21.1.
- ALSA was updated to 1.0.14rc3.
- Idesk, a desktop program, was added.
- Mplayer, conky, and openbox were updated.
- Xdialog was added, providing an even easier interface.
- LiMP includes compressed cache to give better performance (http://linuxcompressed.sourceforge.net/).
Download (74MB)
Added: 2007-05-10 License: GPL (GNU General Public License) Price:
613 downloads
Plone Skin Dump 0.7.1
Plone Skin Dump is a product which allows to create Plone product based on some ZMI located skin folder. more>>
Plone Skin Dump is a product which allows to create Plone product based on some ZMI located skin folder.
Plone Skin Dump (qPloneSkinDump) allows to create Plone product based on some ZMI located skin folder (eg "custom") from portal_skins. So you can easy create Plone product with skin based on folder with customized styles and page templates.
Usage
Install qPloneSkinDump as Zope product
Install qPloneSkinDump in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
Create folder ( ) in portal_skins and fill it according to your needs.
Go to the Plone Control Panel and edit corresponding data.
For using new Plone product you must reload Zope, and install it in quickinstaller.
Enhancements:
- Fixed bug of dumping to new Skin Product objects with none ascii characters
<<lessPlone Skin Dump (qPloneSkinDump) allows to create Plone product based on some ZMI located skin folder (eg "custom") from portal_skins. So you can easy create Plone product with skin based on folder with customized styles and page templates.
Usage
Install qPloneSkinDump as Zope product
Install qPloneSkinDump in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
Create folder ( ) in portal_skins and fill it according to your needs.
Go to the Plone Control Panel and edit corresponding data.
For using new Plone product you must reload Zope, and install it in quickinstaller.
Enhancements:
- Fixed bug of dumping to new Skin Product objects with none ascii characters
Download (0.029MB)
Added: 2007-03-28 License: ZPL (Zope Public License) Price:
940 downloads
Apache::MP3::Skin 0.91
Apache::MP3::Skin is a subclass of Apache::MP3::Playlist with the ability to skin the output using HTML::Template. more>>
Apache::MP3::Skin is a subclass of Apache::MP3::Playlist with the ability to "skin" the output using HTML::Template.
SYNOPSIS
# httpd.conf or srm.conf
AddType audio/mpeg .mp3 .MP3
# httpd.conf or access.conf
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Skin
PerlSetVar HomePath /songs # optional
PerlSetVar DefaultSkin default.tmpl # required
# Without DefaultSkin being set to a valid file
# Apache::MP3::Skin will be the same as Apache::MP3
< /Location >
Apache::MP3::Skin subclasses Apache::MP3::Playlist enabling the use of skin files which are html files with special tags enabled by HTML::Template. See Apache::MP3 for details on installing and using.
<<lessSYNOPSIS
# httpd.conf or srm.conf
AddType audio/mpeg .mp3 .MP3
# httpd.conf or access.conf
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Skin
PerlSetVar HomePath /songs # optional
PerlSetVar DefaultSkin default.tmpl # required
# Without DefaultSkin being set to a valid file
# Apache::MP3::Skin will be the same as Apache::MP3
< /Location >
Apache::MP3::Skin subclasses Apache::MP3::Playlist enabling the use of skin files which are html files with special tags enabled by HTML::Template. See Apache::MP3 for details on installing and using.
Download (0.018MB)
Added: 2006-10-12 License: Perl Artistic License Price:
1110 downloads
Mixer.app 1.8.0
Mixer.app is a mixer application for Linux/FreeBSD/OpenBSD/NetBSD systems and is designed to be docked in WindowMaker. more>>
Mixer.app is a mixer application for Linux/FreeBSD/OpenBSD/NetBSD systems and is designed to be docked in WindowMaker.
This application has three volume controllers that can be configured to handle any sound source, the default sources are master-, cd- and pcm-volume.
Sound sources can easily be muted and can also be controlled with the mouse wheel. This program is licensed through the GNU General Public License.
Enhancements:
- Now supports all mixer sources. NOTE! The source names have been changed. See "Mixer.app -h".
- Added alternative skin submitted by Hans D.
- Fixed warnings when compiling with GCC 3.2.
- Added OpenBSD support.
<<lessThis application has three volume controllers that can be configured to handle any sound source, the default sources are master-, cd- and pcm-volume.
Sound sources can easily be muted and can also be controlled with the mouse wheel. This program is licensed through the GNU General Public License.
Enhancements:
- Now supports all mixer sources. NOTE! The source names have been changed. See "Mixer.app -h".
- Added alternative skin submitted by Hans D.
- Fixed warnings when compiling with GCC 3.2.
- Added OpenBSD support.
Download (0.037MB)
Added: 2006-10-03 License: GPL (GNU General Public License) Price:
1126 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 skin eternal 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