smallville season 8 episode 19
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1331
AVI TV Episode File Resizer 1.0
AVI TV Episode File Resizer was made to fit (resize the file) multiple Xvid TV episodes (entire season) on a single DVD. more>>
AVI TV Episode File Resizer script is not for multiple MOVIE files (only TV) however it can do SINGLE MOVIE files quite nicely. The project was designed to help me fit (resize the file) multiple Xvid TV episodes (entire season) on a single DVD. Most of the time a TV series is almost exactly the same hours, mins, secs.
That enables this script to set the video bitrate the same for every file (episode) being processed to get the desired file size. The calculation is based on the hours, mins, seconds and the desired file size you want. If you correctly enter the time you will end up with a file size VERY close to the value you entered. The episodes will likley vary about 10 secs or so. Try to average that out when you select the episode time
The new files will have the EXACT same name as the old files so the input and output cannot be in the same DIRECTORY.
The "input files" selector can select multiple files so you can encode one or many files.
If you select an entire season (about 25 episodes) of files it could take quite a few hours to complete. The progress bar updates AFTER the completion of the first file and after every file there after. The current file being processed is displayed in the bottom status bar.
Transcode single pass is used to REencode the files.
Each file will be REencoded with MP3 audio bitrate of 96 kbps. The video is REencoded with the Xvid4 codec.
I used this script to go from 230MB to 175MB with good results. That saved me almost 1.4G for the season (25 episodes) and let me get it on a single DVD to play on my stand alone player.
You should try it with a single file first to check the quality and then do a batch job.
There are other tools to do this but this one can be setup and going in less than 1 min.
It takes almost 10 hours to do an entire season (25 episodes) at an episode time of 25 min 30 sec with a target file size of 171MB (ends up being about 174.8MB)
<<lessThat enables this script to set the video bitrate the same for every file (episode) being processed to get the desired file size. The calculation is based on the hours, mins, seconds and the desired file size you want. If you correctly enter the time you will end up with a file size VERY close to the value you entered. The episodes will likley vary about 10 secs or so. Try to average that out when you select the episode time
The new files will have the EXACT same name as the old files so the input and output cannot be in the same DIRECTORY.
The "input files" selector can select multiple files so you can encode one or many files.
If you select an entire season (about 25 episodes) of files it could take quite a few hours to complete. The progress bar updates AFTER the completion of the first file and after every file there after. The current file being processed is displayed in the bottom status bar.
Transcode single pass is used to REencode the files.
Each file will be REencoded with MP3 audio bitrate of 96 kbps. The video is REencoded with the Xvid4 codec.
I used this script to go from 230MB to 175MB with good results. That saved me almost 1.4G for the season (25 episodes) and let me get it on a single DVD to play on my stand alone player.
You should try it with a single file first to check the quality and then do a batch job.
There are other tools to do this but this one can be setup and going in less than 1 min.
It takes almost 10 hours to do an entire season (25 episodes) at an episode time of 25 min 30 sec with a target file size of 171MB (ends up being about 174.8MB)
Download (0.011MB)
Added: 2007-04-02 License: GPL (GNU General Public License) Price:
950 downloads
SmallSQL 0.19
SmallSQL is the ultimate Java Desktop SQL Database Engine with JDBC 3.0 API. more>>
SmallSQL is the ultimate Java Desktop SQL Database Engine with JDBC 3.0 API.
There are 2 solutions to start with SmallSQL DBMS
1.) From an existing Database
You can convert an existing Database with JDbConverter. This is an open source tool to convert a database from one DBMS to another DBMS via JDBC. You can download it and convert your existing JDBC database.
2.) Create a database with a GUI tool
We does not have such tool but we recommended one of the follow:
JDBC Navigator. This is a free graphical Java tool. After you have download it
Select the menu "Open JDBC Data Source"
Name: Small SQL Database
Driver Class: smallsql.database.SSDriver
URL: jdbc:smallsql
Save and Connect
Open the menu "Connection | SQL Window"
Enter "CREATE DATABASE db1" and execute it with ENTER
Close the Connection
Select the menu "Open JDBC Data Source" and change the URL to
jdbc:smallsql:db1
Save and Connect
SQuirreL SQL Client. This is an open source graphical Java tool. After you have download and install it
Create a new JDBC Driver
Name: Small SQL Database
Example URL: jdbc:smallsql:
Create a new Alias
Name: Small SQL db1
JDBC Driver: Small SQL
URL: jdbc:smallsql
Auto Logon: Yes
Connect to the alias "Small SQL db1"
Change to the tab "SQL"
Enter "CREATE DATABASE db1" and execute it
Close the window
Change the alias
JDBC URL: jdbc:smallsql:db1
Connect to the alias "Small SQL db1"
Configuration:
JDBC Driver class name: smallsql.database.SSDriver
JDBC URL: jdbc:smallsql:< database >
< database > is a absolute or relative directory name
In the Java code for a directory "db1" this look like:
Class.forName( "smallsql.database.SSDriver" );
java.sql.Connection con = java.sql.DriverManager.getConnection( "jdbc:smallsql:db1" );
Enhancements:
- JOIN performance was greatly improved with a new algorithm.
- German and Italian translations of the error messages were added, and it is easy to add more translations.
- Some bugs were fixed.
<<lessThere are 2 solutions to start with SmallSQL DBMS
1.) From an existing Database
You can convert an existing Database with JDbConverter. This is an open source tool to convert a database from one DBMS to another DBMS via JDBC. You can download it and convert your existing JDBC database.
2.) Create a database with a GUI tool
We does not have such tool but we recommended one of the follow:
JDBC Navigator. This is a free graphical Java tool. After you have download it
Select the menu "Open JDBC Data Source"
Name: Small SQL Database
Driver Class: smallsql.database.SSDriver
URL: jdbc:smallsql
Save and Connect
Open the menu "Connection | SQL Window"
Enter "CREATE DATABASE db1" and execute it with ENTER
Close the Connection
Select the menu "Open JDBC Data Source" and change the URL to
jdbc:smallsql:db1
Save and Connect
SQuirreL SQL Client. This is an open source graphical Java tool. After you have download and install it
Create a new JDBC Driver
Name: Small SQL Database
Example URL: jdbc:smallsql:
Create a new Alias
Name: Small SQL db1
JDBC Driver: Small SQL
URL: jdbc:smallsql
Auto Logon: Yes
Connect to the alias "Small SQL db1"
Change to the tab "SQL"
Enter "CREATE DATABASE db1" and execute it
Close the window
Change the alias
JDBC URL: jdbc:smallsql:db1
Connect to the alias "Small SQL db1"
Configuration:
JDBC Driver class name: smallsql.database.SSDriver
JDBC URL: jdbc:smallsql:< database >
< database > is a absolute or relative directory name
In the Java code for a directory "db1" this look like:
Class.forName( "smallsql.database.SSDriver" );
java.sql.Connection con = java.sql.DriverManager.getConnection( "jdbc:smallsql:db1" );
Enhancements:
- JOIN performance was greatly improved with a new algorithm.
- German and Italian translations of the error messages were added, and it is easy to add more translations.
- Some bugs were fixed.
Download (0.21MB)
Added: 2007-08-02 License: LGPL (GNU Lesser General Public License) Price:
815 downloads
UMLSpeed 0.19
UMLSpeed is a compiler for a simple, C-style language that allows declaration of UML entities and diagrams. more>>
UMLSpeed project is a compiler for a simple, C-style language that allows declaration of UML entities and diagrams. Diagrams can be compiled into SVG and the entities to XMI for use with other tools.
Why?
- Graphical UML tools in general suck - why should we, as programmers have to drag and drop stupid graphical things and use a mouse when we could express what we want 10 times faster with a text editor and a simple notation? - More importantly, why should we have to lay everything out when the computer could do it for us?
- Graphical UML tools are bloated, huge, memory and disk-hogging monsters.
- Graphical UML tools use either a binary data format or XML, which is not particularly friendly to source code control systems.
Main features:
- Written in GCJ-portable java and compiled natively. Its extremely fast even when dealing with thousands of entities and diagrams.
- Purely command-line driven and takes miniscule resources.
- Flexible enough with file imports that large UML projects can be broken up into separate files and only individual bits built at a time as required.
- C-style syntax means that the source language integrates well with source code control and diff tools.
- Standards compliant - produces interoperable SVG and XMI, as well as clean source code.
- Can integrate with automated build tools for regular diagram/xmi compilation.
Status
This is still alpha software. Dont hold me responsible if it kills your pets and blows your house up.
Implemented so far:
- Compiler/parser
- Namespaces, Class diagrams and related entities
- Use case diagrams and related entities
- Auto-link pathfinding
- XMI 1.3 output
- VIM syntax highlighting
- Code generation (Java and Python)
Still to do:
- Documentation output
- Code generation (Ruby, PHP, Perl, C++, C#)
- Diagram packages
- Diagram notes
- Alternative diagram layout managers
- Deployment diagrams
- Sequence diagrams
- Activity diagrams
Enhancements:
- Added facilities to store HTML of reports in a buffer for use by plugins and turn off file generation. Maven plugin now uses this when using Doxia for generation.
- Added $PROJECTNAME and $PROJECTVERSION HTML tokens, with CLI parameters to set them. Maven plugin will automatically set them.
- Added $PUBLISHDATE token
- Added $TOC key for generating links to bookmarks on the same page.
<<lessWhy?
- Graphical UML tools in general suck - why should we, as programmers have to drag and drop stupid graphical things and use a mouse when we could express what we want 10 times faster with a text editor and a simple notation? - More importantly, why should we have to lay everything out when the computer could do it for us?
- Graphical UML tools are bloated, huge, memory and disk-hogging monsters.
- Graphical UML tools use either a binary data format or XML, which is not particularly friendly to source code control systems.
Main features:
- Written in GCJ-portable java and compiled natively. Its extremely fast even when dealing with thousands of entities and diagrams.
- Purely command-line driven and takes miniscule resources.
- Flexible enough with file imports that large UML projects can be broken up into separate files and only individual bits built at a time as required.
- C-style syntax means that the source language integrates well with source code control and diff tools.
- Standards compliant - produces interoperable SVG and XMI, as well as clean source code.
- Can integrate with automated build tools for regular diagram/xmi compilation.
Status
This is still alpha software. Dont hold me responsible if it kills your pets and blows your house up.
Implemented so far:
- Compiler/parser
- Namespaces, Class diagrams and related entities
- Use case diagrams and related entities
- Auto-link pathfinding
- XMI 1.3 output
- VIM syntax highlighting
- Code generation (Java and Python)
Still to do:
- Documentation output
- Code generation (Ruby, PHP, Perl, C++, C#)
- Diagram packages
- Diagram notes
- Alternative diagram layout managers
- Deployment diagrams
- Sequence diagrams
- Activity diagrams
Enhancements:
- Added facilities to store HTML of reports in a buffer for use by plugins and turn off file generation. Maven plugin now uses this when using Doxia for generation.
- Added $PROJECTNAME and $PROJECTVERSION HTML tokens, with CLI parameters to set them. Maven plugin will automatically set them.
- Added $PUBLISHDATE token
- Added $TOC key for generating links to bookmarks on the same page.
Download (0.47MB)
Added: 2007-07-21 License: GPL (GNU General Public License) Price:
826 downloads
The Simpsons chalkboard openings 1.0
The Simpsons chalkboard openings project consists of a quote collection of Bart Simpsons chalkboard-writings. more>>
"The Simpsons" chalkboard openings project consists of a quote collection of Bart Simpsons chalkboard-writings.
It is a collection of Bart Simpsons chalkboard-writings from the opening credits of episodes of the television show The Simpsons, packaged up for use with the fortune program.
To install these fortunes, copy the .dat file to your fortunes directory (possibly /usr/games/lib/fortunes).
To use it, simply type:
# fortune chalkboard
DODGEBALL STOPS AT THE GYM DOOR
DODGEBALL STOPS AT THE GYM DOOR
DODGEBALL STOPS AT THE GYM DOOR
DODGEBALL STOPS AT THE GYM DOOR
Bart Simpson on chalkboard in episode BABF12
<<lessIt is a collection of Bart Simpsons chalkboard-writings from the opening credits of episodes of the television show The Simpsons, packaged up for use with the fortune program.
To install these fortunes, copy the .dat file to your fortunes directory (possibly /usr/games/lib/fortunes).
To use it, simply type:
# fortune chalkboard
DODGEBALL STOPS AT THE GYM DOOR
DODGEBALL STOPS AT THE GYM DOOR
DODGEBALL STOPS AT THE GYM DOOR
DODGEBALL STOPS AT THE GYM DOOR
Bart Simpson on chalkboard in episode BABF12
Download (0.005MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1050 downloads
episoder 0.5.3
episoder is a tool to tell you about new episodes of your favourite TV shows. It does so by parsing online TV show episode guides. more>> <<less
Added: 2009-07-26 License: GPL Price: FREE
downloads
Other version of episoder
License:GPL (GNU General Public License)
MeDs Movie Manager 2.5.4.1
MeDs Movie Manager is an easy-to-use and customizable movie manager. more>>
MeDs Movie Manager is a simple to use, yet customizable, movie manager. MeDs Movie Manager project gets the movies info from IMDb, and episode info from tv.com.
Main features:
- Unlimited size movie list
- Add, Edit, Delete database functions
- Episode functionality for series
- Quick movie filter
- Advanced search options
- List functionality
- Multi-add function (Search directories for files)
- Obtain AVI / OGM / MPEG and DVD (ifo) file info
- Automatic download of movie info from IMDb (Proxy support)
- Automatic download of episode info from tv.com (Proxy support)
- Import function (3 modes - Simple text, excel and extreme movie manager database (Tested with v4.5)
- Export to HTML (2 modes - full and simple)
- Customizable movie additional info
- Customizable database queries for statistics
- GIF, PNG and JPG cover support
- Changeable layout (Look And Feels)
<<lessMain features:
- Unlimited size movie list
- Add, Edit, Delete database functions
- Episode functionality for series
- Quick movie filter
- Advanced search options
- List functionality
- Multi-add function (Search directories for files)
- Obtain AVI / OGM / MPEG and DVD (ifo) file info
- Automatic download of movie info from IMDb (Proxy support)
- Automatic download of episode info from tv.com (Proxy support)
- Import function (3 modes - Simple text, excel and extreme movie manager database (Tested with v4.5)
- Export to HTML (2 modes - full and simple)
- Customizable movie additional info
- Customizable database queries for statistics
- GIF, PNG and JPG cover support
- Changeable layout (Look And Feels)
Download (19MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
845 downloads
libbonobo 2.19.4
libbonobo is the non-GUI part of the bonobo component infrastructure. more>>
libbonobo is the non-GUI part of the bonobo component infrastructure, it is most useful for creating aggregate interfaces & doing IPC easily.
libbonobo also contains a rather badly designed & implemented per-system activation system. This needs re-writing & simplifying to be per-display.
Take a look at samples/echo/.
What is Bonobo
Bonobo is a set of language and system independant CORBA interfaces for creating reusable components, controls and creating compound documents.
The Bonobo distribution includes a Gtk+ based implementation of the Bonobo interfaces, enabling developers to create reusable components and applications that can be used to form more complex documents.
If you want to look into a Java implementation of Bonobo, look in the GNOME CVS for the `monkeybeans module (Erdi Gergo is the author), you can browse it at: http://cvs.gnome.org/bonsai
<<lesslibbonobo also contains a rather badly designed & implemented per-system activation system. This needs re-writing & simplifying to be per-display.
Take a look at samples/echo/.
What is Bonobo
Bonobo is a set of language and system independant CORBA interfaces for creating reusable components, controls and creating compound documents.
The Bonobo distribution includes a Gtk+ based implementation of the Bonobo interfaces, enabling developers to create reusable components and applications that can be used to form more complex documents.
If you want to look into a Java implementation of Bonobo, look in the GNOME CVS for the `monkeybeans module (Erdi Gergo is the author), you can browse it at: http://cvs.gnome.org/bonsai
Download (1.7MB)
Added: 2007-06-19 License: LGPL (GNU Lesser General Public License) Price:
858 downloads
libgnomeui 2.19.0
libgnomeui is the gui parts of what was previously gnome-libs. more>>
libgnomeui is the gui parts of what was previously gnome-libs.
<<less Download (2.1MB)
Added: 2007-06-19 License: LGPL (GNU Lesser General Public License) Price:
858 downloads
jclassinfo 0.19.1
jclassinfo is an information extractor for Java bytecode. more>>
jclassinfo reads java class files and provides information about the class, dependencies and more. It is a pure C implementantion.
Main features:
Class Information
- Java VM version required,
- super class,
- interfaces implemented. --general-info
- Constant pool dump --constant-pool
- Methods --methods
- Fields --fields
- Class attributes --attributes
Dependency Information
- Packages required --packages
- Classes required --classes
- Methods required --methods-ref
Options affecting verbosity
- Disassemble code --disasm
- Print limits and exception table for methods --verbose
- Print debugging information --method-debug-info
- Change visibility --visibility=< public | package | protected | private | synthetic >
<<lessMain features:
Class Information
- Java VM version required,
- super class,
- interfaces implemented. --general-info
- Constant pool dump --constant-pool
- Methods --methods
- Fields --fields
- Class attributes --attributes
Dependency Information
- Packages required --packages
- Classes required --classes
- Methods required --methods-ref
Options affecting verbosity
- Disassemble code --disasm
- Print limits and exception table for methods --verbose
- Print debugging information --method-debug-info
- Change visibility --visibility=< public | package | protected | private | synthetic >
Download (0.026MB)
Added: 2005-03-07 License: GPL (GNU General Public License) Price:
1693 downloads
ExtUtils::CBuilder 0.19
ExtUtils::CBuilder is a Perl module to compile and link C code for Perl modules. more>>
ExtUtils::CBuilder is a Perl module to compile and link C code for Perl modules.
SYNOPSIS
use ExtUtils::CBuilder;
my $b = ExtUtils::CBuilder->new(%options);
$obj_file = $b->compile(source => MyModule.c);
$lib_file = $b->link(objects => $obj_file);
This module can build the C portions of Perl modules by invoking the appropriate compilers and linkers in a cross-platform manner. It was motivated by the Module::Build project, but may be useful for other purposes as well. However, it is not intended as a general cross-platform interface to all your C building needs. That would have been a much more ambitious goal!
<<lessSYNOPSIS
use ExtUtils::CBuilder;
my $b = ExtUtils::CBuilder->new(%options);
$obj_file = $b->compile(source => MyModule.c);
$lib_file = $b->link(objects => $obj_file);
This module can build the C portions of Perl modules by invoking the appropriate compilers and linkers in a cross-platform manner. It was motivated by the Module::Build project, but may be useful for other purposes as well. However, it is not intended as a general cross-platform interface to all your C building needs. That would have been a much more ambitious goal!
Download (0.019MB)
Added: 2007-08-07 License: Perl Artistic License Price:
809 downloads
Pub Team Football Manager 1.0
Pub Team Football Manager is a football manager software. more>>
Pub Team Football Manager is a football manager software.
From the main screen, there are six options available (yellow buttons) for showing or editing diffrent information during the game. Here is an explanation:
Info: This shows the details of your team such as kit colours and current news items. Kit colours can be changed by clicking them. The latest news from the pub team grapevine is shown, with any items directly relevant to your team are *** starred.
Squad: The place where you pick your team. Players numbered 1 to 11 will play, 12 and above are substitutes or rested. Each players current position, together with his fitness and morale, are indicated next to his name. Further vital statistics of a player are obtained by clicking on his name. To move a player in or out of your first eleven, click on the "Sub" or "Play" button. You may look at other teams squads by clicking on the < and > buttons.
Tactics: Choose the tactics and playing style of your team. A number of formations are available, and you can choose your teams passing style and aggressiveness.
Fixtures: Lists all your fixtures for the current season, including cup fixtures when drawn. You may look at other teams fixtures by clicking on the < and > buttons.
Table: The current league standings. There are two divisions, each containing 16 teams. Your team is indicated by *.
Records: Shows the best wins and record goalscorers for the current season.
Play: Click here to actually play your matches. The weeks fixtures from your division are indicated, with your match highlighted in red. Press "Start Match" to begin the match simulation, but you can later pause if things start to happen too quickly. A match report and stats are available, and are updated as the match plays. If one of your players gets injured, the game will automatically be paused.
To start a new game, select which team you wish to take charge of, and press "Start New Game". The main screen is then displayed, which is controlled by the large yellow buttons, described in the opposite panel...
Your squad consists of many players who frequent your local drinking establishment. Each player has many attributes, which are rated from A+ to F. These affect the gameplay in various ways. For example, a player who is good at tackling may make a good defender, whereas a player whose shooting attribute is high should be put up front.
All the players attributes are available in the "Squad" section by clicking on a players name. Also available is each players preferred position, indicated in brackets e.g. (Def/Mid), although this is only a guide.
The most important attribute is the players fitness. Try to pick players who are reasonably fit wherever possible. Players fitness may improve when rested, but if they are rested too long, their morale may suffer.
The chosen style of play and formation also have an influence, and some options work better with certain kinds of players. It is your job as manager to weigh up all the factors when picking your strategy and players.
As the season progresses, you will sometimes play cup matches. The Cup is a knockout tournament which includes teams from both divisions. If you are knocked out, you will not play in further rounds, but you can still watch the matches.
Occasionally, players will leave your club, and sometimes new players may join. Since it is a pub team, you dont have much control of what your players do. However, players with a low morale are more likely to leave.
At the end of the season, the top three teams from the lower division (B) are promoted to the higher division (A). The game is open-ended and you may continue for as many seasons as you like.
<<lessFrom the main screen, there are six options available (yellow buttons) for showing or editing diffrent information during the game. Here is an explanation:
Info: This shows the details of your team such as kit colours and current news items. Kit colours can be changed by clicking them. The latest news from the pub team grapevine is shown, with any items directly relevant to your team are *** starred.
Squad: The place where you pick your team. Players numbered 1 to 11 will play, 12 and above are substitutes or rested. Each players current position, together with his fitness and morale, are indicated next to his name. Further vital statistics of a player are obtained by clicking on his name. To move a player in or out of your first eleven, click on the "Sub" or "Play" button. You may look at other teams squads by clicking on the < and > buttons.
Tactics: Choose the tactics and playing style of your team. A number of formations are available, and you can choose your teams passing style and aggressiveness.
Fixtures: Lists all your fixtures for the current season, including cup fixtures when drawn. You may look at other teams fixtures by clicking on the < and > buttons.
Table: The current league standings. There are two divisions, each containing 16 teams. Your team is indicated by *.
Records: Shows the best wins and record goalscorers for the current season.
Play: Click here to actually play your matches. The weeks fixtures from your division are indicated, with your match highlighted in red. Press "Start Match" to begin the match simulation, but you can later pause if things start to happen too quickly. A match report and stats are available, and are updated as the match plays. If one of your players gets injured, the game will automatically be paused.
To start a new game, select which team you wish to take charge of, and press "Start New Game". The main screen is then displayed, which is controlled by the large yellow buttons, described in the opposite panel...
Your squad consists of many players who frequent your local drinking establishment. Each player has many attributes, which are rated from A+ to F. These affect the gameplay in various ways. For example, a player who is good at tackling may make a good defender, whereas a player whose shooting attribute is high should be put up front.
All the players attributes are available in the "Squad" section by clicking on a players name. Also available is each players preferred position, indicated in brackets e.g. (Def/Mid), although this is only a guide.
The most important attribute is the players fitness. Try to pick players who are reasonably fit wherever possible. Players fitness may improve when rested, but if they are rested too long, their morale may suffer.
The chosen style of play and formation also have an influence, and some options work better with certain kinds of players. It is your job as manager to weigh up all the factors when picking your strategy and players.
As the season progresses, you will sometimes play cup matches. The Cup is a knockout tournament which includes teams from both divisions. If you are knocked out, you will not play in further rounds, but you can still watch the matches.
Occasionally, players will leave your club, and sometimes new players may join. Since it is a pub team, you dont have much control of what your players do. However, players with a low morale are more likely to leave.
At the end of the season, the top three teams from the lower division (B) are promoted to the higher division (A). The game is open-ended and you may continue for as many seasons as you like.
Download (MB)
Added: 2006-01-13 License: Freeware Price:
1380 downloads
libbonoboui 2.19.4
libbonoboui is a GNOME library for bonobo. more>>
libbonoboui is a GNOME library for bonobo.
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type
`./configure to configure the package for your system. If youre
using `csh on an old version of System V, you might need to type
`sh ./configure instead to prevent `csh from trying to execute
`configure itself.
Running `configure takes awhile. While running, it prints some
messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with
the package.
4. Type `make install to install the programs and any data files and
documentation.
5. You can remove the program binaries and object files from the
source code directory by typing `make clean. To also remove the
files that `configure created (so you can compile the package for
a different kind of computer), type `make distclean. There is
also a `make maintainer-clean target, but that is intended mainly
for the packages developers. If you use it, you may have to get
all sorts of other programs in order to regenerate files that came
with the distribution.
<<lessInstallation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type
`./configure to configure the package for your system. If youre
using `csh on an old version of System V, you might need to type
`sh ./configure instead to prevent `csh from trying to execute
`configure itself.
Running `configure takes awhile. While running, it prints some
messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with
the package.
4. Type `make install to install the programs and any data files and
documentation.
5. You can remove the program binaries and object files from the
source code directory by typing `make clean. To also remove the
files that `configure created (so you can compile the package for
a different kind of computer), type `make distclean. There is
also a `make maintainer-clean target, but that is intended mainly
for the packages developers. If you use it, you may have to get
all sorts of other programs in order to regenerate files that came
with the distribution.
Download (1.2MB)
Added: 2007-06-19 License: LGPL (GNU Lesser General Public License) Price:
857 downloads
XChatOSD 5.19
XChatOSD is a Perl script for X-Chat. more>>
XChatOSD is a Perl script for X-Chat which displays the messages recieved by X-Chat through the xosd library.
Enhancements:
- Added DCC chat messages support
- Added CTCP support
- Added automatic codepage chooser. Codepage setting is now deprecated.
<<lessEnhancements:
- Added DCC chat messages support
- Added CTCP support
- Added automatic codepage chooser. Codepage setting is now deprecated.
Download (0.011MB)
Added: 2005-06-28 License: GPL (GNU General Public License) Price:
1581 downloads
SRESI 0.19.10
SRESI is a smart bookmarks manager: from a list of tagged bookmarks. more>>
SRESI is a smart bookmarks manager: from a list of tagged bookmarks, it can generate an exhaustive tree or a portal, where each bookmark is at every place in the hierarchy you can expect to find it, and with absurd branches absorbed back in their saner versions.
An import function is provided for the most common formats (Delicious, Mozilla, Opera, XBEL).
SRESIs main interface is command-line based, but a set of PHP scripts now gives an easier access to most functions. Be aware, however, that these scripts are not safe enough for a public server
If, despite all warnings, you are still interested, be welcome.
Oh, by the way, SRESI stands for Stockage, Recherche et Export de Signets Internet (Storage, Search and Export of Internet Bookmarks). Not great, but the few good ideas I managed to scrounge up were already taken.
Enhancements:
- The tagged data module now requires a "hash" function instead of a "compare" one.
- The Tagging functions and functors are now perfectly generic from the set up to the portal.
- Bookmarks.ml is now built those generic functors.
- The massive refactoring left the code in a messy state.
- The APIs are currently quite raw and will change soon.
<<lessAn import function is provided for the most common formats (Delicious, Mozilla, Opera, XBEL).
SRESIs main interface is command-line based, but a set of PHP scripts now gives an easier access to most functions. Be aware, however, that these scripts are not safe enough for a public server
If, despite all warnings, you are still interested, be welcome.
Oh, by the way, SRESI stands for Stockage, Recherche et Export de Signets Internet (Storage, Search and Export of Internet Bookmarks). Not great, but the few good ideas I managed to scrounge up were already taken.
Enhancements:
- The tagged data module now requires a "hash" function instead of a "compare" one.
- The Tagging functions and functors are now perfectly generic from the set up to the portal.
- Bookmarks.ml is now built those generic functors.
- The massive refactoring left the code in a messy state.
- The APIs are currently quite raw and will change soon.
Download (0.22MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
810 downloads
MoreAmp 0.1.19
MoreAmp is an audio player. more>>
MoreAmp is an FREE open-source audio player for Linux.
Audio player loads memory or vdisk with many files so the hard disk can spindown while playing. wxWidget on OS9/X win32 unixX11/GTK.
Play/create ogg flac wav aif mp3 aac. Play cd wma mp1/2 m2a m4a. Drag&drop, repeat loop, 31-band eq, many more features.
<<lessAudio player loads memory or vdisk with many files so the hard disk can spindown while playing. wxWidget on OS9/X win32 unixX11/GTK.
Play/create ogg flac wav aif mp3 aac. Play cd wma mp1/2 m2a m4a. Drag&drop, repeat loop, 31-band eq, many more features.
Download (16MB)
Added: 2006-12-30 License: GPL (GNU General Public License) Price:
1038 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 smallville season 8 episode 19 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