Main > Free Download Search >

Free solid of rotation 1.3.0 software for linux

solid of rotation 1.3.0

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 394
Solid Of Rotation 1.3.0

Solid Of Rotation 1.3.0


Solid Of Rotation is a 3D graphic editor. more>>
There is quite a bit of history on this item. One of the assignments in a computer graphics course at the University of Victoria was to rotate a number of Bezier curves around an axis and display the result in 3D using a single light source.

This was on Sun Sparcs using X. Since then the program has mutated to match my platform preference at a given time (DOS, Windows, Linux).

The latest mutation has been to SDL/OpenGL and the result runs happily on Linux and Windows. Screenshot junkies might find the following of interest:
<<less
Download (0.30MB)
Added: 2005-09-18 License: GPL (GNU General Public License) Price:
1498 downloads
Animated rotation 1

Animated rotation 1


Animated rotation is a GIMP plugin that can build an new animated image by rotation of a layer. more>>
Animated rotation is a GIMP plugin that can build an new animated image by rotation of a layer. You can give the angle of rotation and the number of increments.

<<less
Download (MB)
Added: 2006-08-16 License: GPL (GNU General Public License) Price:
1193 downloads
mod_log_rotate 1.0

mod_log_rotate 1.0


mod_log_rotate is an automatic in-process rotation of transfer log. more>>
mod_log_rotate is an automatic in-process rotation of transfer log. Replaces rotatelogs.

If you host a lot of virtual servers on a single Apache box and use the supplied rotatelogs program to rotate the logs you’ll notice that your process table is cluttered up with an instance of rotatelogs for each virtual server.

With mod_log_rotate the log rotation is handled by the server process so you save a bunch of processes and file descriptors.

Installation:

Install mod_log_rotate using apxs as follows:

$ apxs -i -a -c mod_log_rotate.c

Configure:

Load and enable mod_log_rotate by adding two lines to your httpd.conf. For Apache 1.3 use

LoadModule log_rotate_module libexec/mod_log_rotate.so
RotateLogs On

and for Apache 2 use

LoadModule log_rotate_module modules/mod_log_rotate.so
RotateLogs On

The LoadModule line may have already been added if you used the apxs -a (activate) option when compiling the module.

If you are using the Apache 1.3 version of the module you will also have to replace any CustomLog, TransferLog, LogFormat and CookieLog directives with the corresponding RotateXXX version. For example

TransferLog logs/access_log

would become

RotateTransferLog logs/access_log

You may need to review the permissions on your log directories. Normally Apache creates log files while it’s running as root and then becomes nobody (or whatever user you’re running it as) before it starts serving pages. In order to be able to create new log files during rotation the permissions on any log directories need to allow writes by the web server user.

The remainder of the directives provided by mod_log_rotate control the interval and timing of log rotation. The configuration directives may be used globally or per virtual server.

<<less
Download (0.032MB)
Added: 2006-05-10 License: The Apache License Price:
1267 downloads
HOL-TestGen 1.3.0

HOL-TestGen 1.3.0


HOL-TestGen is a is a test case generator for specification based unit testing. more>>
HOL-TestGen allows one to write test specifications in Higher-order logics (HOL). It can (semi-) automatically partition the input space, resulting in abstract test cases, and automatically select concrete test data.
Automatic generation of test harnesses (in SML) is supported, and using a foreign language interface, implementations in arbitrary languages (e.g. C) can be tested.
Main features:
- write test specifications in Higher-order logics (HOL)
- (semi-) automatically partition the input space, resulting in abstract test cases
- automatically select concrete test data
- automatically generate test scripts (in SML)
- using a foreign language interface, implementations in arbitrary languages (e.g. C) can be tested.
HOL-OCL is free software; you can redistribute it and/or modify it under the terms of the GPL. HOL-TestGen project is developed by Achim D. Brucker and Burkhart Wolff.
Enhancements:
- This release extends the configuration possibilities of the code generator, and includes an example demonstrating sequence testing.
<<less
Download (0.46MB)
Added: 2007-02-10 License: GPL (GNU General Public License) Price:
990 downloads
SLiM 1.3.0

SLiM 1.3.0


