Main > Free Download Search >

Free xerox toner cartages 13 r 00602 recycle software for linux

xerox toner cartages 13 r 00602 recycle

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 250
BerkeleyDB Backend Storage Engine for DURUS 20070503

BerkeleyDB Backend Storage Engine for DURUS 20070503


BerkeleyDB Backend Storage Engine for DURUS provides a storage engine for DURUS, a persistence system for the Python language. more>>
BerkeleyDB Backend Storage Engine for DURUS project provides a storage engine for DURUS, a persistence system for the Python programming language.
Some advantages compared to Durus standard FileStorage:
- Startup time is negligible.
- You dont need an in-memory index, so your repository size is only limited by storage space, not RAM.
- If you change existing objects, your storage size doesnt increase.
- If you delete objects, those objects are garbage collected in background, slowly, without performance degradation.
- You can still do a full fast collection, if you need it. While this collection is in progress, Durus still serves objects. From time to time, nevertheless, it can be unresponsible for 2 or 3 seconds, while is doing a checkpointing to be able to free database logging diskspace.
- Garbage collection doesnt increase storage size. Neither RAM usage.
- Garbage collection deletes objects using nondurable transactions, very efficiently. If the collection is aborted abruptly (program or machine crashes), the collection will start again from the beginning. If the GC finishes without problems, that state is durable.
- Any object store in the storage will commit a durable transaction, including all objects released in the background garbage collector, along the way.
- Garbage collection time is proportional to garbage, not repository size.
There are some disadvantages, nevertheless:
- IMPORTANT: This backend uses reference counting to decide when an object is garbage and can be collected. So, if you have cycles in your data structures, you **MUST*BREAK** them before releasing the objects.
- Failing to do that will leak diskspace. It is possible that in a future release we can collect cycles, but try to avoid that pattern.
- Leaking objects will grow the diskspace, but **NO** corruption or malfunction will happen. No other secondary effect.
- Although this code could work on Windows, I havent checked it. Absolutely no garantee!.
- Sometimes this backend can become irresponsible for a couple of seconds. It is busy doing a checkpoint to recycle database logging space. The pause should be sort, nevertheless.
- Dont use this storage backend over NFS, at least you know what is going on.
- Since we are using BerkeleyDB as the backend:
- You should be experienced with BerkeleyDB deployments.
- Beware when updating Python or BerkeleyDB. In particular, BerkeleyDB is known by breaking (but they DOCUMENT!) binary compatibility between versions. In this case, they ALWAYS document the procedure to do a controlled upgrade, so dont worry. But take note of the risk.
- To do a trustable backup, you should follow instructions in BerkeleyDB documentation:
- http://www.sleepycat.com/docs/ref/transapp/reclimit.html
- http://www.sleepycat.com/docs/ref/transapp/archival.html
- http://www.sleepycat.com/docs/utility/db_hotbackup.html
- In Python you can use the standard "bsddb" or the up-to-date "bsddb3" bindings (which will be included in new python versions). This product will try to use always the more recent BerkeleyDB bindings. Be careful about BerkeleyDB version changes when you update the bindings.
- Since BerkeleyDB files are binary structures, a corrupt database can be unrecoverable. Be diligent and careful with your backups.
You can use this product both as a normal (local) filestorage, or a server (remote) storage system, just like the usual Durus FileStorage.
Enhancements:
- Compatibility with Durus 3.7 was added.
<<less
Download (0.033MB)
Added: 2007-05-03 License: GPL (GNU General Public License) Price:
907 downloads
Zirconium Desktop Environment 0.0.2

Zirconium Desktop Environment 0.0.2


