Main > Free Download Search >

Free global warming solutions software for linux

global warming solutions

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1302
E/AS Automation Solutions 0.2.0

E/AS Automation Solutions 0.2.0


E/AS Automation Solutions is open source software system for help automate your solutions even for personal or corporate ones. more>>
E/AS Automation Solutions is open source software system for help automate your solutions even for personal and/or corporate ones.
E/AS written on CLIP language (CA-Clipper dialect, compiler can be obtained from ITK.ru) and uses CODB (CLIP Object Database) as data storage.
Main features:
- client-server technology (both data and interface forms)
- component infrastructure with interaction between components by messages
- interface forms on XML
- MDI
E/AS contains in typical distribution:
- client software written on clip-ui library
- server software with wrapper for run as daemon
- maintenance tools: CODB console and component manager
- base (form, auth) and example (contact) components
Enhancements:
- completely rewrite code for implement E/AS architecture
- component infrastructure
- own server program instead COBRA
- maintenance tools: CODB console and component manager
- base and example components
- autoupdate views
<<less
Download (0.060MB)
Added: 2005-11-15 License: GPL (GNU General Public License) Price:
1440 downloads
Global Assassin 2.0

Global Assassin 2.0


Global Assassin is a text-based action game. more>>
Global Assassin is a text-based action game.

The Global Assassin game is a multiplayer, shoot-em-up game set in the first person, and yet its text-based.

The year is 2035, and robots have taken over the Earth. Most humans died during the invasion or were forced to flee the planet. You are part of a small resistance that has managed to survive underground and is now prepared to strike back.

As a trained assassin, your objective is to return to the Earths surface, stealthily move through the worlds major cities, and systematically rid the planet of its invaders.

The details of the game are as follows.

The battlefield consists of 20 cities around the globe.

These cities have been connected for your mission by an ellaborate portal system.

Use the portals to move between cities as you search for and destroy the robots.

You are armed with a gun, bullets, and grenades.

To successfully strike an invader, you and your target must occupy the same city at the precise moment you attack.

You can lay a mine in a given city, and the very next player to enter that city trips the mine.

You remain alive as long as you have health points.

Over time, you automatically earn back health points, bullets, and grenades.

This is a multiplayer game. You may or may not be the only assassin on the planet!
<<less
Download (29.5MB)
Added: 2007-04-17 License: Freeware Price:
552 downloads
Global Menu 0.7.6

Global Menu 0.7.6


Global Menu Bar for GNOME more>>

Global Menu 0.7.6 offers you an excellent and useful product which is the globally-shared menu bar of all applications launched in your desktop session (A replacement of the old Mac-Menu package). This project introduces document-oriented concepts into GNOME, and improves GNOMEs respect for Fittss law. Most GTK applications work just fine with Global Menu. Global Menu replaces Mac Menubar for GNOME and Xfce.

Major Features:

  1. It works better with narrow windows, because the width of the menus isn't limited to the width of the window. (This is a problem for Gimp and Inkscape especially.)
  2. It's less confusing -- when two menu bars are visible on-screen at once, sometimes people choose the wrong one.
  3. Global Menu is the first step to move toward a Document Centric Desktop Environment ( ThoughtsOnADocumentCentricGnome ) which is a long-term trend in DEs.

Enhancements: Features many bug fixes.

Requirements: gtk+

<<less
Added: 2009-06-27 License: GPL Price: FREE
33 downloads
 
Other version of Global Menu
Global Menu 0.7.3Global Menu functions as a worldwide-shared menu bar of all applications which is launched in ...Global Menu 0.7.3 functions as a worldwide-shared menu bar of all applications
Price: FREE
License:GPL
Download
1 downloads
Added: 2009-02-04
Compiere ERP + CRM Business Solution 2.6.0a

Compiere ERP + CRM Business Solution 2.6.0a


Smart ERP+CRM solution for Small-Medium Enterprises in the global market covering all areas from order and customer management. more>> <<less
Download (35MB)
Added: 2006-11-05 License: MPL (Mozilla Public License) Price:
662 downloads
Global Village 0.0.5

Global Village 0.0.5


