general chemistry
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1344
Gnome Chemistry Utils 0.9.0
Gnome Chemistry Utils provide C++ classes and Gtk+-2 widgets related to chemistry. more>>
Gnome Chemistry Utils software provides C++ classes and Gtk+-2 widgets related to chemistry. They are used in both Gnome Crystal and GChemPaint.
To compile and use the Gnome Chemistry Utils, you need libglade-2, and GtkGLExt, and their own dependencies. Everything except GtkGLExt is available from the Gnome repository or one of its mirrors.
The GtkChem3DViewer widget also needs Gnome-vfs and OpenBabel to be built.
GChemistry Utils are distributed under the LGPL license.
Gnome Chemistry Utils are in an early development stage.
Three widgets:
- a periodic table,
- a crystal structure viewer,
- a 3D molecular structure viewer.
The last widget is also accesible as a Bonobo control.
The Gnome Chemistry Utils are the basis for the development of both GChemPaint and Gnome Crystal
<<lessTo compile and use the Gnome Chemistry Utils, you need libglade-2, and GtkGLExt, and their own dependencies. Everything except GtkGLExt is available from the Gnome repository or one of its mirrors.
The GtkChem3DViewer widget also needs Gnome-vfs and OpenBabel to be built.
GChemistry Utils are distributed under the LGPL license.
Gnome Chemistry Utils are in an early development stage.
Three widgets:
- a periodic table,
- a crystal structure viewer,
- a 3D molecular structure viewer.
The last widget is also accesible as a Bonobo control.
The Gnome Chemistry Utils are the basis for the development of both GChemPaint and Gnome Crystal
Download (1.6MB)
Added: 2007-06-28 License: GPL (GNU General Public License) Price:
848 downloads
LGeneral 1.2 Beta12
LGeneral is a turn-based strategy engine heavily inspired by Panzer General. more>>
LGeneral is a turn-based strategy engine heavily inspired by Panzer General. With LGeneral you play single scenarios or whole campaigns turn by turn against a human player or the AI.
Entrenchment, rugged defense, defensive fire, surprise contacts, surrender, unit supply, weather influence, reinforcements and other implementations contribute to the tactical and strategic depth of the game.
The engine itself has no playable data but there is a converter for Panzer General (DOS version).
<<lessEntrenchment, rugged defense, defensive fire, surprise contacts, surrender, unit supply, weather influence, reinforcements and other implementations contribute to the tactical and strategic depth of the game.
The engine itself has no playable data but there is a converter for Panzer General (DOS version).
Download (1.2MB)
Added: 2006-06-01 License: GPL (GNU General Public License) Price:
1246 downloads
General Package/Module Interface 0.7.1
General Package/Module Interface (GPMI) is a lightweight library that assists with modularizing applications. more>>
General Package/Module Interface (GPMI) is a lightweight library that assists with modularizing applications.
It includes prewritten script interpreter modules in addition to timers, events, and package dependencies.
Enhancements:
- This version features many bugfixes and memory leak cleanups.
- It is now possible to compile the code on Windows using mingw.
<<lessIt includes prewritten script interpreter modules in addition to timers, events, and package dependencies.
Enhancements:
- This version features many bugfixes and memory leak cleanups.
- It is now possible to compile the code on Windows using mingw.
Download (0.17MB)
Added: 2006-01-10 License: GPL (GNU General Public License) Price:
1384 downloads
Chemistry::SQL 0.01
Chemistry::SQL is an access database functions module. more>>
Chemistry::SQL is an access database functions module.
SYNOPSIS
use strict;
use Chemistry::SQL;
use Chemistry::Artificial::SQL;
my $db_name = $ARGV[0];
my $file = $ARGV[1];
my $db1 = Chemistry::SQL::new(db_host=>"127.0.0.1",db_user=>"root",db_port=>"3306",db_pwd=>"",
db_name=>$db_name,db_driver=>"mysql");
if ($db1->db_exist)
{ $db1->connect_db;
$db1->del_tables;
$db1->create_tables_mysql;
$db1->inscomp_from_file("$file");
}
else
{
$db1->create_db;
$db1->connect_db;
$db1->create_tables_mysql;
$db1->inscomp_from_file("$file");
}
# Reaction Insertion
my $qart = Chemistry::Artificial::SQL::new($db1);
my $qr =$qart->q_reaccion(C=CC=C.C=C>>C1=CCCCC1,smiles);
$db1->reactionsert($qr,"","0");
This package provides the necessary functions to interact with the database. The methods implemented in this module are oriented to give users control of the database without knowing how to use SQL queries.
<<lessSYNOPSIS
use strict;
use Chemistry::SQL;
use Chemistry::Artificial::SQL;
my $db_name = $ARGV[0];
my $file = $ARGV[1];
my $db1 = Chemistry::SQL::new(db_host=>"127.0.0.1",db_user=>"root",db_port=>"3306",db_pwd=>"",
db_name=>$db_name,db_driver=>"mysql");
if ($db1->db_exist)
{ $db1->connect_db;
$db1->del_tables;
$db1->create_tables_mysql;
$db1->inscomp_from_file("$file");
}
else
{
$db1->create_db;
$db1->connect_db;
$db1->create_tables_mysql;
$db1->inscomp_from_file("$file");
}
# Reaction Insertion
my $qart = Chemistry::Artificial::SQL::new($db1);
my $qr =$qart->q_reaccion(C=CC=C.C=C>>C1=CCCCC1,smiles);
$db1->reactionsert($qr,"","0");
This package provides the necessary functions to interact with the database. The methods implemented in this module are oriented to give users control of the database without knowing how to use SQL queries.
Download (0.014MB)
Added: 2006-07-31 License: Perl Artistic License Price:
1185 downloads
Chemistry::Mol 0.36
Chemistry::Mol is a molecule object toolkit. more>>
Chemistry::Mol is a molecule object toolkit.
SYNOPSIS
use Chemistry::Mol;
$mol = Chemistry::Mol->new(id => "mol_id", name => "my molecule");
$c = $mol->new_atom(symbol => "C", coords => [0,0,0]);
$o = $mol->new_atom(symbol => "O", coords => [0,0,1.23]);
$mol->new_bond(atoms => [$c, $o], order => 3);
print $mol->print;
This package, along with Chemistry::Atom and Chemistry::Bond, includes basic objects and methods to describe molecules.
The core methods try not to enforce a particular convention. This means that only a minimal set of attributes is provided by default, and some attributes have very loosely defined meaning.
This is because each program and file type has different idea of what each concept (such as bond and atom type) means. Bonds are defined as a list of atoms (typically two) with an arbitrary type. Atoms are defined by a symbol and a Z, and may have 3D and internal coordinates (2D coming soon).
<<lessSYNOPSIS
use Chemistry::Mol;
$mol = Chemistry::Mol->new(id => "mol_id", name => "my molecule");
$c = $mol->new_atom(symbol => "C", coords => [0,0,0]);
$o = $mol->new_atom(symbol => "O", coords => [0,0,1.23]);
$mol->new_bond(atoms => [$c, $o], order => 3);
print $mol->print;
This package, along with Chemistry::Atom and Chemistry::Bond, includes basic objects and methods to describe molecules.
The core methods try not to enforce a particular convention. This means that only a minimal set of attributes is provided by default, and some attributes have very loosely defined meaning.
This is because each program and file type has different idea of what each concept (such as bond and atom type) means. Bonds are defined as a list of atoms (typically two) with an arbitrary type. Atoms are defined by a symbol and a Z, and may have 3D and internal coordinates (2D coming soon).
Download (0.042MB)
Added: 2007-08-15 License: Perl Artistic License Price:
803 downloads
Network Chemistry RogueScanner 2.5.0
RogueScanner is an open-source vulnerability management tool. more>>
RogueScanner project is an open-source vulnerability management tool that is used to gain greater network visibility to enable you to quickly identify and remove rogue wireless devices that may provide a back door to access your critical data and infrastructure.
Considering that rogue access points and peers represent a major threat to data integrity, RogueScanner is a valuable tool that you can start using today at no cost.
More than 300 companies manufacture access points, and there are more than 10,000 different models of network infrastructure.
Companies thus face a major challenge in maintaining a system to track and identify all potential rogue wireless devices and in continually scanning the network to identify them. To address this challenge, Network Chemistry has made an open-source product available to help organizations begin to immediately scan their networks.
RogueScanner is available for use at no charge by organizations looking for a tool focused on device identification and rogue detection. RogueScanner leverages the Collaborative Device Classification system to automatically lookup and identify the device type and its identity in real time.
Enhancements:
- Many scanning and classification improvements.
- Support has been added for parsing routes under from IOS CLI.
- Support has been added for dumping Cisco device CDP cache via both SNMP and CLI (IOS and CatOS).
- Support has been added for sniffing CDP broadcasts off the wire.
- CDP information is now submitted to the classification server and used for classification.
- FTP (21/TCP) has been added to the list of ports that are probed if open.
<<lessConsidering that rogue access points and peers represent a major threat to data integrity, RogueScanner is a valuable tool that you can start using today at no cost.
More than 300 companies manufacture access points, and there are more than 10,000 different models of network infrastructure.
Companies thus face a major challenge in maintaining a system to track and identify all potential rogue wireless devices and in continually scanning the network to identify them. To address this challenge, Network Chemistry has made an open-source product available to help organizations begin to immediately scan their networks.
RogueScanner is available for use at no charge by organizations looking for a tool focused on device identification and rogue detection. RogueScanner leverages the Collaborative Device Classification system to automatically lookup and identify the device type and its identity in real time.
Enhancements:
- Many scanning and classification improvements.
- Support has been added for parsing routes under from IOS CLI.
- Support has been added for dumping Cisco device CDP cache via both SNMP and CLI (IOS and CatOS).
- Support has been added for sniffing CDP broadcasts off the wire.
- CDP information is now submitted to the classification server and used for classification.
- FTP (21/TCP) has been added to the list of ports that are probed if open.
Download (1.5MB)
Added: 2007-05-01 License: GPL (GNU General Public License) Price:
919 downloads
Kemistry 0.7
Kemistry is a collection of chemistry applications for the K Desktop Environment. more>>
Kemistry is a collection of chemical applications for the K Desktop Environment (release 3.x).
Originally the applications were distributed in a single source package, but currently every application is distributed in a standalone package. The available applications are
* KMolCalc - molecular weight and elemental composition calculator
* KemBabel - a file conversion program based on Open Babel
<<lessOriginally the applications were distributed in a single source package, but currently every application is distributed in a standalone package. The available applications are
* KMolCalc - molecular weight and elemental composition calculator
* KemBabel - a file conversion program based on Open Babel
Download (1.15MB)
Added: 2005-04-01 License: GPL (GNU General Public License) Price:
1666 downloads
GenChemLab 1.0
GenChemLab is a chemistry experiment simulator. more>>
GenChemLab is an OpenGL-based application intended to simulate several common general chemistry exercises. It is meant to be used to help students prepare for actual lab experience. It could also be used in cases where laboratory facilites are not accessible, for instance in K-12 schools or home schooling.
At present, supported experiments include titration, calorimetry, freezing point depression, vapor pressure, and spectrophotometry.
<<lessAt present, supported experiments include titration, calorimetry, freezing point depression, vapor pressure, and spectrophotometry.
Download (0.33MB)
Added: 2005-04-01 License: GPL (GNU General Public License) Price:
1670 downloads
GEneral NEural SImulation System 2.2.1
GEneral NEural SImulation System is a neural network simulator. more>>
GENESIS (short for GEneral NEural SImulation System) is a general purpose simulation platform that was developed to support the simulation of neural systems ranging from subcellular components and biochemical reactions to complex models of single neurons, simulations of large networks, and systems-level models.
GENESIS has provided the basis for laboratory courses in neural simulation at Caltech, the Marine Biological Laboratory, the Crete, Trieste, Bangalore, and Obidos short courses in Computational Neuroscience, and at least 49 universities of which we are aware.
Most current GENESIS applications involve realistic simulations of biological neural systems. Although the software can also model more abstract networks, other simulators are more suitable for backpropagation and similar connectionist modeling.
Installation
1. Pick the place where you want to install the "genesis" directory tree. If you are making a system-wide installation as "root" user, /usr/local is a good choice. For a personal installation, without root privileges, you can use your home directory ("~"). Change to this directory and extract the genesis directory from the archive file genesis2.2.1-linux-bin.tar.gz. For example,
cd /usr/local
tar xvzf /mnt/cdrom/genesis2.2.1-linux-bin.tar.gz
or from wherever you have it (e.g.~/downloads/genesis2.2.1-linux-bin.tar.gz).
2. Change to the "genesis" directory and run the setup script that creates the ".simrc" GENESIS initialization file". Then copy .simrc to your home directory.
cd genesis
./binsetup
cp .simrc ~
3. Finallly, add the genesis directory to your search path, so that "genesis" can be found from any directory that you are in. If your login shell is bash, you can do this by editing the .bashrc file in your home directory to add the line
PATH=$PATH:/usr/local/genesis
at the end of the file. If you are using tcsh or csh as your command shell, add
set path=($path /usr/local/genesis)
to your .tcsh or .csh file.
At this point, you are ready to try running GENESIS. Change into the directory genesis/Scripts and try some of the tutorials suggested in the README file.
<<lessGENESIS has provided the basis for laboratory courses in neural simulation at Caltech, the Marine Biological Laboratory, the Crete, Trieste, Bangalore, and Obidos short courses in Computational Neuroscience, and at least 49 universities of which we are aware.
Most current GENESIS applications involve realistic simulations of biological neural systems. Although the software can also model more abstract networks, other simulators are more suitable for backpropagation and similar connectionist modeling.
Installation
1. Pick the place where you want to install the "genesis" directory tree. If you are making a system-wide installation as "root" user, /usr/local is a good choice. For a personal installation, without root privileges, you can use your home directory ("~"). Change to this directory and extract the genesis directory from the archive file genesis2.2.1-linux-bin.tar.gz. For example,
cd /usr/local
tar xvzf /mnt/cdrom/genesis2.2.1-linux-bin.tar.gz
or from wherever you have it (e.g.~/downloads/genesis2.2.1-linux-bin.tar.gz).
2. Change to the "genesis" directory and run the setup script that creates the ".simrc" GENESIS initialization file". Then copy .simrc to your home directory.
cd genesis
./binsetup
cp .simrc ~
3. Finallly, add the genesis directory to your search path, so that "genesis" can be found from any directory that you are in. If your login shell is bash, you can do this by editing the .bashrc file in your home directory to add the line
PATH=$PATH:/usr/local/genesis
at the end of the file. If you are using tcsh or csh as your command shell, add
set path=($path /usr/local/genesis)
to your .tcsh or .csh file.
At this point, you are ready to try running GENESIS. Change into the directory genesis/Scripts and try some of the tutorials suggested in the README file.
Download (7.5MB)
Added: 2005-04-01 License: BSD License Price:
1667 downloads
Config::General 2.32
Config::General is a perl module opens a config file and parses its contents for you. more>>
Config::General is a perl module opens a config file and parses its contents for you.
Config::General library provides variable interpolation, saving of configs (kinda serializer), an OOP-Interface and much more.
The format of config files supported by Config::General is inspired by the well known apache config format, in fact, this module is 100% compatible to apache configs(read-only), but you can also just use simple name/value pairs in your config files.
In addition to the capabilities of an apache config file it supports some enhancements such as here-documents, C-style comments or multiline options.
Installation:
To install, type:
perl Makefile.PL
make
make test
make install
To read the complete documentation, type:
perldoc Config::General
perldoc Config::General::Extended
perldoc Config::General::Interpolated
See some example config files which can be parsed with Config::Genreal in the subdirectory t/cfg.*
Enhancements:
- A number of bugs were fixed and unit tests were improved.
<<lessConfig::General library provides variable interpolation, saving of configs (kinda serializer), an OOP-Interface and much more.
The format of config files supported by Config::General is inspired by the well known apache config format, in fact, this module is 100% compatible to apache configs(read-only), but you can also just use simple name/value pairs in your config files.
In addition to the capabilities of an apache config file it supports some enhancements such as here-documents, C-style comments or multiline options.
Installation:
To install, type:
perl Makefile.PL
make
make test
make install
To read the complete documentation, type:
perldoc Config::General
perldoc Config::General::Extended
perldoc Config::General::Interpolated
See some example config files which can be parsed with Config::Genreal in the subdirectory t/cfg.*
Enhancements:
- A number of bugs were fixed and unit tests were improved.
Download (0.042MB)
Added: 2007-02-27 License: Artistic License Price:
970 downloads
General Applet Interface Library 0.5.10
The goal of the General Applet Interface Library is to give programmers a simple yet powerful applet interface. more>>
The goal of the General Applet Interface Library is to give programmers a simple yet powerful applet interface. This library supports wmapplet/dockapps, GNOME 2 panel applets, and ROX panel applets.
This library supports at the moment Dockapps, Gnome 2 Panel Applets and Rox panel applets. In the future support for XFCE 4 and KDE is planned to be added. The applet program doesnt have to care about if the applet will be used on the Gnome panel or in the dock. The library handles that.
Over 50% of the code in a Dockapp and a Gnome 2 Panel applet does actully only one thing, setting up the applet window. With GAI, you can reduce it to just a few lines of code.
Enhancements:
- Updated the example applets.
- The preference dialog is now nicely resized.
- Fixed some minor memory leaks in the preference dialog.
- API change: The function connected to gai_signal_on_preferences() shall now take: (gboolean changed, gpointer data) as argument. changed is true if the user changed
- anything in the preference window. False if the user did nothing.
- Added two new preference window items. GAI_LISTSTORE and GAI_EDITLISTSTORE. The first shows just a list, no altering is possible. The second provide a list that can be increased and reduced by the user. (NOT YET FINISHED!)
- Cleaned up parts of the preference generator. Several minor memory leaks fixed.
- Update gai.spec. Some Fedora Core changes by Michael Schwendt mschwendt@users.sf.net, and Michel Alexandre Salim salimma@users.sf.net
- Allowing applet to be bigger than 1000 pixels (2560 is now max).
- Ashley V wants to have Shermans
- aquarium real big Destroying (clicking on the window manager "X" icon) the preference window now works fine.
- Destroying About box is now handled correctly.
- Rewrote large part of the right mouse click menu handleling code. Now you can remove, change, insert and add menu items during run time. gai_menu_insert(...), gai_menu_change(...) and gai_menu_remove(...) is new. gai_menu_add now returns an integer that is the ID of the menu item.
- Fixed broken libdir link in gai.pc
- Make sure GdkColor is never null when given to applet.
- Documentation updates.
- Various minor fixes found on the fedora extras by Michael Schwendt and Thorsten Leemhuis fedora@leemhuis.info. Please mail me fixes directly!!
- GtkFileChooser dialog is now used instead of GtkFileSelector when GTK+ 2.4 or later is detected.
- If gtk+ 2.4 or later, use varously updated widgets instead of older ones.
- Merged big nls patch by Olaf Leidinger Thanks!
- NLS is finally supported for GAI. Not yet there for applets
- The BonoboUIVerb array canary was missing and that caused the GNOME to crash. Patch by Jean-Yves Lefort
<<lessThis library supports at the moment Dockapps, Gnome 2 Panel Applets and Rox panel applets. In the future support for XFCE 4 and KDE is planned to be added. The applet program doesnt have to care about if the applet will be used on the Gnome panel or in the dock. The library handles that.
Over 50% of the code in a Dockapp and a Gnome 2 Panel applet does actully only one thing, setting up the applet window. With GAI, you can reduce it to just a few lines of code.
Enhancements:
- Updated the example applets.
- The preference dialog is now nicely resized.
- Fixed some minor memory leaks in the preference dialog.
- API change: The function connected to gai_signal_on_preferences() shall now take: (gboolean changed, gpointer data) as argument. changed is true if the user changed
- anything in the preference window. False if the user did nothing.
- Added two new preference window items. GAI_LISTSTORE and GAI_EDITLISTSTORE. The first shows just a list, no altering is possible. The second provide a list that can be increased and reduced by the user. (NOT YET FINISHED!)
- Cleaned up parts of the preference generator. Several minor memory leaks fixed.
- Update gai.spec. Some Fedora Core changes by Michael Schwendt mschwendt@users.sf.net, and Michel Alexandre Salim salimma@users.sf.net
- Allowing applet to be bigger than 1000 pixels (2560 is now max).
- Ashley V wants to have Shermans
- aquarium real big Destroying (clicking on the window manager "X" icon) the preference window now works fine.
- Destroying About box is now handled correctly.
- Rewrote large part of the right mouse click menu handleling code. Now you can remove, change, insert and add menu items during run time. gai_menu_insert(...), gai_menu_change(...) and gai_menu_remove(...) is new. gai_menu_add now returns an integer that is the ID of the menu item.
- Fixed broken libdir link in gai.pc
- Make sure GdkColor is never null when given to applet.
- Documentation updates.
- Various minor fixes found on the fedora extras by Michael Schwendt and Thorsten Leemhuis fedora@leemhuis.info. Please mail me fixes directly!!
- GtkFileChooser dialog is now used instead of GtkFileSelector when GTK+ 2.4 or later is detected.
- If gtk+ 2.4 or later, use varously updated widgets instead of older ones.
- Merged big nls patch by Olaf Leidinger Thanks!
- NLS is finally supported for GAI. Not yet there for applets
- The BonoboUIVerb array canary was missing and that caused the GNOME to crash. Patch by Jean-Yves Lefort
Download (0.28MB)
Added: 2006-07-18 License: LGPL (GNU Lesser General Public License) Price:
1195 downloads
GChemPaint 0.8.2
GChemPaint is a 2D chemical structures editor for the Gnome desktop. more>>
GChemPaint is a 2D chemical structures editor for the Gnome desktop.
GChemPaint should enable embedding some chemistry in files from other programs using Bonobo.
<<lessGChemPaint should enable embedding some chemistry in files from other programs using Bonobo.
Download (1.5MB)
Added: 2007-07-28 License: GPL (GNU General Public License) Price:
822 downloads
MIBA Consulting General System Library 1.0
MIBA Consulting General System Library is a collection of cross-platform C++ class libraries. more>>
MIBA Consulting General System Library is a collection of cross-platform C++ class libraries. Provides thread, IPC, file, network, SNMP (net-snmp) and Database (MySQL) interfaces. Comes with the usual array of utility classes - smart pointers, singletons, registries, serialization etc.
Installation:
The dist (or debug) directory contains everything you need apart from the NSPR library (and NETSNMP and STLPORT iostream library if you choose to use these), and two header files from NSPR. To get a complete kit use
make install INSTALL_PATH=path
where path is where you want the kit installed. If you have doxygen the documentation will be created by the install target, or you can make it independently with "make doc". In either case the documentation will get copied to the install path too.
<<lessInstallation:
The dist (or debug) directory contains everything you need apart from the NSPR library (and NETSNMP and STLPORT iostream library if you choose to use these), and two header files from NSPR. To get a complete kit use
make install INSTALL_PATH=path
where path is where you want the kit installed. If you have doxygen the documentation will be created by the install target, or you can make it independently with "make doc". In either case the documentation will get copied to the install path too.
Download (0.20MB)
Added: 2005-10-06 License: LGPL (GNU Lesser General Public License) Price:
1480 downloads
Gnome Crystal 0.6.7
Gnome Crystal is a light model visualizer for crystal structures. more>>
Gnome Crystal project is a light model visualizer for crystal structures.
Gnome-1 version uses Gtk+, Gnome, libglade, gettext, OpenGL(or Mesa) and GtkGLArea.
Gnome-2 version uses standard Gnome-2 libraries and the Gnome Chemistry Utils and its dependencies.
License is GPL.
<<lessGnome-1 version uses Gtk+, Gnome, libglade, gettext, OpenGL(or Mesa) and GtkGLArea.
Gnome-2 version uses standard Gnome-2 libraries and the Gnome Chemistry Utils and its dependencies.
License is GPL.
Download (0.77MB)
Added: 2006-02-08 License: GPL (GNU General Public License) Price:
1355 downloads
BrowserLauncher2 1.1
BrowserLauncher2 is a library that facilitates opening a browser from a Java application. more>>
BrowserLauncher2 is a library that facilitates opening a browser from a Java application and directing the browser to a supplied URL.
In most cases, the browser opened will be the users default browser.
BrowserLauncher2 is free software and it is being released under the GNU Lesser General Public License.
<<lessIn most cases, the browser opened will be the users default browser.
BrowserLauncher2 is free software and it is being released under the GNU Lesser General Public License.
Download (0.24MB)
Added: 2007-06-13 License: LGPL (GNU Lesser General Public License) Price:
864 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 general chemistry 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