twisted storage
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 576
NASLite 1.x
NASLite v1.x is a collection of single floppy disk based Network Attached Storage (NAS) Server Operating Systems designed to transform a basic computer into a dedicated file server. NASLite v1.x is in more>>
NASLite v1.x is a collection of single floppy disk based Network Attached Storage (NAS) Server Operating Systems designed to transform a basic computer into a dedicated file server. NASLite v1.x is intended primarily for use in a small business or home office network. By design, NASLite v1.x is a community file server and does not support features such as user management , the ability to join domains or disk quotas. However, it is very easy to set-up and use.
<<less Download (1.72MB)
Added: 2009-04-26 License: Freeware Price:
203 downloads
FreeNAS 0.685 Beta 2
FreeNAS is a free implementation of a minimal FreeBSD distribution. more>>
FreeNAS is a free implementation of a minimal FreeBSD distribution(for run it on a Compact Flash, CD-ROM or USB key) that provide NAS (Network-Attached Storage) services, supporting: CIFS, FTP, NFS protocols, with a Full WEB configuration interface.
The minimal FreeBSD distribution, Web interface,PHP scripts and documentations are based on M0n0wall.
<<lessThe minimal FreeBSD distribution, Web interface,PHP scripts and documentations are based on M0n0wall.
Download (38.1MB)
Added: 2007-08-06 License: BSD License Price:
499 downloads
Other version of FreeNAS
License:Freeware
Boxfs 0.4
Boxfs is a FUSE-based filesystem to access files stored on a box.net account. more>>
Boxfs is a FUSE-based filesystem to access files stored on a box.net account.
Box.net is a web service that offers storage accessible with a web interface, more info here http://www.box.net.
boxfs is licensed under the GPLv2, and comes with no warranty.
Enhancements:
- This release supports basic read/write file operations and directory creation.
<<lessBox.net is a web service that offers storage accessible with a web interface, more info here http://www.box.net.
boxfs is licensed under the GPLv2, and comes with no warranty.
Enhancements:
- This release supports basic read/write file operations and directory creation.
Download (0.013MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
799 downloads
Python CD 2004-07-02
Python CD is a bootable CD based on Debian GNU/Linux and KNOPPIX. more>>
Python CD is a bootable CD based on Debian GNU/Linux and KNOPPIX.
The special thing about it is that it has lots of Python stuff!
Installable Python packages
In the top level directory of the CD is a directory python/, containing several packages of Python:
- Python for Linux - most Linux distributions include Python, so we dont provide it for them
- Python for Mac OS X
- Python for Windows, win32all extension
- Python for DOS - no maintainer yet, so we only provide an URL
- Python source code, if you want to compile it yourself
Ready-to-Use Python
On the bootable Linux system, Python is already installed and ready to run:
- Python 2.3.4 (latest and greatest, use this!)
- Python 2.2.3
- Python 2.1.3
Python CD Packages
Here is an overview of popular packages installed on the PythonCd.
PythonCdRawPackageList has a complete raw list of installed debian packages.
IDEs (Integrated Development Environments)
- eric3 - a very nice and powerful GUI IDE
- IDLE - a simpler, but also popular GUI IDE
- DrPython - another GUI IDE
- IPython - an extended interactive Python command interpreter
GUI Builders
- BoaConstructor
- PythonCard
- ? WxGlade
GUI Toolkit bindings
- PyGtk
- PyQt
- WxPython
Graphics libs
- PIL
- PyGame
- PyOpenGL
Web/HTML/XML stuff
- MoinMoin wiki - you are using it right now
- TwistedMatrix AKA Twisted - a Python internet framework, very powerful
- Quixote
- PyXML, libxml2 and other XML packages
Scientific
- python-numeric and python-numarray - math extensions
- python-pyx - module for generating PostScript graphics, plotting
Database
- Gadfly
- python-mysqldb - interface for MySQL
- python-pgsql - DB-API 2.0 interface to PostgreSQL v7.x
- python-pygresql - PostgreSQL module
Misc
- PyChecker - checks your source code for common errors"
<<lessThe special thing about it is that it has lots of Python stuff!
Installable Python packages
In the top level directory of the CD is a directory python/, containing several packages of Python:
- Python for Linux - most Linux distributions include Python, so we dont provide it for them
- Python for Mac OS X
- Python for Windows, win32all extension
- Python for DOS - no maintainer yet, so we only provide an URL
- Python source code, if you want to compile it yourself
Ready-to-Use Python
On the bootable Linux system, Python is already installed and ready to run:
- Python 2.3.4 (latest and greatest, use this!)
- Python 2.2.3
- Python 2.1.3
Python CD Packages
Here is an overview of popular packages installed on the PythonCd.
PythonCdRawPackageList has a complete raw list of installed debian packages.
IDEs (Integrated Development Environments)
- eric3 - a very nice and powerful GUI IDE
- IDLE - a simpler, but also popular GUI IDE
- DrPython - another GUI IDE
- IPython - an extended interactive Python command interpreter
GUI Builders
- BoaConstructor
- PythonCard
- ? WxGlade
GUI Toolkit bindings
- PyGtk
- PyQt
- WxPython
Graphics libs
- PIL
- PyGame
- PyOpenGL
Web/HTML/XML stuff
- MoinMoin wiki - you are using it right now
- TwistedMatrix AKA Twisted - a Python internet framework, very powerful
- Quixote
- PyXML, libxml2 and other XML packages
Scientific
- python-numeric and python-numarray - math extensions
- python-pyx - module for generating PostScript graphics, plotting
Database
- Gadfly
- python-mysqldb - interface for MySQL
- python-pgsql - DB-API 2.0 interface to PostgreSQL v7.x
- python-pygresql - PostgreSQL module
Misc
- PyChecker - checks your source code for common errors"
Download (669.5MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
815 downloads
Tie::OffsetArray 0.01
Tie::OffsetArray can tie one array to another, with index offset. more>>
Tie::OffsetArray can tie one array to another, with index offset.
SYNOPSIS
use Tie::OffsetArray;
tie @a, Tie::OffsetArray, 1, @b; # offset=1; use given array.
tie @c, Tie::OffsetArray, 2; # use anonymous array.
$a[0] = x; # assign to $b[1];
tied(@a)->array->[0] = y; # assign to $b[0].
When tied to this class, an arrays behavior is completely normal. For its internal storage, it uses another array, either one supplied by the caller, or a new anonymous one. Accesses to the tied array are mapped down to the storage array by offsetting the index by some constant amount.
A special method on the tied object returns a reference to the storage array, so that the elements below the offset can be accessed. This is particularly useful if the storage array was not supplied by the caller.
<<lessSYNOPSIS
use Tie::OffsetArray;
tie @a, Tie::OffsetArray, 1, @b; # offset=1; use given array.
tie @c, Tie::OffsetArray, 2; # use anonymous array.
$a[0] = x; # assign to $b[1];
tied(@a)->array->[0] = y; # assign to $b[0].
When tied to this class, an arrays behavior is completely normal. For its internal storage, it uses another array, either one supplied by the caller, or a new anonymous one. Accesses to the tied array are mapped down to the storage array by offsetting the index by some constant amount.
A special method on the tied object returns a reference to the storage array, so that the elements below the offset can be accessed. This is particularly useful if the storage array was not supplied by the caller.
Download (0.008MB)
Added: 2007-08-10 License: Perl Artistic License Price:
805 downloads
Gluster 1.2.2 (GlusterFS)
GlusterFS package contains clustered file storage that can scale to peta bytes. more>>
GlusterFS package contains clustered file storage that can scale to peta bytes. GlusterFS is a programmable system. With little thinking, you can even redesign the GlusterFS file system by re-arranging the GlusterFS components using translator interface. It is all achieved through volume specification file. This allows GlusterFS to be flexible for all kinds of storage needs. Even with all these advanced features, GlusterFS is very easy to setup and manage.
Gluster is a GNU cluster distribution aimed at commoditizing Supercomputing and Superstorage. Core of the Gluster provides a platform for developing clustering applications tailored for a specific tasks such as HPC Clustering, Storage Clustering, Enterprise Provisioning, Database Clustering etc.
<<lessGluster is a GNU cluster distribution aimed at commoditizing Supercomputing and Superstorage. Core of the Gluster provides a platform for developing clustering applications tailored for a specific tasks such as HPC Clustering, Storage Clustering, Enterprise Provisioning, Database Clustering etc.
Download (0.26MB)
Added: 2007-01-17 License: GPL (GNU General Public License) Price:
1012 downloads
Other version of Gluster
License:GPL (GNU General Public License)
Freevo 1.7.3
Freevo is a standalone Linux digital VCR/PVR. more>>
Freevo project is a Linux application that turns a PC with a TV capture card and/or TV-out into a standalone multimedia jukebox/VCR/PVR/HTPC/DVR/set-top box.
It uses MPlayer and other apps to play and record audio and video. It is optimized for use with a TV and remote, but can be used with a monitor and keyboard. It is very easy to install since the binary release package has no external dependencies.
Main features:
- SDL
- Pygame
- Python Imaging Library
- Mplayer
- Python
- Python Twisted
- Xine
Enhancements:
- New audio scrobbler plug-in
- New Chinese translation
- New Greek translation
- Updates the Apple trailers plug-in
- Updates to recordings manager
- Updates to button bar plug-ins
- Updated French translation
- Updated Spanish translation
- Changes to MPlayer field dominance and interlacing
- Many bug fixes
<<lessIt uses MPlayer and other apps to play and record audio and video. It is optimized for use with a TV and remote, but can be used with a monitor and keyboard. It is very easy to install since the binary release package has no external dependencies.
Main features:
- SDL
- Pygame
- Python Imaging Library
- Mplayer
- Python
- Python Twisted
- Xine
Enhancements:
- New audio scrobbler plug-in
- New Chinese translation
- New Greek translation
- Updates the Apple trailers plug-in
- Updates to recordings manager
- Updates to button bar plug-ins
- Updated French translation
- Updated Spanish translation
- Changes to MPlayer field dominance and interlacing
- Many bug fixes
Download (16.1MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
817 downloads
sc101-nbd 0.03
sc101-nbd allows Linux to access a Netgear SC101 storage device as a block device, without requiring a new kernel module. more>>
sc101-nbd allows Linux to access a Netgear SC101 storage device as a block device, without requiring a new kernel module.
Netgear Storage Central 101 (sc101) is an IP based block storage device.
Netgear ships a clustered filesystem with the product (perhaps based on DataPlow SFS) which allows multiple Windows client machines to concurrently mount and read/write directly to the device; it is a SAN rather than a NAS device.
There is no protocol documentation provided, nor any driver support for operating systems other than Windows.
This software allows Linux to access the the sc101 as a block device, without requiring a new kernel module.
It achieves this by translating between the kernels existing NBD protocol and the reverse engineered protocol used by the sc101 (I call it PSAN, perhaps incorrectly).
On top of the NBD devices you can run RAID, LVM, and any existing filesystems (ext2/3, ocfs2, etc).
The resulting storage area is not interoperable with existing Windows clients.
It is unknown whether this software is compatible with the (unreleased) sc101t or other Zetera partnered devices.
Enhancements:
- This has been tested on RHEL/CentOS 4.x and Ubuntu 7.04.
<<lessNetgear Storage Central 101 (sc101) is an IP based block storage device.
Netgear ships a clustered filesystem with the product (perhaps based on DataPlow SFS) which allows multiple Windows client machines to concurrently mount and read/write directly to the device; it is a SAN rather than a NAS device.
There is no protocol documentation provided, nor any driver support for operating systems other than Windows.
This software allows Linux to access the the sc101 as a block device, without requiring a new kernel module.
It achieves this by translating between the kernels existing NBD protocol and the reverse engineered protocol used by the sc101 (I call it PSAN, perhaps incorrectly).
On top of the NBD devices you can run RAID, LVM, and any existing filesystems (ext2/3, ocfs2, etc).
The resulting storage area is not interoperable with existing Windows clients.
It is unknown whether this software is compatible with the (unreleased) sc101t or other Zetera partnered devices.
Enhancements:
- This has been tested on RHEL/CentOS 4.x and Ubuntu 7.04.
Download (0.010MB)
Added: 2007-07-27 License: GPL (GNU General Public License) Price:
863 downloads
Storage Inspector 0.5
Storage Inspector is a Firefox extension that makes it easy to view any sqlite database files in the current profile. more>>
Storage Inspector is a Firefox extension that makes it easy to view any sqlite database files in the current profile. This includes the anti-phishing and search engine...
Developer Comments:
There are quite a few polish issues that need to be addressed before this version is ready for the masses. If you notice problems, please view the readme.txt file first and tell me if there are other issues.
You can set the storageinspector.openmode pref to 2 if you want the extension to open in a new tab instead of its own window.
I have primarily tested the extension in Firefox 2b1 but would still like feedback on how it runs in 3a1.
If you dont like something, please post here with a constructive statement telling me what you would like.
<<lessDeveloper Comments:
There are quite a few polish issues that need to be addressed before this version is ready for the masses. If you notice problems, please view the readme.txt file first and tell me if there are other issues.
You can set the storageinspector.openmode pref to 2 if you want the extension to open in a new tab instead of its own window.
I have primarily tested the extension in Firefox 2b1 but would still like feedback on how it runs in 3a1.
If you dont like something, please post here with a constructive statement telling me what you would like.
Download (0.040MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
824 downloads
Secure Storage service for the gLite middleware 1.1.2-1
Secure Storage service for the gLite middleware provides users with a set of tools to store data in a secure way. more>>
Secure Storage service for the gLite middleware project provides users with a set of tools to store in a secure way and in an encrypted format confidential data (e.g. medical or financial data) on the grid storage elements.
The data stored using the tools provided will be accessible and readable only by authorized users. Moreover, it solves the insider abuse problem preventing also the administrators of the storage elements to access the confidential data in a clear format.
The service has been designed and developed for the grid Middleware of the EGEE infrastructure, gLite, in the context of the TriGrid VL Project.
Secure Storage documentation generated with Doxygen are available.
Enhancements:
- A minor bug was fixed.
<<lessThe data stored using the tools provided will be accessible and readable only by authorized users. Moreover, it solves the insider abuse problem preventing also the administrators of the storage elements to access the confidential data in a clear format.
The service has been designed and developed for the grid Middleware of the EGEE infrastructure, gLite, in the context of the TriGrid VL Project.
Secure Storage documentation generated with Doxygen are available.
Enhancements:
- A minor bug was fixed.
Download (0.088MB)
Added: 2007-07-24 License: The Apache License 2.0 Price:
823 downloads
Other version of Secure Storage service for the gLite middleware
License:The Apache License 2.0
Twisted Packager II 0.9.0
Twisted Packager II (TP2) is a package manager that aims to make live easy - for end users and also developers. more>>
Twisted Packager II (TP2) is a package manager that aims to make live easy - for end users and also developers. In some respects it is similar to Autopackage - it does not intend to replace the "system packaging tool" but instead will sit alongside it to allow application developers an easy way to package software; and system administrators an easy way to install [or remove!] such software.
TP2 excels at handling generic software - and allows a "source" type package [such as itself!] to be installed across multiple architectures and operating systems using the same package.
TP2 is cross-platform; it is currently in use on Solaris, Linux and HP-UX. Soon the intention is validate it also for BSD and AIX.
TP2 is flexible. It supports dependency management, package verification, preview installation and removal, and audit logs all activity.
TP2 is powerful. It supports "namespaces" which allows the same packages to be installed into different areas on the same machine. Non-root users can be given areas which they can manage independently.
Enhancements:
- Initial public announcement, though the software has been in use in several environments for over 12 months.
<<lessTP2 excels at handling generic software - and allows a "source" type package [such as itself!] to be installed across multiple architectures and operating systems using the same package.
TP2 is cross-platform; it is currently in use on Solaris, Linux and HP-UX. Soon the intention is validate it also for BSD and AIX.
TP2 is flexible. It supports dependency management, package verification, preview installation and removal, and audit logs all activity.
TP2 is powerful. It supports "namespaces" which allows the same packages to be installed into different areas on the same machine. Non-root users can be given areas which they can manage independently.
Enhancements:
- Initial public announcement, though the software has been in use in several environments for over 12 months.
Download (MB)
Added: 2007-07-23 License: GPL (GNU General Public License) Price:
825 downloads
Itaka 0.2.1
Itaka is an on-demand screen capture server. more>>
Itaka is an on-demand screen capture server.
Itaka is an on-demand screen capture server for Windows, Mac Os X and Linux. It is developed in Python, PyGTK and the Twisted Framework. It prominently features a polished easy to use interface, with a robust backend server.
Main features:
- Acts as an on-demand server (requests to your computer by a users web browser display an image of your screen to the user)
- Notification for the client, on the desktop and with style using Libnotify.
- Very polished GUI drawing elements from Mac OS X. Sample
- Multiple platform support (currently Windows, Linux, Mac OS X and any other plattform with Python/Twisted/GTK support)
<<lessItaka is an on-demand screen capture server for Windows, Mac Os X and Linux. It is developed in Python, PyGTK and the Twisted Framework. It prominently features a polished easy to use interface, with a robust backend server.
Main features:
- Acts as an on-demand server (requests to your computer by a users web browser display an image of your screen to the user)
- Notification for the client, on the desktop and with style using Libnotify.
- Very polished GUI drawing elements from Mac OS X. Sample
- Multiple platform support (currently Windows, Linux, Mac OS X and any other plattform with Python/Twisted/GTK support)
Download (0.30MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
828 downloads
Options.pm 1.5
Options.pm is a command-line option-parsing Perl module meant to imitate the syntax of the t.p.usage.Options module. more>>
Options.pm is a command-line option-parsing Perl module meant to imitate the syntax of the t.p.usage.Options module from the Twisted Python library.
This module will allow you to specify which options to look for on the command line, and supports both long and short versions of simple flags and parameters. If a required parameter is unspecified, Options.pm will print nicely formatted usage information with the error.
<<lessThis module will allow you to specify which options to look for on the command line, and supports both long and short versions of simple flags and parameters. If a required parameter is unspecified, Options.pm will print nicely formatted usage information with the error.
Download (0.007MB)
Added: 2007-07-13 License: Perl Artistic License Price:
837 downloads
boto 0.9b
boto project is an integrated interface to current and future infrastructural services offered by Amazon Web Services. more>>
boto project is an integrated interface to current and future infrastructural services offered by Amazon Web Services.
Main features:
- Simple Storage Service (S3)
- Simple Queue Service (SQS)
- Elastic Compute Cloud (EC2)
- Mechanical Turk
Enhancements:
- This release adds support for Paid AMIs in EC2.
<<lessMain features:
- Simple Storage Service (S3)
- Simple Queue Service (SQS)
- Elastic Compute Cloud (EC2)
- Mechanical Turk
Enhancements:
- This release adds support for Paid AMIs in EC2.
Download (0.055MB)
Added: 2007-07-12 License: MIT/X Consortium License Price:
834 downloads
Blackshift 1.24
Blackshift, a satisfyingly difficult puzzle/skill/action game. more>>
Blackshift, a satisfyingly difficult puzzle/skill/action game. You should try it out. I think youd like it. Basically, its a top down view of a subterranean maze, where you have to blow up a frozen alien in order to continue. There are about a hundred levels to beat, each one more evil and twisted than the last.
Main features:
- Missiles
- bombs
- grills
- spaceships
- robots
- buttons
- keys
- doors
- teleports
- angry red faces
- diamonds
- eyeballs
- mirrors
- photocopiers
- pits
- landmines
- aliens
- guns
- blocks
- splitters
- remote controls
- nuclear weapons
RUNNING IT:
If Blackshift wont run when you click the icon you should run it from a console. It worked for me. Explanations as to why are welcome, especially if they arent Because KDE is weird. As always, YMMV.
CONTROLS:
Arrows: Move
Enter: Pickup/Drop
Space: Pickup/Fire
R: Restart
Ctrl+N: Nuke
<<lessMain features:
- Missiles
- bombs
- grills
- spaceships
- robots
- buttons
- keys
- doors
- teleports
- angry red faces
- diamonds
- eyeballs
- mirrors
- photocopiers
- pits
- landmines
- aliens
- guns
- blocks
- splitters
- remote controls
- nuclear weapons
RUNNING IT:
If Blackshift wont run when you click the icon you should run it from a console. It worked for me. Explanations as to why are welcome, especially if they arent Because KDE is weird. As always, YMMV.
CONTROLS:
Arrows: Move
Enter: Pickup/Drop
Space: Pickup/Fire
R: Restart
Ctrl+N: Nuke
Download (2.7MB)
Added: 2007-07-04 License: Freeware Price:
845 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 twisted storage 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