Global Village project can place a front-end, or graphical user interface onto the CLI interface of Xplanet. more>>
Global Village project is a gnome application designed to place a front-end, or graphical user interface onto the CLI interface of Xplanet, by Hari Nair.
Originally intended to create and update the desktop wallpaper in a gnome environment, showing a traditional rectangular projection of the planet Earth, the scope of the project has been expanded. Global Village now provides as many of the features of Xplanet as seem reasonable, and with the ability for plugins the scope is nearly limitless. But do take it with a grain of salt...
Current Status
Currently, Global Village is barely functional. It can be considered in the pre-alpha stage of development.
It can currently show a preview of the final image, and then display that image on the desktop at user specified intervals (in seconds), and has an icon in the notification area of the Gnome panel.
Plugins are semi-working, but undergoing a lot of change as I decide what they do adn dont need to be capable of. The idea is that plugins will manage all the extra features users require, like cloudmaps, marker and arc files.
Main features:
- Select a planet.
- Select a projection.
- Bodys North Type.
- Rotate the bodys North Pole
- The Zoom level
- The Suns glare
- Latitude and Longitude, which can be set as:
- North Pole
- South Pole
- Equator
- Random Latitude and Longitude
- Or any number of user configerable locations.
<<less
Download (1.3MB)
Added: 2007-03-27 License: GPL (GNU General Public License) Price:
945 downloads
MySQL Global User Variables UDF 1.0

MySQL Global User Variables UDF 1.0


MySQL Global User Variables UDF is a MySQL extension to store persistent variables. more>>
MySQL Global User Variables UDF is a MySQL extension to store persistent variables.

This shared library adds simple user functions to MySQL in order to keep persistent shared variables in memory. These variables and their values are available to all clients. Any data can be stored into these persistent variables, including BLOBs. Since updates are atomic and way faster than MEMORY tables, this is an easy and efficient way to handle counters and sequences.

Usage:

Storing a value

An unlimited number of user variables can be created, as long as memory is available.
The GLOBAL_STORE(, ) stores a new shared global variable.

Examples:

mysql> DO GLOBAL_STORE("online_users", 42);
mysql> DO GLOBAL_STORE("secret_key", "pajfUyfnd");

The GLOBAL_STORE() function always returns 1 unless an error occurred.

Fetching a value

Reading the value of a variable is the job of the GLOBAL_GET() function.
The value is returned, or NULL is the variable is undefined.

Example:

