clear
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 405
Added: 2008-11-01 License: GPL Price: FREE
1 downloads
Clearbox 1.0
Clearbox is a customizable theme for the Metacity Window Manager. more>>
Clearbox is a customizable theme for the Metacity Window Manager.
A small GTK application allow configure the differents theme aspects, preview the theme and save it in the user themes folder.
The options that can be configured in the Clearbox theme are the following ones:
- Topbar style
- Clearbox-out, Clearbox-in or flat
- Gradient intensity (3 levels)
- Frame style
- Square corners or rounded corners
- Border width
- Colorized borders
- Interior outline
- 3D effect borders
- Title position
- Left or center
- Text with shadow
- Controls style
- Simple, with dark frame or with clear frame
- Buttons size
- Buttons gap
- Button menu style
- Arrow or application icon
- Theme colors
- GTK theme colors or custom colors
<<lessA small GTK application allow configure the differents theme aspects, preview the theme and save it in the user themes folder.
The options that can be configured in the Clearbox theme are the following ones:
- Topbar style
- Clearbox-out, Clearbox-in or flat
- Gradient intensity (3 levels)
- Frame style
- Square corners or rounded corners
- Border width
- Colorized borders
- Interior outline
- 3D effect borders
- Title position
- Left or center
- Text with shadow
- Controls style
- Simple, with dark frame or with clear frame
- Buttons size
- Buttons gap
- Button menu style
- Arrow or application icon
- Theme colors
- GTK theme colors or custom colors
Download (0.60MB)
Added: 2005-08-14 License: GPL (GNU General Public License) Price:
1531 downloads
Crystal Clear Vuitton Remix 1
Crystal Clear Vuitton Remix is a Lavish icon theme derivated from Everaldos original one (everaldo.com). more>>
Crystal Clear Vuitton Remix is a Lavish icon theme derivated from Everaldos original one (everaldo.com).
All content distributed under LGPL anc copyright of everaldo exept Louis VuittonPattern, Property of Louis Vuitton International & LVMH.
ToDo:
Colored Folders
Completion of KDE control center
Adding some applications to the pack
Adding some device (iPod,Scanners ...)
<<lessAll content distributed under LGPL anc copyright of everaldo exept Louis VuittonPattern, Property of Louis Vuitton International & LVMH.
ToDo:
Colored Folders
Completion of KDE control center
Adding some applications to the pack
Adding some device (iPod,Scanners ...)
Download (29.4MB)
Added: 2006-07-05 License: LGPL (GNU Lesser General Public License) Price:
1220 downloads
Milo Calendar 0.6
Milo Calendar reads the dates stored by KOrganizer and displays them on your desktop in a clear, neat calendar. more>>
Milo Calendar is a SuperKaramba script that reads the dates stored by KOrganizer and displays them on your desktop in a clear, neat calendar.
The calendar also displays todays date and it can move back/forward months. the descriptions of the events are shown via tooltips.
The images for this theme should be very customizable. In the next versions I will try to make them compatible with rainlendar themes found all over the net!
I must thank DeVoeSquared.com for the iCal module, and rainy (rainlendar) for the theme.
Note: if you have multiple KOrganizer resources, you can change the name of the file that milo calendar reads:
the default is:
reader = iCal.ICalReader(std)
in the dir: ~/.kde/share/apps/korganizer/std.ics
<<lessThe calendar also displays todays date and it can move back/forward months. the descriptions of the events are shown via tooltips.
The images for this theme should be very customizable. In the next versions I will try to make them compatible with rainlendar themes found all over the net!
I must thank DeVoeSquared.com for the iCal module, and rainy (rainlendar) for the theme.
Note: if you have multiple KOrganizer resources, you can change the name of the file that milo calendar reads:
the default is:
reader = iCal.ICalReader(std)
in the dir: ~/.kde/share/apps/korganizer/std.ics
Download (0.083MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
853 downloads
CL-EMB 0.4.3
CL-EMB is a library to embed Common Lisp and special template tags into normal text files. more>>
CL-EMB is a library to embed Common Lisp and special template tags into normal text files. CL-EMB library can be used for dynamically generated HTML pages.
Installation:
CL-EMB can be installed with ASDF-INSTALL.
See http://weitz.de/asdf-install/ for further information.
Usage:
[generic function]
EXECUTE-EMB name &key env generator-maker => string
NAME can be a registered (with REGISTER-EMB) emb code or a pathname (type PATHNAME) of a file containing the code. Returns a string. Keyword parameter ENV to pass objects to the code. ENV must be a plist. ENV can be accessed within your emb code. The GENERATOR-MAKER is a function which gets called with a key and value from the given ENV and should return a generator function like described on
http://www.cs.northwestern.edu/academics/courses/325/readings/graham/generators.html
[generic function]
REGISTER-EMB name code => emb-function
Internally registeres given CODE with NAME to be called with EXECUTE-EMB. CODE can be a string or a pathname (type PATHNAME) of a file containing the code.
[function]
PPRINT-EMB-FUNCTION name
DEBUG function. Pretty prints function form, if *DEBUG* was T when the function was registered.
[function]
CLEAR-EMB name
Remove named emb code.
[function]
CLEAR-EMB-ALL
Remove all registered emb code.
[function]
CLEAR-EMB-ALL-FILES
Remove all registered file emb code (registered/executed by a pathname).
[special variable]
*EMB-START-MARKER* (default "")
End of scriptlet or expression.
[special variable]
*ESCAPE-TYPE*
Default value for escaping @var output is :RAW
Can be changed to :XML, :HTML, :URI, :URL, :URL-ENCODE
[special variable]
*FUNCTION-PACKAGE*
Package the emb function body gets interned to.
Default: (find-package :cl-emb-intern)
[special variable]
*DEBUG*
Debugging mode if T. Default: NIL
[special variable]
*LOCKING-FUNCTION*
Function to call to lock access to an internal hash table. Must accept a function designator which must be called with the lock hold. IMPORTANT: The locking function must return the value of the function it calls!
<<lessInstallation:
CL-EMB can be installed with ASDF-INSTALL.
See http://weitz.de/asdf-install/ for further information.
Usage:
[generic function]
EXECUTE-EMB name &key env generator-maker => string
NAME can be a registered (with REGISTER-EMB) emb code or a pathname (type PATHNAME) of a file containing the code. Returns a string. Keyword parameter ENV to pass objects to the code. ENV must be a plist. ENV can be accessed within your emb code. The GENERATOR-MAKER is a function which gets called with a key and value from the given ENV and should return a generator function like described on
http://www.cs.northwestern.edu/academics/courses/325/readings/graham/generators.html
[generic function]
REGISTER-EMB name code => emb-function
Internally registeres given CODE with NAME to be called with EXECUTE-EMB. CODE can be a string or a pathname (type PATHNAME) of a file containing the code.
[function]
PPRINT-EMB-FUNCTION name
DEBUG function. Pretty prints function form, if *DEBUG* was T when the function was registered.
[function]
CLEAR-EMB name
Remove named emb code.
[function]
CLEAR-EMB-ALL
Remove all registered emb code.
[function]
CLEAR-EMB-ALL-FILES
Remove all registered file emb code (registered/executed by a pathname).
[special variable]
*EMB-START-MARKER* (default "")
End of scriptlet or expression.
[special variable]
*ESCAPE-TYPE*
Default value for escaping @var output is :RAW
Can be changed to :XML, :HTML, :URI, :URL, :URL-ENCODE
[special variable]
*FUNCTION-PACKAGE*
Package the emb function body gets interned to.
Default: (find-package :cl-emb-intern)
[special variable]
*DEBUG*
Debugging mode if T. Default: NIL
[special variable]
*LOCKING-FUNCTION*
Function to call to lock access to an internal hash table. Must accept a function designator which must be called with the lock hold. IMPORTANT: The locking function must return the value of the function it calls!
Download (0.012MB)
Added: 2006-02-20 License: LGPL (GNU Lesser General Public License) Price:
1342 downloads
Yet Another Calendar 0.04
Yet Another Calendar is a malleable, clear, concise CGI calendar. more>>
Yet Another Calendar is a malleable, clear, concise CGI calendar. Yet Another Calendar project doesnt require a relational database server and uses a single page per month for editing and viewing.
Main features:
- XML/RSS export
- Palm datebook (.pdb) export
- Text export (tab delimited file)
- Single page for editing and viewing
- Optional start and end times for all events
- Edit history/change tracking (with an rcs cron job)
- Archiving of old events (also with a cron job)
- Small amount of source code (under 500 lines)
Enhancements:
- There are now links on the calendar for an XML/RSS feed, a Palm datebook (.pdb) file, and a tab delimited text file.
- A few minor bugfixes and enhancements were made.
<<lessMain features:
- XML/RSS export
- Palm datebook (.pdb) export
- Text export (tab delimited file)
- Single page for editing and viewing
- Optional start and end times for all events
- Edit history/change tracking (with an rcs cron job)
- Archiving of old events (also with a cron job)
- Small amount of source code (under 500 lines)
Enhancements:
- There are now links on the calendar for an XML/RSS feed, a Palm datebook (.pdb) file, and a tab delimited text file.
- A few minor bugfixes and enhancements were made.
Download (0.015MB)
Added: 2006-04-19 License: GPL (GNU General Public License) Price:
1283 downloads
QuickMark 0.1
QuickMark is an Amarok script that allows you to set and recall Amaroks current file and position from the context menu. more>>
QuickMark is an Amarok script that allows you to set and recall Amaroks current file and position from the context menu.
In the playlist context menu, use the Set Mark entry in the QuickMark menu to create a mark in the players current position. Once set, a mark will appear in the bottom of the QuickMark menu.
Selecting that mark will cause your player to return to the position it was in when the mark was set. If the file you saved the mark in is no longer loaded, it will be added to your current playlist. Use the Clear All Marks entry to clear all marks.
<<lessIn the playlist context menu, use the Set Mark entry in the QuickMark menu to create a mark in the players current position. Once set, a mark will appear in the bottom of the QuickMark menu.
Selecting that mark will cause your player to return to the position it was in when the mark was set. If the file you saved the mark in is no longer loaded, it will be added to your current playlist. Use the Clear All Marks entry to clear all marks.
Download (0.003MB)
Added: 2006-08-30 License: GPL (GNU General Public License) Price:
1161 downloads
ScoreBoard 0.2 Beta
ScoreBoard is a tiny program to keep scores in a quiz. more>>
ScoreBoard is a tiny program to keep scores in a quiz. It allows users to customize the appearance of each group.
ScoreBoard project may comes handy if you are organizing a quiz.
This is my first QT project. I am still trying to get to the subtle details of QT. There maybe bugs in this program. Please contact me if you found any.
Icons used in this application are taken from Crystal Clear icon set and Emotion Icons.
<<lessScoreBoard project may comes handy if you are organizing a quiz.
This is my first QT project. I am still trying to get to the subtle details of QT. There maybe bugs in this program. Please contact me if you found any.
Icons used in this application are taken from Crystal Clear icon set and Emotion Icons.
Download (0.64MB)
Added: 2006-07-29 License: GPL (GNU General Public License) Price:
2153 downloads
WMChargemon 0.2
WMChargemon is a simple dockapp showing, in a clear way, the battery level and the power status of your ACPI-driven laptop. more>>
WMChargemon project is a simple WindowMaker dockapp that shows, in a clear way, the battery level and the power status of your ACPI-driven laptop.
Low and critical battery levels (on which the applet changes its color) can be set.
It is a really simple dockapp, which shows the percent battery level and the current power state (battery or AC) in a clear and simple way. The background of the dockapp turns green, yellow or red on behalf of the battery level (respectively safe, low or critical).
There is no rc file, and the behaviour of this program can be configured by some command line options, which will be well explained on your terminal when you issue this command (obviously, without the dollar sign):
$ wmchargemon -h
Installation:
1) Ensure youve got the libdockapp development library (at least version 0.6.1) correctly installed.
2) Simply type:
make
and, from a root shell
make install
Hoping that this little 7-development-day program will be useful to you, I invite you to post any little correction, suggestion or comment to my email address.
<<lessLow and critical battery levels (on which the applet changes its color) can be set.
It is a really simple dockapp, which shows the percent battery level and the current power state (battery or AC) in a clear and simple way. The background of the dockapp turns green, yellow or red on behalf of the battery level (respectively safe, low or critical).
There is no rc file, and the behaviour of this program can be configured by some command line options, which will be well explained on your terminal when you issue this command (obviously, without the dollar sign):
$ wmchargemon -h
Installation:
1) Ensure youve got the libdockapp development library (at least version 0.6.1) correctly installed.
2) Simply type:
make
and, from a root shell
make install
Hoping that this little 7-development-day program will be useful to you, I invite you to post any little correction, suggestion or comment to my email address.
Download (0.022MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1072 downloads
Set::Scalar 1.20
Set::Scalar Perl module contains a basic set of operations. more>>
Set::Scalar Perl module contains a basic set of operations.
SYNOPSIS
use Set::Scalar;
$s = Set::Scalar->new;
$s->insert(a, b);
$s->delete(b);
$t = Set::Scalar->new(x, y, $z);
Creating
$s = Set::Scalar->new;
$s = Set::Scalar->new(@members);
$t = $s->clone;
$t = $s->copy; # clone of clone
Modifying
$s->insert(@members);
$s->delete(@members);
$s->invert(@members); # insert if hasnt, delete if has
$s->clear; # removes all the elements
Note that clear() only releases the memory used by the set to be reused by Perl; it will not reduce the overall memory use.
<<lessSYNOPSIS
use Set::Scalar;
$s = Set::Scalar->new;
$s->insert(a, b);
$s->delete(b);
$t = Set::Scalar->new(x, y, $z);
Creating
$s = Set::Scalar->new;
$s = Set::Scalar->new(@members);
$t = $s->clone;
$t = $s->copy; # clone of clone
Modifying
$s->insert(@members);
$s->delete(@members);
$s->invert(@members); # insert if hasnt, delete if has
$s->clear; # removes all the elements
Note that clear() only releases the memory used by the set to be reused by Perl; it will not reduce the overall memory use.
Download (0.016MB)
Added: 2007-07-03 License: Perl Artistic License Price:
844 downloads
Xmlbeansxx 0.7.2
Xmlbeansxx is a set of tools for binding XML to C++ objects. more>>
Xmlbeansxx is a set of tools for binding XML to C++ objects. It contains a code generator, which tranforms XML Schema to C++ classes.
It is open, memory safe, fast, and well-tested.
Main features:
- Easy access to XmlSchema based XML data through generated C++ classes.
- Easy iteration over any XML data, even with no schema file, through XmlCursor iterators (being implemented).
- Runtime XPath queries, through XQuery technology (being implemented).
- Memory safe - uses boost::smart_ptr technology.
- Clear, configurable logging - uses log4cxx.
- Fast & lightweighted
<<lessIt is open, memory safe, fast, and well-tested.
Main features:
- Easy access to XmlSchema based XML data through generated C++ classes.
- Easy iteration over any XML data, even with no schema file, through XmlCursor iterators (being implemented).
- Runtime XPath queries, through XQuery technology (being implemented).
- Memory safe - uses boost::smart_ptr technology.
- Clear, configurable logging - uses log4cxx.
- Fast & lightweighted
Download (0.49MB)
Added: 2005-10-05 License: The Apache License 2.0 Price:
1479 downloads
All-in-One Sidebar 0.7.1
All-in-One Sidebar is an award-winning Firefox extension sidebar control, inspired by Operas. more>>
All-in-One Sidebar is an award-winning Firefox extension sidebar control, inspired by Operas. It lets you quickly switch between sidebar panels, view dialog windows such as downloads, extensions, and more in the sidebar, or view source or websites in the sidebar.
Click on the left edge of your browser window to open the sidebar and get easy access to all your panels.
You can set the orientation to left or right, set the minimum, default and maximum width and the behavior on browser startup. Furthermore AiOS provides enhancements for many built-in features.
AiOS includes a slide-out button and a toolbar, all of which can be extensively customized.
Enjoy a clear browser window, more toolbar space and much more...
<<lessClick on the left edge of your browser window to open the sidebar and get easy access to all your panels.
You can set the orientation to left or right, set the minimum, default and maximum width and the behavior on browser startup. Furthermore AiOS provides enhancements for many built-in features.
AiOS includes a slide-out button and a toolbar, all of which can be extensively customized.
Enjoy a clear browser window, more toolbar space and much more...
Download (0.36MB)
Added: 2007-06-28 License: MPL (Mozilla Public License) Price:
8900 downloads
XPertMailer 1.4.5
XPertMailer is a PHP class to send encoded MIME-type email messages. more>>
XPertMailer is a PHP class to send encoded MIME-type email messages like text, HTML, HTML embedded images, attachments, etc., to client, localhost, or relay SMTP servers with optional authorisation.
The class functions are optimised to execute in a very small time and to be easy to use. This reduces the size of the code and the time required to write it.
Data sending is done according to RFC 821 and RFC 2821, and the message type is in compliance with RFC 2045, RFC 2046, RFC 2047, RFC 2048, RFC 2049, and RFC 2822.
Enhancements:
- Added the clear attachments functionality
<<lessThe class functions are optimised to execute in a very small time and to be easy to use. This reduces the size of the code and the time required to write it.
Data sending is done according to RFC 821 and RFC 2821, and the message type is in compliance with RFC 2045, RFC 2046, RFC 2047, RFC 2048, RFC 2049, and RFC 2822.
Enhancements:
- Added the clear attachments functionality
Download (0.028MB)
Added: 2006-05-26 License: GPL (GNU General Public License) Price:
1284 downloads
xcalib 0.7
xcalib project is a tiny monitor calibration loader for XFree86 (or X.org) and MS-Windows. more>>
xcalib project is a tiny monitor calibration loader for XFree86 (or X.org) and MS-Windows.
Usage:
xcalib [-options] ICCPROFILE
or
xcalib [-options] -alter
where the available options are:
-display or -d
-screen or -s
-clear or -c
-noaction or -n
-verbose or -v
-printramps or -p
-loss or -l
-invert or -i
-gammacor or -gc
-brightness or -b
-contrast or -co
-red
-green
-blue
-alter or -a
-help or -h
-version
Last parameter MUST be an ICC profile containing a vcgt or mLUT tag or empty if the "-a" or "-alter" paramter is used or the LUT is to be cleared.
Use profiles gamma_1_0.icc and gamma_2_2.icc for testing. Profiles with vcg-tables can be created with most profile creation suites. An example profile with a vcg-table is inclued, named bluish.icc, which simulates a very high whitepoint (without further intentions).
<<lessUsage:
xcalib [-options] ICCPROFILE
or
xcalib [-options] -alter
where the available options are:
-display or -d
-screen or -s
-clear or -c
-noaction or -n
-verbose or -v
-printramps or -p
-loss or -l
-invert or -i
-gammacor or -gc
-brightness or -b
-contrast or -co
-red
-green
-blue
-alter or -a
-help or -h
-version
Last parameter MUST be an ICC profile containing a vcgt or mLUT tag or empty if the "-a" or "-alter" paramter is used or the LUT is to be cleared.
Use profiles gamma_1_0.icc and gamma_2_2.icc for testing. Profiles with vcg-tables can be created with most profile creation suites. An example profile with a vcg-table is inclued, named bluish.icc, which simulates a very high whitepoint (without further intentions).
Download (0.031MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
853 downloads
KSqlAnalyzer 0.3.0
KSqlAnalyzer is a tool for easily accessing the data of a MS SQL database. more>>
KSqlAnalyzer is a tool for easily accessing the data of a MS SQL database. It is made for developing and testing new SQL queries direclty on the server.
The functionality and look/feel of KSqlAnalyzer are similar to SQL Query Analyzer by Microsoft.
KSqlAnalyzer uses parts of the TDS library, and the editor uses parts of the KWrite source code becaus of its brilliant sytnax highlighting.
Enhancements:
- Trigger viewing and editing, and a new Edit menu item (Clear).
<<lessThe functionality and look/feel of KSqlAnalyzer are similar to SQL Query Analyzer by Microsoft.
KSqlAnalyzer uses parts of the TDS library, and the editor uses parts of the KWrite source code becaus of its brilliant sytnax highlighting.
Enhancements:
- Trigger viewing and editing, and a new Edit menu item (Clear).
Download (0.70MB)
Added: 2006-07-15 License: GPL (GNU General Public License) Price:
1197 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 clear 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