Zirconium Desktop Environment is a new low resource desktop shell optimized for usability. more>>
Zirconium Desktop Environment is a new low resource desktop shell optimized for usability.
Zirconium Desktop Environment operates on the philosophy that the desktop environment needs to stay out of the users way and provide the quickest access to the functions that are truly needed from a desktop shell.
Principle Zirconium Desktop Environment design goals:
- Very easy navigation by taking advantage of the corner effect by placing the icons for the 2 most critical functions (program launcher and window switcher) in the top corners.
- Minimal use of on-screen real estate. This is accomplished by "recycling" the window title bar by overlapping the already minimal on screen furniture on top of the title bar when a window is maximized.
- Eliminating the "system tray". Instead of using a pixel wasting systray icon to communicate status to the user programs are expected to use the ZDE Notification Daemon to sent small unobtrusive notifications to the user when something of note occurs. The ZDE Notification Daemon uses the SOAP protocol for universal compatibility and network transparency.
- Web integration. An (optional) backdrop manager based on the embedded Gecko engine from Mozilla is provided to provide for "Weblets" to run on the desktop. The ZDE session manager also provides a SOAP API that can be accessed by signed or expressly permitted Weblets to access the ZDE system.
Components of the ZDE system:
Corner Menus.
The left corner menu opens up the Program Launcher. Note that the Program Launcher is a custom navigation window and not a pop-up style menu. The Launcher window closes when an item is activated or the mouse pointer leaves the window.
The right corner menu is a list of open windows for window switching. It is a standard GTK pop-up menu.
Mini-Bar.
In the top center is the Mini-Bar that shows essential items like the time, volume control, battery and network status. The Mini-Bar is the same height as the Title Bar of a window so that when a window is maximized the title bar is partly covered by the Mini-Bar.
Notification Daemon:
When a SOAP message for a Notification arrives the Notification pop-up appears briefly. When not shown the very edge is visible in the lower-right. Mousing over the edge makes the Notification appear again and the mouse leave event closes the notification making it very simple to dismiss a notification by just mousing over it. Clicking the visible edge will open a Notification History window showing all notifications that have been logged during the session.
Window Theme:
The Window Manager theme needs to make special allowances for the way ZDE is arranged. The title bar needs to be 22 pixels high and the controls need to be 22 pixels away from the ends of the title bar to allow for the corner icons.
<<less
Download (0.50MB)
Added: 2006-03-11 License: GPL (GNU General Public License) Price:
1324 downloads
Boehm-Demers-Weiser Conservative Garbage Collector 7.0

Boehm-Demers-Weiser Conservative Garbage Collector 7.0


Boehm-Demers-Weiser Conservative Garbage Collector is a garbage collector as a replacement for C malloc or C++ new. more>>
The Boehm-Demers-Weiser conservative garbage collector can be used as a garbage collecting replacement for C malloc or C++ new.
Boehm-Demers-Weiser Conservative Garbage Collector allows you to allocate memory basically as you normally would, without explicitly deallocating memory that is no longer useful. The collector automatically recycles memory when it determines that it can no longer be otherwise accessed.
The collector is also used by a number of programming language implementations that either use C as intermediate code, want to facilitate easier interoperation with C libraries, or just prefer the simple collector interface.
Alternatively, the garbage collector may be used as a leak detector for C or C++ programs, though that is not its primary goal.
Typically several versions will be available. Usually you should first try to use gc_source/gc.tar.gz, which is normally an older, more stable version.
If that fails, try the latest explicitly numbered version in gc_source/. Later versions may contain additional features, platform support, or bug fixes, but are likely to be less well tested. Note that versions containing the letters alpha are even less well tested than others, especially on non-HP platforms.
A slightly older version of the garbage collector is now also included as part of the GNU compiler distribution.
The collector uses a mark-sweep algorithm. It provides incremental and generational collection under operating systems which provide the right kind of virtual memory support. (Currently this includes SunOS[45], IRIX, OSF/1, Linux, and Windows, with varying restrictions.)
It allows finalization code to be invoked when an object is collected. It can take advantage of type information to locate pointers if such information is provided, but it is usually used without such information. ee the README and gc.h files in the distribution for more details.
The garbage collector distribution includes a C string (cord) package that provides for fast concatenation and substring operations on long strings. A simple curses- and win32-based editor that represents the entire file as a cord is included as a sample application.
Performance of the nonincremental collector is typically competitive with malloc/free implementations. Both space and time overhead are likely to be only slightly higher for programs written for malloc/free (see Detlefs, Dosser and Zorns Memory Allocation Costs in Large C and C++ Programs.)
For programs allocating primarily very small objects, the collector may be faster; for programs allocating primarily large objects it will be slower. If the collector is used in a multithreaded environment and configured for thread-local allocation, it may in some cases significantly outperform malloc/free allocation in time.
We also expect that in many cases any additional overhead will be more than compensated for by decreased copying etc. if programs are written and tuned for garbage collection.
Enhancements:
- The C code now requires at least C89.
- The live data in the heap is now counted, helping to make the heap expansion heuristic more robust.
- Thread local allocation support was enhanced.
- Some obsolete platform support such as old-style Solaris threads was removed.
- Some new platform support was added.
- Various bugs were fixed.
<<less
Download (1.0MB)
Added: 2007-07-03 License: BSD License Price:
850 downloads
Endeavour Mark II 2.8.2