SLiM is a simple login manager for X11. more>>
SLiM is a Desktop-independent graphical login manager for X11, derived from Login.app.
It aims to be light and simple, although completely configurable through themes and an option file; is suitable for machines on which remote login functionalities are not needed.
Main features:
- PNG and XFT support for aplha transparency and antialiased fonts
- External themes support
- Configurable runtime options: X server, login / shutdown / reboot commands
- Single (GDM-like) or double (XDM-like) input control
- Can load predefined user at startup
- Configurable welcome / shutdown messages
<<less
Download (0.56MB)
Added: 2007-07-15 License: GPL (GNU General Public License) Price:
833 downloads
MZFriends 1.3.0

MZFriends 1.3.0


MZFriends is a very simple database program that was made to be an address book. more>>
MZFriends is a very simple database program.
This project was made to be an address book, but it can save what you want (e.g. the books in a library, the customers of your shop...).
MZFriends is very simple, easy to use, small, free (see the license provided in the COPYING file) and fast. If you do not have the need of a more complex database and you do not want to waste a lot of disk space in your HD (for both the data and the application), then MZFriends is the program you were looking for.
Compiling:
First of all you need to install "FLTK" and "HelpDialog Widget" libraries from www.fltk.org, then you can compile MZFriends.
Edit the Makefile to fit your libraries paths and then run make and read what it says. It will teach you how to compile the program.
If you are not used to compile programs, you can run the precompiled binary included in the distributed file. It should work on any Linux system with 2.x.x kernel (static ELF).
Installation:
You can perform a multi-user installation: only one copy of MZFriends will be installed on the computer and every user will have only his data file in his home directory. You can have this by using symbolic links.
For example: root creates the directory "/opt/mzfriends/" and extracts the program there. The the user named... "frog" does not need to copy all these files in his own directory. He only needs to create the directory
"mkdir /home/frog/mzfriends"
Now... symbolic links:
"ln -s /opt/mzfriends/* ."
...except for the data file:
"rm MZFriends.dat ; touch MZFriends.dat"
...and the installation is done! You (or root) can build a small script that starts MZFriends from any directory: this is a little example:
#!/bin/sh
cd $HOME/mzfriends
./mzfriends
The user "frog" should put it in "/home/frog/bin/" and give it the right attributes:
"chmod 755 scriptname" (this directory must be in his $PATH and... I suggest to use
"mzfriends" instead of "scriptname" :-). In a multi-user system, root could put it in a public directory contained in the paths of all the users.
WARNING: the program must be run from its directory, indeed the data will be written to the current directory and also the help files must be here. I know that this is not elegant, but you can easily solve out this little problem using scripts under Linux and links under Windows.
Enhancements:
- New interface and new logo :)
- New features in the report window: scroll bar, "Save as..." button and length information.
<<less
Download (0.074MB)
Added: 2006-12-07 License: GPL (GNU General Public License) Price:
1052 downloads
libebt 1.3.0

libebt 1.3.0


libebt library provides a clean way of getting human-readable backtrace messages in C++. more>>
libebt library provides a clean way of getting human-readable backtrace messages in C++.
libebt uses the RAII (resource acquisition is initialisation) idiom to manage backtrace stack items without needing macros, control structures or an external debugger adding context to a function or block is done through a single simple variable declaration.
A typical application using libebt will produce errors along the lines of the following:
Caught exception:
- When performing query app-editors/vim from commandline:
-> When calculating dependencies for app-editors/vim:
-> When calculating dependencies for app-editors/vim-core:
-> When loading versions for gentoo::app-editors/vim-core:
-> When parsing version string 6.4_invalid_version_suffix:
Version error: 6.4_invalid_version_suffix is invalid (unknown format at around character offset 3)
This is far more useful for both end users and developers than a simple context-free error message, and does not require the use of a debugger to generate the backtrace.
Usage:
Heres a simple preprocessor. It takes the name of a file and copies each non-directive line to stdout. If a line starts with #e , it generates an error message from the rest of the line. If a line starts with #i , it includes the filename specified on the remainder of the line. Any other line starting with a # is an invalid directive.
Point to note:
- To avoid confusion with multiple libraries making use of libebt, a tag is used to keep track of the context.
- Rather than defining a specific exception class, libebt provides a libebt::Backtracable template class which can be used in conjunction with other exception heirarchies through multiple inheritance.
- Declaring context for a given block or function is as simple as declaring a variable.
- To avoid typing out libebt::Backtracable in several places, a typedef is used.
Enhancements:
- A std::deque is now used internally rather than a std::list to cut down on the number of memory allocations.
<<less
Download (0.13MB)
Added: 2006-01-26 License: BSD License Price:
1366 downloads
KStars 1.3.0