mysql> SELECT GLOBAL_GET("online_users;);
42

mysql> SELECT id FROM pxs WHERE secret_key = GLOBAL_GET("secret_key");
1

Atomic increments

A single function call can read the previous value, add an integer (that can be negative), and store the new value into the variable.

The function is GLOBAL_ADD(, ) and the return value is the new value of the variable.
Updates are always atomic, if the old value is 18 and you add 1, you will always get back 19.

Example:

mysql> DO GLOBAL_ADD("online_users", 1);
mysql> SELECT GLOBAL_ADD("online_users", -4);
39

If the value of a variable was a string, the new value is the increment:

mysql> SELECT GLOBAL_ADD("secret_key", 12);
12

Adding a value to an undefined variable returns NULL.
A handy variant is GLOBAL_ADDP(, ). GLOBAL_ADDP() is similar to GLOBAL_ADD() but returns the PREVIOUS value of the variable instead of the new one.

Example:

mysql> DO GLOBAL_SET("xxx", 10);
mysql> SELECT GLOBAL_ADDP("xxx", 1);
10
mysql> SELECT GLOBAL_ADDP("xxx", 1);
11

Installation:

On most systems, compiling and installing the library should be as simple as typing (as root):

make install

The shared library is installed as /usr/local/lib/udf_global_user_variables.so

If the base directory of your MySQL installation is not in /usr/local, just type:

make

and then copy udf_global_user_variables.so to the right location for UDFs on your system (maybe /usr/lib/).

The name of a variable is limited to 256 bytes. If that limit is too low for your specific application, just edit the MAX_NAME_LENGTH variable on top of the .c file and reinstall. Variable names can contain binary characters.

Values are limited to 65536 bytes. If that limit is too low for you, edit the MAX_VALUE_LENGTH variable and reinstall.
<<less
Download (0.004MB)
Added: 2007-03-19 License: GPL (GNU General Public License) Price:
951 downloads
Eureka Encryption Global Edition 6.0

Eureka Encryption Global Edition 6.0


Eureka Encryption Global Edition contains file encryption, multiple encryption, merge encryption and more. more>>
Eureka Encryption Global Edition contains file encryption, multiple encryption, merge encryption, multiple file encryption, embedded applications (Crypt Words, Steganographer, Interface) and other tools such as a file shredder and scrambler.

Eureka Encryption Global Edition is available for Windows, Mac and Linux. Other applications are available from the website.

<<less
Download (5.5MB)
Added: 2007-05-09 License: Freeware Price:
899 downloads
The Global File System 6.1pre21

The Global File System 6.1pre21


The Global File System a shared block file system for Linux. more>>
GFS (Global File System) is a cluster file system. It allows a cluster of computers to simultaneously use a block device that is shared between them (with FC, iSCSI, NBD, etc...). GFS reads and writes to the block device like a local filesystem, but also uses a lock module to allow the computers coordinate their I/O so filesystem consistency is maintained. One of the nifty features of GFS is perfect consistency -- changes made to the filesystem on one machine show up immediately on all other machines in the cluster.

GFS consists of a set of kernel patches and userspace programs.
The GFS lock module lock_dlm depends on CMAN and DLM.
The GFS lock module lock_gulm depends on GULM.
The GFS lock module lock_nolock depends on nothing.
Some GFS tools depend on the iddev library.

Building and Installing

1. build and install from cluster tree
cd cluster
./configure --kernel_src=/path/to/kernel
make; make install

- This builds and installs kernel modules, libraries and user programs.

- Kernel modules can also be built within the original kernel source tree by applying the kernel patches from cman-kernel/patches, dlm-kernel/patches and gfs-kernel/patches.

2. build device mapper user space
cd device-mapper
./configure
make; make install

3. build lvm2/clvm
cd LVM2
./configure --with-clvmd --with-cluster=shared
make; make install
LVM2/scripts/clvmd_fix_conf.sh /usr/lib

Load kernel modules

depmod -a
modprobe dm-mod
modprobe gfs
modprobe lock_dlm

Modules that should be loaded: lock_dlm, dlm, cman, gfs, lock_harness and dm-mod if device-mapper was built as a module.

Startup procedure

Run these commands on each cluster node:

> ccsd - Starts the CCS daemon
> cman_tool join - Joins the cluster
> fence_tool join - Joins the fence domain (starts fenced)
> clvmd - Starts the CLVM daemon
> vgchange -aly - Activates LVM volumes (locally)
> mount -t gfs /dev/vg/lvol /mnt - Mounts a GFS file system

Shutdown procedure

Run these commands on each cluster node:

> umount /mnt - Unmounts a GFS file system
> vgchange -aln - Deactivates LVM volumes (locally)
> killall clvmd - Stops the CLVM daemon
> fence_tool leave - Leaves the fence domain (stops fenced)
> cman_tool leave - Leaves the cluster
> killall ccsd - Stops the CCS daemon
<<less
Download (0.13MB)
Added: 2005-04-08 License: GPL (GNU General Public License) Price:
1663 downloads
Global Javadoc Viewer 1.8.2

Global Javadoc Viewer 1.8.2


Global Javadoc Viewer is a tiny application that allows you to conveniently browse multiple Javadoc sets simultaneously. more>>
Global Javadoc Viewer is a tiny application that allows you to conveniently browse multiple Javadoc sets simultaneously, using a single packages/classes hierarchy tree.

Global Javadoc Viewer pre-alfa version is not configurable, but useful, it allows to browse the next javadoc API sets:

- From the Internet: j2se 1.5, j2ee 1.4, hibernate and some others.
- From the local filesystem, in a UN*X box: all javadoc sets installed to the /usr/share/javadoc/ directory

<<less
Download (0.21MB)
Added: 2006-04-14 License: GPL (GNU General Public License) Price:
1290 downloads
PBXware SOHO 1.8.0

PBXware SOHO 1.8.0


PBXware is a scalable PBX solution. more>> PBXware is a scalable PBX solution featuring a range of traditional telephony and emerging VOIP technologies. The creation of national/global voice networks and a full range of PSTN and VOIP technologies is supported. Least cost routing, Enhanced Voicemail, ACD Queues, IVR Auto Attendants, Conference Bridges , Music on Hold and much more... a real cost saving in a fully featured PBX solution!
PBXware is delivered in CD, tarball, appliance or VPS formats each supporting an easy to use Setup Wizard allowing setup of a fully functional PBX in minutes. Administration is performed through included Web Interface or CLI. Auto updates, system backup, provider templates, call recordings, real time call monitoring are just some of advanced features included.
PBXware offers flexibility, performance, delivery methods, technologies, easy to use yet extremely advanced features not found at any competitors offerings. Should you found same features set elsewhere we would like to hear from you.
<<less
Download (700.00MB)
Added: 2009-04-09 License: Freeware Price: Free
205 downloads
Google Singleton Detector 0.7.2

Google Singleton Detector 0.7.2


Google Singleton Detector (GSD) is a tool which analyzes Java bytecode and detects the use of Singletons. more>>
Google Singleton Detector (GSD) is a tool which analyzes Java bytecode and detects the use of Singletons.

Its not quite as simple as that, however. First, GSD doesnt only detect singletons; it detects four different types of global state, including singletons, hingletons, mingletons and fingletons (see the usage section for descriptions).

Second, it outputs a graph with all these different types of static state highlighted, and shows all the classes that are directly dependent on them. The point of this tool is to allow you to see all of the uses of global state inside a project, as well as how they are all interrelated. Hopefully youll be able to locate global state that is heavily depended on and remove it.

But wait, why would I want to remove my global state and/or singletons? In a nutshell, because they can make testing difficult and hide problems with your design. Again, its more complicated than that, so check out the FAQ for more info.

Great, ready to get rid of some singletons? Head over to the downloads section to get the latest release, or checkout code from the SVN repository and build it yourself.
<<less
Download (0.063MB)
Added: 2007-07-27 License: The Apache License 2.0 Price:
819 downloads
GlobMoeSt 0.0.6

GlobMoeSt 0.0.6


GlobMoeSt means Global Motion eStimation. more>>
GlobMoeSt means Global Motion eStimation.

Currently, the program works by determining the global motion vectors between each two subsequent frames via an exhaustive search within a specified motion search range, which can tweaked depending on the input data.

Nonlinear motion is supported. Motion vectors can be saved to a file, allowing for speedier tinkering with options (like construction mode or cropping of input frames), after a first pass.

The image difference function can use different color spaces (RGB and YUV) and can be influenced via user supplied coefficients, which allows the user to assign different weightings to different color components.

After determining the best motion vectors, the image is assembled, using one of currently three modes, one of which tries to avoid any intra-frame motion, while another one blends areas in which frames overlap.

The blending mode is able to reduce (film or compression) noise (especially for animated content, when there is little to no intra-frame motion, but only global motion), and can give a (blurry) impression of movement in case of intra-frame motion (which may, or may not be wanted). It can also be used to blend pictures, without using the motion estimation component.

<<less
Download (0.026MB)
Added: 2005-12-12 License: GPL (GNU General Public License) Price:
1411 downloads
vars::global 0.0.1

vars::global 0.0.1


vars::global is a Perl module that tries to make global variables a little safer. more>>
vars::global is a Perl module that tries to make global variables a little safer.

SYNOPSIS

# In the place/package where we want to create globals
use vars::global create => qw( $foo @bar %baz );

# Add some more global symbols
vars::global->create(qw( $hello @world %now ));

# Somewhere else, where we need to access those globals
use vars::global qw( $foo @bar %baz );

# Dont try to use globals that do not exist
use vars::global qw( $Foo ); # typo, croaks
use vars::global qw( @inexistent ); # we dont create by default
# use create as above

# You can also import and create new globals
use vars::global qw( $foo %baz ), create => qw( $hey @joe );

# If youre lazy, you can import all the globals defined so far
use vars::global :all;

This module lets you define global variables and gain a slight advantage over blind use of package variables.

The global variables live inside the vars::global package, with the names given by the user. Where the advantage? Its two-fold:

there is an import mechanism that lets you access the global variable without the need to fully qualify its name (i.e. using $foo instead of $vars::global::foo);
the import mechanism ensures that you can import only the global variables that have been explicitly declared so far, which reduces the possibility of a typo.
If you have already "created" the global variable $foo, the import operation is equivalent to do:
*{__PACKAGE__ . ::foo} = $vars::global::foo;
that is, the package variable in the current package is made an alias for the global variable.

The anti-typo check is simply obtained by doing a check before the above import.
Typical usage is as follows:

creation

Early in the module or in the program you create variables prepending the create word, as follows:

use vars::global create => qw( $foo @bar %baz );

access

In the modules where you need to access a given global variable, you can import them very simply:

use vars::global qw( $foo %baz ); # I dont need @bar here ;)

The creation step above automatically imports all the new globals into the current package.

<<less
Download (0.007MB)
Added: 2007-01-11 License: Perl Artistic License Price:
1016 downloads
GNU-LINUX Tierra-UI NON GLOBAL MENU 0.0

GNU-LINUX Tierra-UI NON GLOBAL MENU 0.0


GNU-LINUX Tierra-UI NON GLOBAL MENU offers users a non global-menu version of the GNU-LINUX Tierra-UI theme. more>> <<less
Added: 2008-11-20 License: GPL Price: FREE
1 downloads
Warm 1.0

Warm 1.0


Warm is a GTK theme with sandy colors and a hint of sunset. more>>
Warm 1.0 is yet another nice theme for Linux users. It has sandy colors with a hint of sunset. This also includes a panel back ground for top and bottom panels and a wall paper that goes well with it.
<<less
Added: 2008-08-13 License: GPL Price: FREE
1 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5