Endeavour Mark II 2.8.2


Endeavour Mark II is a file browser, image browser, and archiver. more>>
Endeavour Mark II project is a complete file management suite that comes with a File Browser, Archiver, Recycled Objects system, Image Browser and a set of file & disk management utility programs.
Main features:
- Two pane tree & list style File Browser.
- Image Browser with thumbs list and a pan & zoom image viewer.
- Archiver for viewing, creating, and extracting packages.
- Commercial quality user-interface design.
- Convient drag & drop operations.
- Drag & drop downloading with the WGet Front End.
- Extended MIME Types support with external import/export support for other MIME Type file formats.
- Fully customizable tool bars and list headings.
- A recycled objects system.
- Device and disk utility programs:
- o Download - Front end for the GNU WGet
- o HEdit - Hex editor
- o SysInfo - CPU Display
- o ZipTool - Front end for ZipTools
Requierments:
- GTK 1.2.10
Enhancements:
- The history list windows display of event information was improved. EDVGetType() was added to the Endeavour 2 API library to obtain a configuration parameters value type.
- Support for extracting and listing tar archives using libtar was added.
<<less
Download (3.0MB)
Added: 2007-07-30 License: GPL (GNU General Public License) Price:
502 downloads
Quake 4 1.1 Point Release

Quake 4 1.1 Point Release


Quake 4 is a highly appreciated FPS game. more>>
Earth is under siege by the Strogg, a barbaric alien race moving through the universe consuming, recycling and annihilating any civilization in their path. In a desperate attempt to survive, an armada of Earths finest warriors is sent to take the battle to the Strogg home planet.
You are Matthew Kane, an elite member of Rhino Squad and Earths valiant invasion force. Fight alone, with your squad, or in hover tanks and mechanized walkers as you engage in a heroic mission to the heart of the Strogg war machine.
Battle through the beginning of the game as a combat marine, then after your capture, as a marine-turned-Strogg with enhanced abilities and the power to turn the tide of the war.
Built on id Softwares revolutionary DOOM 3 technology, QUAKE 4 also features fast-paced multiplayer competition modeled after the speed, feel, and style of QUAKE III Arena.
Quake 4 DEMO is released by Id Software.
Main features:
- Highly anticipated sequel to id softwares award-winning QUAKE II.
- Diversity of combat. Fight through solo missions as well as buddy and squad-based operations; or pilot heavy walkers and hover tanks through outdoor battles and epic firefights.
- Being captured and converted to Strogg becomes Earths only hope for defeating the Strogg.
- Player is not alone - he and his squad are part of a massive invasion force.
- Utilizes the industry leading DOOM 3 technology to create an unparalleled visual and aural experience.
- Arena-style multiplayer that allows players to play as Strogg or Marine in deathmatch, team deathmatch and capture-the-flag modes.
Enhancements:
- n addition to a number of new changes and updates, this 1.1 Point Release also includes the changes from update 1.0.4.0, beta 1.0.5.0 and beta 1.0.5.2. If you have not previously updated QUAKE 4, this update will bring your installation completely up to date. If you have previously installed an earlier update, this update can be installed over the earlier update(s) without problems - there is no need to re-install previous updates released through the id Software website. Doing so may adversely affect the proper functionality of your installation.
<<less
Download (321.7MB)
Added: 2006-03-29 License: Freeware Price:
1304 downloads
GNU Thales 1.0