KStars 1.3.0


KStars is distributed under the terms of the GNU General Public License (GPL) more>> KStars is a Desktop Planetarium for KDE. It provides an accurate graphical simulation of the night sky, from any location on Earth, at any date and time. The display includes 130,000 stars, 13,000 deep-sky objects,all 8 planets, the Sun and Moon, and thousands of comets and asteroids.<<less
Download (6.9MB)
Added: 2009-04-15 License: Freeware Price: Free
191 downloads
Lizard 1.3.0

Lizard 1.3.0


Lizard is a tile-based graphical interface to NetHack and SlashEM. more>>
Lizard is a tile-based graphical interface to NetHack and SlashEM.
Lizard is my own personalized variant of the newt interface. It always shares the latest newt codebase while adding a few of my own patches that increase user experience (in my opinion). Lizard is how I play NetHack or SlashEM.
Additions to Lizard over tha vanilla NE.W.T:
- Dark rooms are a different tile to unexplored rooms. So exploring an area like the gnomish mines is much less painful.
- Passageways are shown. Passageways on the side of corridors are visible. Again this is a change that allows you to better judge which areas you have not yet explored.
- Line of sight, you now have a visible line of sight and are able to easily see which areas might have monsters that you cannot actually see.
- Brads Pit, a minor patch of my own, for amusement value only
- Chess Moves, you can set the speed of monster movement as well as player movement. When set to walk each monster will move individually as if you were watching a move for move animated playback of a game of chess.
- All of the above mentioned changes work for the tty/console view as well.
<<less
Download (9.3MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1221 downloads
mod_ometer 1.3.0

mod_ometer 1.3.0


mod_ometer is a web counter implemented as an apache C module. more>>
mod_ometer is a web counter implemented as an apache C module. mod_ometer Apache module uses gd 2.0.28 or later to generate its images. Gd has some built-in fonts, but for real excitement you can use any TrueType font you want for the counter.
In addition to allowing font choice, mod_ometer has all sorts of options for customizing size, width and color of your counter as well as the ability to output the counter as jpeg, png, or gif.
Main features:
- ignore: ip address or domain name is forbidden to increment the counter.
- font: use a truetype font instead of the counters default.
- width: how many digits are displayed, maximum of 10.
- rand: display a different random number everytime.
- reset: reset the counter to a specific value.
- text: set font color using the "web color" scheme.
- bgcolor: set background color using the "web color" scheme.
- point: set point size of the counter font.
- image: choose jpeg, png or gif.
<<less
Download (0.032MB)
Added: 2005-12-15 License: BSD License Price:
1408 downloads
Beats of Rage 1.0029

Beats of Rage 1.0029


Beats of Rage is a tribute to Streets of Rage. more>>
Beats of Rage is a tribute to Streets of Rage.

Originally intended as nothing more than a fun little private project, Beats of Rage soon became a very popular game which was ported to many platforms (Linux, Playstaion2, DreamCast, XBox and will go to run at others).

Senile Team strive to be your source for high-quality old-school games, graphics with character, well-chosen soundtracks and, most importantly, the solid gameplay we feel one can only find in the classic genres.

Attention: This is the executable file only. You still need to download the original DOS version for the data files.
<<less
Download (0.040MB)
Added: 2006-06-12 License: Freeware Price:
891 downloads
EasyEclipse Expert Java 1.3.0

EasyEclipse Expert Java 1.3.0


EasyEclipse Expert Java is bare-bones Eclipse distro for experienced Java developers who are new to Eclipse. more>>
EasyEclipse Expert Java is bare-bones Eclipse distro for experienced Java developers who are new to Eclipse.
EasyEclipse Expert Edition is all you need to start developing Java code with Eclipse.
This distribution includes the following plugins:
Core components with a JDK:
- Eclipse Platform 3.2.1 - Shared platform services from Eclipse.
- Eclipse Tools 3.2.1 - Common libraries for various Eclipse projects.
- Java JDK for Windows 1.5.0.09 - Run Java application on Sun Java(tm) runtime, packaged for Eclipse use. (Windows only)
- Java JDK for Linux 1.5.0.09 - Run Java application on Sun Java(tm) runtime, packaged for Eclipse use. (Linux only)
Tools for general Java development:
- Eclipse Java Development Tools 3.2.1 - Edit, compile, run, debug, test, refactor, document and deploy Java applications.
Some essential utilities:
- AnyEdit Tools 1.5.6.2 - Useful right-click menus in editors: "Open file under cursor", "Open type under cursor", et cetera.
- Eclipse Utils Plugins 1.0.0.1 - Save the cursor position of editors when closing and re-opening a file. Access common team actions with explorer buttons.
- Color Editor 1.2.4 - Edit with syntax highlighting over 100+ file formats.
Version Control tools (note that CVS support is included in the Eclipse Platform):
- Subclipse 1.1.8 - Access and manage Subversion repositories within Eclipse.
<<less
Download (132MB)
Added: 2007-07-11 License: Eclipse Public License Price:
938 downloads
Libcddb 1.3.0

Libcddb 1.3.0


Libcddb is a library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server. more>>
Libcddb is a C library to access data on a CDDB server (freedb.org).
Main features:
- search the database for possible CD matches;
- retrieve detailed information about a specific CD;
- submit new CD entries to the database.
Libcddb supports both the custom CDDB protocol and tunnelling the query and read operations over plain HTTP.
It is also possible to use an HTTP proxy server. If you want to speed things up, you can make use of the built-in caching facility provided by the library.
Enhancements:
- Support was added for text search using the "album" command of the freedb2.org servers.
- Functions were added to influence the behavior of the library when it comes to returning strings.
<<less
Download (0.32MB)
Added: 2006-10-17 License: LGPL (GNU Lesser General Public License) Price:
1102 downloads
ova 1.3.0

ova 1.3.0


ova is a convenient console frontend for ripping CDs and encoding MP3 and wave files to the Ogg Vorbis format. more>>
ova is a convenient console frontend for ripping CDs and encoding MP3 and wave files to the Ogg Vorbis format.
It is also able to query the CDDB given a CD (or saved CD discid) or several MP3/Ogg Vorbis/wave files (very useful for downloaded albums).
Ogg Vorbis files can be tagged and renamed according to elaborate patterns.
Main features:
- CD ripping (front-end to cdparanoia)
- MP3/wave -> Ogg Vorbis encoding (front-end to oggenc and mplayer for MP3s)
- CDDB querying
- given a CD (or saved CD discid)
- given a bunch of MP3/Ogg Vorbis/wave files (very useful for downloaded albums)
- identify albums/tracks interface
- getting tracks information (artist, album, titles etc.) from CDDB or
- pathnames (using elaborate and customizable sed patterns)
- tags (for MP3/Ogg Vorbis)
- manual editing of tracks information
- interactive
- in your favorite editor
- saving the final information
- tag&relocate tracks interface
- tagging Ogg Vorbis files with the saved information
- renaming and moving them according to elaborate and customizable shell function
- associated files/subdirectories (lyrics, covers etc.) are moved automatically
- vorbisgain (ReplayGain for Ogg Vorbis) support
- splitting single-file albums to separate tracks
- CDDB DTITLE database (requires local CDDB archive)
- slow REGEXP search
- creating of artist and album search indices
- fast leading substring search for artist/album using search indices
Enhancements:
- A new script, ova-hardlink, and a front-end to it for ova were added.
- It makes hard links for a given albums or all albums.
- This allows you to have several different paths to music files while using little additional disk space, and gives a very useful way to find albums in the music archive.
<<less
Download (0.092MB)
Added: 2005-09-27 License: GPL (GNU General Public License) Price:
1514 downloads
Project Dune 1.3.0

Project Dune 1.3.0


Project Dune provides an issue tracker integrated with source code control systems. more>>
Project Dune provides an issue tracker integrated with source code control systems.
Project Dune is a Web-based issue tracker that is fully integrated with source code control systems, which enables code inspections in the browser.
The project aims to automate the full cycle of development, from estimation to release.
This allows more time for productive tasks like architecture, design and coding. Especially if you have a quality plan in place based on ISO or CMM, you will find this software useful.
It is built for Tomcat with GWT, Hibernate, Java, Dozer, using the Postgres database.
Enhancements:
- An entire new layout.
- An administration module has been added.
- The inspection m- Eodule has been separated, and binary inspections added.
- Many fixes and features have been implemented.
<<less
Download (MB)
Added: 2007-08-13 License: LGPL (GNU Lesser General Public License) Price:
804 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5