GNU Thales 1.0


GNU Thales provides an IRC-to-MySQL gateway. more>>
GNU Thales provides an IRC-to-MySQL gateway.
It connects to your IRC network as a server (like other services), and store everything it receives in a MySQL database.
It doesnt build stats itself, it just fills 5 MySQL tables called user, server, chan, ison and maxvalues.
You can then query the database with SQL queries to retrieve the information you need.
Enhancements:
- added a workaround for a possible unreal bug.
- using autoconf 2.59 instead of autoconf 2.13.
- no longer report usage if you are using Unreal.
- added support for unreal modules modes. see the UnrealModules file.
- added Memphisnet.orgs memphistools ! see examples/memphistools/.
- added secondary keys to ison table, which provided a 10% speed benefit.
- added unreals +T cmode.
- added unreals +D umode (needed for PrivDeaf module)
- added unreals +z umode. patch from nick martini
- nickinfo, an example from Andreas Lindemann !
- Recycled-counter, an example from ProPheT !
- server.linkedto is now an int (was a tinyint).
<<less
Download (0.18MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
969 downloads
ServerKit 0.0.13

ServerKit 0.0.13


ServerKit project is a SDK for building server programs on Linux. more>>
ServerKit project is a SDK for building server programs on Linux.
It consists of:
server
A core program, which loads application-specific modules to perform unique server duties. This program is also responsible for all configuration parsing and creation of database pools, which are made available to the modules.
libserver
A shared library, which provides base functionality for the server program, in addition to implementing the ServerKit API
API
A light interface provided by libserver supplying the following (at this time):
Thread pools & delayed work management
Thread-safe fixed-unit-size heaps
Thread-safe queues
Logging via either libc-syslog, or optionally more efficient direct UDP-based syslog-compatible logging
IPv4 address based connection counting (to be added still)
Lightweight & efficient sequence logging
Enhancements:
- This release fixes a bug in the reader-writer lock atomic read-to-write conversion interface and implementation.
- The API documentation has also been updated to reflect the change.
<<less
Download (0.085MB)
Added: 2007-07-09 License: AGPL (Affero General Public License) Price:
837 downloads
Guifications 2.13 Beta2

Guifications 2.13 Beta2


Guifications is a Gaim plugin that displays msn style more>>
Guifications is a Gaim plugin that displays msn style "toaster" popups in a user defined corner of the screen.

Guifications is highly configurable, and easy to use. There are a ton of preferences, that may be daunting at first, but are pretty straight forward.

<<less
Download (0.21MB)
Added: 2006-02-13 License: GPL (GNU General Public License) Price:
1350 downloads
SoX 13.0.0

SoX 13.0.0


SoX is the Swiss Army knife of sound processing tools. more>> <<less
Download (0.45MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
602 downloads
Beltane 1.0.13

Beltane 1.0.13


Beltane is a PHP4 (also works with PHP5) application, with some additional components written in C. more>>
Beltane project is a PHP4 (also works with PHP5) application, with some additional components written in C.
PHP4 (or PHP5) may be compiled as Apache module or as CGI interpreter (Beltane is tested with Linux, Apache 1.3/2.0, PHP 4.3.4/5.0.3 used as CGI interpreter, suexec, no SSL, MySQL and PostgreSQL databases).
Beltane 2 can also be used with an Oracle database.
On the client side, Beltane requires a Javascript capable browser. Cookies must be enabled. We recommend Mozilla/Firefox, as it is rumoured to be the most standard-conforming browser, but most inferior browsers may work as well.
Documentation is provided as SGML and HTML files within the tarball. You are adviced to read the documentation before attempting to install Beltane.
Enhancements:
- This version provides compatibility with samhain 2.3.0+ by adding support for the monitoring of SELinux attributes and POSIX ACLs.
<<less
Download (0.17MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
871 downloads
cowdancer 0.13

cowdancer 0.13


cowdancer allows copy-on-write file access. more>>
cowdancer allows copy-on-write file access. You can copy a full tree using hard links, and cowdancer will create a new copy when you need to write to a file.
cowdancer is completely implemented in userland, and should run on most Linux filesystems.
Enhancements:
- This release supports spaces in filenames.
<<less
Download (0.026MB)
Added: 2006-03-05 License: GPL (GNU General Public License) Price:
1328 downloads
giFToxic 0.0.10

giFToxic 0.0.10


giFToxic provides a GTK 2-based client for giFT. more>>
giFToxic provides a GTK 2-based client for giFT.
At the moment it is under heavy development.
giFT stands for giFT: Internet File Transfer. It is a daemon that is intended to act as a bridge to combine the capability of using several (peer-to-peer or otherwise) file sharing protocols for a simple GUI client.
It uses the plugin paradigm to dynamically load different protocols for a client as and when required. The currently supported networks include:
Stable
OpenFT, giFTs own file sharing network
Gnutella1 (used by BearShare, LimeWire, ...)
Ares Galaxy
Turtle F2F
Beta
FastTrack (used by Kazaa)
Alpha
OpenNap
eDonkey
Soulseek
A lightweight protocol is used by clients to communicate with the giFT process, allowing the protocol code to be completely abstracted from the user interface.
Search nodes handle search requests. They search the filelists their CHILD (common) nodes submitted to them. These nodes must have a capable Internet connection and at least 128M RAM. A modern processor is highly recommended as well.
INDEX nodes keep lists of available search nodes, collect statistics, and try to maintain the structure of the network.
Enhancements:
- fixed escaping
- dont start a source search when a transfer is started
- recycle upload slots
- fixed daemon autostart mode
- Languages added: hr, ms, fr, cs, az, sk, pt, sr, sv
<<less
Download (0.36MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
967 downloads
DARE 1.0

DARE 1.0


DARE is a small Linux kernel patch to VFS (Virtual Filesystem). more>>
DARE is a small Linux kernel patch to VFS (Virtual Filesystem) which transparently moves files into a special directory on each filesystem instead of removing them. DARE works similar like Novell Netware Data Recovery or MS Windows Recycle Bin.

DARE is independent on filesystem type, so it can be used without constraints on almost every filesystem. Deleted files are collected in directory deleted on the filesystem root dir. This directory have to be created manualy on each filesystem on which you want the DARE functionality. Filesystem without directory deleted works without DARE.

Deleted files are grouped into subdirectories by N hours. The N is configurable at the kernel compiling time. This simplifies removing of old deleted files from directory deleted. Subdirectories are named numericaly by UNIX time. Aditionaly to each subdirectory, an informational file is created.

This file is named the same way as corresponding subdirectory and aditionaly the file has suffix .inf. Informational file contains informations about deleted files, directories, special files including original pathname, permissions, deletion time and id of user who deleted this file.

There are also user space utilities for dealing with deleted files and content of directory deleted. There are these utilities:

lsdel - list of files deleted in actual directory
salvage - recovery deleted files
purge - utterly remove deleted files
deleted - daemon watching disks free space and removing old deleted files to keep disk free space in defined boundaries.
<<less
Download (0.025MB)
Added: 2006-04-11 License: GPL (GNU General Public License) Price:
1291 downloads
Virus Killer 1.0

Virus Killer 1.0


Virus Killer is a game where you must shoot the buggers before they can destroy your files! more>>
Your computer has been invaded! Dozens of little viruses are pouring in via security holes in Microsoft Internet Explorer, Microsoft Outlook, Microsoft MSN Messenger and Microsoft Recycle Bin!!
Using your trusty mouse you must shoot the buggers before they can destroy your files! Some will steal them from their home directories and take them back to their security hole.
Others will just eat them right there on the spot! See how long you and your computer can survive the onslaught!
Main features:
- 3 different virus types.
- Builds directories and files to protect based on your computer!
- Increasing difficulty level
- Highscore table
- 3 difficulty settings
<<less
Download (4.2MB)
Added: 2005-09-06 License: GPL (GNU General Public License) Price:
1541 downloads
R-bet 1.0

R-bet 1.0


Free Online Roulette Guide - Become what is known in the casino industry as an advantage player. This step-by-step guide will give you the advantage... more>> <<less
Download (6264KB)
Added: 2009-04-29 License: Freeware Price: Free
228 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5