Main > Free Download Search >

Free spelled same forward and backwards software for linux

spelled same forward and backwards

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 764
Port forward 1.4

Port forward 1.4


Port forward is a application which gives you the ability to open tunnes between your local computer and a remote ssh server. more>>
Port forward is a java application which gives you the ability to open tunnels between your local computer and a remote ssh server. With Port forward, tunnels can be created both local or remote.

Examples:

1. Open a local tunnel to reach a remote mysql database

- Your application needs to connect to a remote database server (mysql for example), but the database server (remote.server.example) is not configured to expose mysql to internet directly.
- Port forward will open a local port (3306) and redirect the connections to remote.server.example ssh server
- The remote.server.example ssh server will connect to its local mysql server

2. Open a local tunnel to use a remove VNC desktop

- You want to connect to your home computer which has a vnc server but from work, the firewall blocks vnc connections (generally on port 5901)
- If you have a ssh server at home, you could use it as bridge to connect to a client in your home:

Your position internet your linux ssh server ->>
-->> you client with vnc (192.168.0.40)

you office
internet >

3. Open a remote tunnel to pilot a remote linux server non reachable through internet
In this example, you will create a remote tunnel, this will give the remote man to connect to and reach you.

I used this example if I have to pilot a remote pc, but this pc has no static IP or is behind a firewall
The good solution is to activate port forward on the pc to be piloted and to connect it to a server we can access.


PC 1 (to be piloted) --||||-- firewall ----- internet ----- accessible-server

Installation:

Be sure java is in you classpath
tar zxvf portforward.tar.gz
cd portForward
sh run_linux.sh
<<less
Download (1.0MB)
Added: 2006-05-25 License: LGPL (GNU Lesser General Public License) Price:
1915 downloads
Script for NAT and more 02/02/01

Script for NAT and more 02/02/01


Script for NAT and more is an iptables firewall script. more>>
Script for NAT and more is an iptables firewall script.

Sample:

# Location of IPTables
FW="`whereis -b iptables | cut -d " " -f 2`"
# Interface Configuration
IF0="eth0"
IP0="`ifconfig $IF0 | grep inet | cut -d : -f 2 | cut -d -f 1`"
MASK0="`ifconfig $IF0 | grep Mask | cut -d : -f 4`"
LOCALNET="$IP0"
echo "IP: $LOCALNET/$MASK0"
# Inside Interface (Can be either eth1 or none)
IF1="eth1"
IP1="`ifconfig $IF1 | grep inet | cut -d : -f 2 | cut -d -f 1`"
MASK1="`ifconfig $IF1 | grep Mask | cut -d : -f 4`"
GWIP="$IP1"
echo "LAN Gateway: $GWIP/$MASK1"
if [ $IF1 != none ]; then
LAN="10.0.1.0/24"
HOST0="10.0.1.2"
HOST1="10.0.1.3"
fi
# Everyone
WORLD="0/0"

# Options
TOS=no
ICMP=yes

# Flush
$FW -F INPUT
$FW -F OUTPUT
$FW -F FORWARD
$FW -F -t nat
$FW -F -t mangle
$FW -F LOGDROP
# Policy
$FW -P INPUT DROP
$FW -P OUTPUT ACCEPT
$FW -P FORWARD ACCEPT

# Create Event Logging
if [ -z "`iptables -L | grep LOGDROP`" ]; then
$FW -N LOGDROP 2>/dev/null
fi
$FW -A LOGDROP -p TCP -j LOG --log-level info --log-prefix "TCP Drop "
$FW -A LOGDROP -p UDP -j LOG --log-level info --log-prefix "UDP Drop "
$FW -A LOGDROP -p ICMP -j LOG --log-level info --log-prefix "ICMP Drop "
$FW -A LOGDROP -f -j LOG --log-level emerg --log-prefix "FRAG Drop "
$FW -A LOGDROP -j DROP
echo "Event logging added"
# $FW -A INPUT -i eth0 -j LOG
# Avoid these from being logged (gets annoying)
# $FW -A INPUT -s $WORLD -p TCP --sport 6666:7000 -d $LOCALNET -j ACCEPT
# $FW -A INPUT -s 24.0.0.0/8 -p ALL -d $LOCALNET -j DROP

# LAN Configuration
# Dynamic IP
$FW -t nat -A POSTROUTING -o eth0 -j MASQUERADE
# Static IP
# $FW -t nat -A POSTROUTING -o $IF0 -s $LAN -j SNAT --to $LOCALNET
$FW -A FORWARD -o eth0 -j ACCEPT
$FW -A FORWARD -i eth0 -m state --state ESTABLISHED -j ACCEPT
$FW -A FORWARD -p TCP -s $WORLD --dport 137:139 -j DROP
$FW -A FORWARD -p UDP -s $WORLD --sport 137:139 -j DROP
# $FW -A FORWARD -p TCP --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 1
$FW -A INPUT -m state --state ESTABLISHED -j ACCEPT
# $FW -A OUTPUT -p TCP -s $LAN --syn -j ACCEPT
$FW -A INPUT -p TCP --tcp-flags ALL SYN,ACK -j ACCEPT
$FW -P FORWARD DROP
# Port Forwarding

##### Traffic via LAN
# $FW -t nat -A POSTROUTING -p TCP -o eth0 -s $LAN --sport 6667:7000 -j SNAT
# --to $LOCALNET:6666-7000
# FTP
$FW -t nat -A PREROUTING -d $LOCALNET -p TCP --dport 20 -j DNAT
--to $HOST0:20
$FW -t nat -A PREROUTING -d $LOCALNET -p TCP --dport 21 -j DNAT
--to $HOST0:21
# SSH
$FW -t nat -A PREROUTING -d $LOCALNET -p TCP --dport 22 -j DNAT
--to $HOST0:22
# Telnet (seperate system)
$FW -t nat -A PREROUTING -d $LOCALNET -p TCP --dport 23 -j DNAT
--to $HOST1:23
# WWW
$FW -t nat -A PREROUTING -d $LOCALNET -p TCP --dport 80 -j DNAT
--to $HOST0:80

# Type Of Services (iptables -m tos -h for information)
if [ $TOS = yes ]; then
$FW -t mangle -A OUTPUT -p TCP --dport 20 -j TOS --set-tos 8
$FW -t mangle -A OUTPUT -p TCP --dport 21 -j TOS --set-tos 16
$FW -t mangle -A OUTPUT -p TCP --dport 22 -j TOS --set-tos 16
$FW -t mangle -A OUTPUT -p TCP --dport 23 -j TOS --set-tos 16
$FW -t mangle -A OUTPUT -p TCP --dport 25 -j TOS --set-tos 16
$FW -t mangle -A OUTPUT -p TCP --dport 53 -j TOS --set-tos 16
$FW -t mangle -A OUTPUT -p TCP --dport 53 -j TOS --set-tos 16
$FW -t mangle -A OUTPUT -p TCP --dport 80 -j TOS --set-tos 8
##
$FW -t mangle -A PREROUTING -p TCP --dport 20 -j TOS --set-tos 8
$FW -t mangle -A PREROUTING -p TCP --dport 21 -j TOS --set-tos 16
$FW -t mangle -A PREROUTING -p TCP --dport 22 -j TOS --set-tos 16
$FW -t mangle -A PREROUTING -p TCP --dport 23 -j TOS --set-tos 16
$FW -t mangle -A PREROUTING -p UDP --dport 25 -j TOS --set-tos 16
$FW -t mangle -A PREROUTING -p UDP --dport 53 -j TOS --set-tos 16
$FW -t mangle -A PREROUTING -p UDP --dport 53 -j TOS --set-tos 16
$FW -t mangle -A PREROUTING -p TCP --dport 80 -j TOS --set-tos 8
fi

# Permit full access from LAN
$FW -A INPUT -s $LAN -p TCP -d $LOCALNET --dport 20: -j ACCEPT
$FW -A INPUT -s $LAN -p UDP -d $LOCALNET --sport 20: -j ACCEPT
$FW -A INPUT -s $LAN -p TCP -d $GWIP --dport 20: -j ACCEPT
$FW -A INPUT -s $LAN -p UDP -d $GWIP --sport 20: -j ACCEPT

##### Traffic via local system
# Permit Identd (Local machine)
$FW -A INPUT -s $WORLD -d $LOCALNET -p TCP --dport 113 -j ACCEPT
# Permit ICMP response
if [ $ICMP = yes ]; then
$FW -A OUTPUT -s $LOCALNET -d $WORLD -o $IF0 -p ICMP -j ACCEPT
$FW -A INPUT -s $WORLD -d $LOCALNET -i $IF0 -p ICMP -j ACCEPT
fi
<<less
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
982 downloads
spell-karamba 0.2

spell-karamba 0.2


spell-karamba is a desktop applet for SuperKaramba that spells the typed words - letter by letter. more>>
spell-karamba is a desktop applet for SuperKaramba that spells the typed words - letter by letter.

You can choose from deutsch, english, american, international and NATO spelling.

Installation:

Actually the installation is pretty easy:

Copy all files from the tarball into a new folder. A good choice would be $HOME/kde3/share/apps/superkaramba/themes/dwd. Thats all. You start the theme from a shell by "superkaramba spell.theme". If you have a superkaramba theme running already its even simpler. Right-click the open theme and select superkaramba - manage themes.

From there you can search for the .theme-file. Do not open any other file with the superkaramba application.

<<less
Download (0.017MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1206 downloads
D frontend for GCC 0.23

D frontend for GCC 0.23


D is a high-level language derived from C and C++ but is not backwards-compatible with either. more>>
D is a high-level language derived from C and C++ but is not backwards-compatible with either. GDC is a frontend for D written for GCC.
Supported Systems:
GCC 3.3.x, 3.4.x, 4.0.x
Linux (tested on Red Hat 7.2, 8)
Mac OS X 10.3.x, 10.4.x
FreeBSD 5.2.1
Cygwin
MinGW
AIX (tested on 5.1)
Similar versions should work and other Unix platforms may work. Although the compiler will probably work on most 32-bit architectures, the D runtime library will still need to be updated to support them.
Enhancements:
- Support for 64-bit targets was added.
- Multilib support was added.
- DMD was updated to 1.007.
- Minor bugs were fixed.
<<less
Download (1.1MB)
Added: 2007-03-08 License: GPL (GNU General Public License) Price:
962 downloads
NAT and blocking all but Port 22 1.0

NAT and blocking all but Port 22 1.0


NAT and blocking all but Port 22 is a simple iptables firewall script. more>>
NAT and blocking all but Port 22 is a simple iptables firewall script.

Sample:

# Internal and External Devices
dev_world=ppp0
dev_int=eth0

# Firewall IP
addr_int=192.168.1.1

# Internal Net
net_int=192.168.1.0/24

###################################################
# Load Modules
insmod ip_tables
insmod ip_conntrack
insmod ip_conntrack_ftp
insmod ipt_state
insmod iptable_nat
insmod ipt_MASQUERADE

###################################################
# Delete all Rules in Filtertable
iptables -F

###################################################
# Define new chains
iptables -N BLOCK
iptables -N EXT-INT
iptables -N INT-EXT
iptables -N ICMP-DENY
iptables -N INT-IF
iptables -N EXT-IF

###################################################

iptables -A BLOCK -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A BLOCK -m state --state NEW -i ! $dev_world -j ACCEPT
iptables -A BLOCK -j DROP

iptables -A INPUT -j BLOCK
iptables -A FORWARD -j BLOCK

###################################################
# Point to chains
iptables -A INPUT -i lo -j ACCEPT
iptables -A INPUT -i $dev_int -s $net_int -j INT-IF
iptables -A INPUT -d ! $addr_int -i $dev_world -s ! $net_int -j EXT-IF
iptables -A INPUT -j DROP

iptables -A FORWARD -d ! $net_int -i $dev_world -s $net_int -j INT-EXT
iptables -A FORWARD -d $net_int -i $dev_int -s ! $net_int -j EXT-INT
iptables -A FORWARD -j DROP

iptables -A OUTPUT -j ACCEPT

###################################################
# Chain Rules
iptables -A EXT-INT -j DROP

iptables -A EXT-IF -i ! $dev_world -j DROP
iptables -A EXT-IF -p tcp --dport 22 -j ACCEPT
iptables -A EXT-IF -p tcp --dport 5901 -j ACCEPT
iptables -A EXT-IF -p tcp --dport 1024: -j ACCEPT
iptables -A EXT-IF -p udp --dport 1024: -j ACCEPT
iptables -A EXT-IF -j DROP

iptables -A INT-IF -j ACCEPT

###################################################
# NAT Rules
# Standard Routing
iptables -A POSTROUTING -t nat -o $dev_world -j MASQUERADE -s $net_int

# Port Forwarding
#iptables -A PREROUTING -t nat -p tcp -d 192.168.1.1 --dport 5901 --to 192.168.1.2:5901 -j DNAT

##################################################
# Enable IP-Forwarding
echo 1 > /proc/sys/net/ipv4/ip_forward)
<<less
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
985 downloads
Forwards H3 3.0.1

Forwards H3 3.0.1


Forwards is a Horde module for setting user e-mail forwards with support for several popular mailers. more>>
Forwards is a Horde module for setting user e-mail forwards with support for several popular mailers.
While it has been released and is in production use at many sites, Forwards project is also still under development in an effort to expand and improve the module.
Right now, Forwards provides fairly complete support for setting .forward style forwards on Sendmail, Courier, or Qmail mail based systems via an FTP transport. It now also has drivers for Mdaemon, Exim SQL, Exim LDAP, Custom SQL, and SOAP based systems.
Forwards is part of a suite of account management modules for Horde consisting of Accounts, Forwards, Passwd, and Vacation.
Enhancements:
- The license has been switched a BSD-like license.
- A Russian translation was added and the German and Traditional Chinese translations were updated.
<<less
Download (0.65MB)
Added: 2007-03-15 License: Artistic License Price:
954 downloads
Faroese Spell Checking Dictionary 0.2.30

Faroese Spell Checking Dictionary 0.2.30


Faroese Spell Checking Dictionary is intended to be used with programs like aspell and ispell. more>>
Faroese Spell Checking Dictionary is intended to be used with programs like aspell and ispell.
Installation:
After unpacking this package you can use it at least four ways:
Make and install a Faroese dictionary for aspell:
$ make aspell && su -c "make install-aspell"
Make and install a Faroese dictionary for ispell:
$ make ispell && su -c "make install-ispell"
Make and install Faroese dictionaries for aspell and ispell in a single run:
$ make all && su -c "make install"
Make a plain text list of Faroese words:
$ make words
Enhancements:
- Some words were added and some misspellings were removed.
<<less
Download (0.23MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
808 downloads
New Driver and Tools 1.3 Beta

New Driver and Tools 1.3 Beta


New Driver and Tools is a SuperKaramba theme that displays the latest version of drivers and of some tools. more>>
New Driver and Tools is a SuperKaramba theme that displays the latest version of drivers and of some tools.

By clicking on the globe youll get on the homepage of the driver/tool.

(The wine homepage was not reachable at the time I took the screen)

Im looking forward for your feedback.

<<less
Download (0.029MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
942 downloads
Stratos PHP Framework 1.0 RC1

Stratos PHP Framework 1.0 RC1


Stratos PHP Framework is an open-source, object-oriented web application framework. more>>
Stratos PHP Framework is an open-source, object-oriented web application framework that facilitates the rapid development of well-organized, secure, and maintainable PHP web applications. Stratos PHP Framework frees you from working on tedious, routine tasks, and allows you to focus on specific software requirements.
Main features:
Minimal Configuration
- The Stratos Framework is completely configurable from the web using the Developers Toolkit. This means you can spend less time getting set up and more time developing your applications.
- Object-Relational Mapping
- Using the StratosData plugin, you can easily map SQL tables to data objects. StratosData allows you to access Oracle, MySQL, SQL Server, SQLite, and other databases without writing any SQL statements!
Scaffolding
- Stratos can automatically generate CRUD (Create, Retrieve, Update, Delete) interfaces for your tables. This means you can kick-start your application by generating default actions and views for manipulating your data. The generated actions and views can then be modified to meet your specific needs.
Define Views in PHP
- Stratos does not require you to learn a separate templating language in order to define your views. All views are created using PHP by default, so there is no need to learn a separate syntax and introduce additional overhead for the sole purpose of creating a view.
Compatibility
- Stratos is compatible with both PHP4 and PHP5. This means that your applications will run on the majority of web hosts. Stratos has been thoroughly tested on a variety of operating systems and databases.
Performance
- Stratos was designed from the ground up to be fast. The framework has built-in caching capabilities that you can easily utilize from within your applications. When using the StratosData plugin, you can speed up your applications even further by caching database information to disk.
Ease of use
- Unlike many frameworks, Stratos does not have a steep learning curve. Its easy to get started developing web applications using Stratos. Simply download the latest release, install Stratos on your server, and create an application!
Enhancements:
- This release includes major updates and a handful of new features, bugfixes, and performance enhancements.
- Enhancements include an improved approach to creating action controllers, simplified data objects, data object event functions, automatic data object validation, complete removal of the XML config files, improvements to the plugin architecture, and a new look-and-feel for the Stratos control panel.
- Stratos 1.0rc1 is not backwards compatible with 0.93.
- This release begins the 1.0 branch, and all future development on the 1.0 branch will be backwards compatible with this release.
<<less
Download (2.0MB)
Added: 2007-08-04 License: BSD License Price:
813 downloads
HTTPManifold 0.9b

HTTPManifold 0.9b


HTTPManifold is an application for tunnelling Web/HTTP traffic for multiple servers through a single IP address. more>>
HTTPManifold is an application for tunnelling Web/HTTP traffic for multiple servers through a single IP address (a reverse proxy). HTTPManifold is intended for home users and small businesses so that they can host multiple domains and sub-domains through a single IP address on port 80.
HTTPManifold forwards traffic to other machines, logs requests, and rewrites content during the process. It can also log the raw content of requests for the purpose of debugging Web services, etc. It provides a Web interface for configuration and log viewing with some log analysis capabilities.
Main features:
- Ability to service HTTP request on any port.
- Allow SSL connections and therefore provide HTTPS to server that otherwise dont support it.
- Forward HTTP requests to any IP address on any port using HTTP or HTTPS.
- Rewrite HTTP headers and body during forward translation.
- Log raw HTTP request and response bytes for debugging purposes.
- Serve static HTML pages.
- Provide web interface to HTTPManifold configuration options.
Enhancements:
- This release adds the ability to forward requests to a sub-path on a destination server.
- It adds options to do simple string replacement when processing response content.
- The appearance of the Web interface has been updated.
- HSQLDB support has been added for enhanced request logging.
- X-forwarded-for header support has been added so that destination servers can see the source IP address.
- Some of the forwarding implementation has been touched up to improve performance and fix small defects.
<<less
Download (0.31MB)
Added: 2006-09-05 License: AFPL (Aladdin Free Public License) Price:
1144 downloads
Ledger 2.6

Ledger 2.6


Ledger is a command-line accounting program which uses a simple text file as a ledger. more>>
Ledger is an accounting tool with the moxie to exist. Ledger provides no bells or whistles, and returns the user to the days before user interfaces were even a twinkling in their fathers CRT.
What it does offer is a double-entry accounting ledger with all the flexibility and muscle of its modern day cousins, without any of the fat. Think of it as the Bran Muffin of accounting tools.
Enhancements:
- The most significant change is full support for "lot sales" transactions, such as buying a lot of stock shares at one price, then selling that exact lot later for another price.
- There have been many bugfixes, as well as improvements in the parser.
- Ledger remains 100% backwards compatible.
- Many of the new features are not yet documented, as the manual is being rewritten for the upcoming 3.0 release.
- Therefore, most users should consider this a maintenance release.
<<less
Download (0.60MB)
Added: 2007-04-13 License: Public Domain Price:
930 downloads
uspell 0.1

uspell 0.1


uspell project is a spelling tester/teacher for elementary school. more>>
uspell project is a spelling tester/teacher for elementary school.

uspell is a sound-card based spelling tester.

The words to be spelled are spoken aloud by the computers sound hardware and the user is then prompted to spell the word via the keyboard.

To set up the rewards: make a directory, call it $base. Then "uspell -set $base", and dictate congratulatory statements for reward1 .. reward9 (or fewer).

I suggest parents or teacher perform this step, so the voice for the reward is not the same as the voice for the words. My list of rewards is pretty simple ("Hooray", "Good job", "Congratulations", "Atta-boy"). A final closing remark (like "You did it, thats the end") can be put in $base/reward-end.raw. Configure $base below to match your choice $base.

I expect the child him/her self to dictate the spelling words. "uspell -set unit_name", and it will give instructions from there. It may take some practice to
pause the right amount of time between hitting and saying the word. A *nix guru may be helpful cleaning up messes.

I expect the child himself/herself to dictate the words, and someone else to dictate the rewards, so there is an additional distinction between the words to type, and the rewards.

<<less
Download (0.005MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1090 downloads
Fantasdic 1.0 Beta 3

Fantasdic 1.0 Beta 3


Fantasdic is a client for the DICT protocol. more>>
Fantasdic is a client for the DICT protocol.
Main features:
- Can use multiple servers at the same time and filter databases.
- Includes a simple vocabulary learning tool.
- Scans clipboard.
- Keeps an history of searched words so you can go back and go forward easily.
- Supports i18n.
<<less
Download (0.093MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
817 downloads
DragonFly BSD 1.10.1

DragonFly BSD 1.10.1


DragonFly is an operating system and environment designed to be the logical continuation of the FreeBSD-4.x OS series. more>>
DragonFly is an Linux operating system and environment designed to be the logical continuation of the FreeBSD-4.x OS series. These operating systems belong in the same class as Linux in that they are based on UNIX ideals and APIs. DragonFly is a fork in the path, so to speak, giving the BSD base an opportunity to grow in an entirely new direction from the one taken in the FreeBSD-5 series.

It is our belief that the correct choice of features and algorithms can yield the potential for excellent scalability, robustness, and debuggability in a number of broad system categories. Not just for SMP or NUMA, but for everything from a single-node UP system to a massively clustered system. It is our belief that a fairly simple but wide-ranging set of goals will lay the groundwork for future growth.

The existing BSD cores, including FreeBSD-5, are still primarily based on models which could at best be called strained as they are applied to modern systems. The true innovation has given way to basically just laying on hacks to add features, such as encrypted disks and security layering that in a better environment could be developed at far less cost and with far greater flexibility.

We also believe that it is important to provide API solutions which allow reasonable backwards and forwards version compatibility, at least between userland and the kernel, in a mix-and-match environment. If one considers the situation from the ultimate in clustering... secure anonymous system clustering over the internet, the necessity of having properly specified APIs becomes apparent.

Finally, we believe that a fully integrated and feature-full upgrade mechanism should exist to allow end users and system operators of all walks of life to easily maintain their systems. Debian Linux has shown us the way, but it is possible to do better.

DragonFly is going to be a multi-year project at the very least. Achieving our goal set will require a great deal of groundwork just to reposition existing mechanisms to fit the new models. The goals link will take you to a more detailed description of what we hope to accomplish.

1.2.0 is our second major DragonFly release and the first one which we have created a separate CVS branch for. DragonFlys policy is to only commit bug fixes to release branches.

This release represents a significant milestone in our efforts to improve the kernel infrastructure. DragonFly is still running under the Big Giant Lock, but this will probably be the last release where that is the case.

The greatest progress has been made in the network subsystem. The TCP stack is now almost fully threaded (and will likely be the first subsystem we remove the BGL from in coming months). The TCP stack now fully supports the SACK protocol and a large number of bug and performance fixes have gone in, especially in regard to GigE performance over LANs.

The namecache has been completely rewritten and is now considered to be production-ready with this release. The rewrite will greatly simplify future filesystem work and is a necessary precursor for our ultimate goal of creating a clusterable OS.

This will be last release that uses GCC 2.95.x as the default compiler. Both GCC 3.4.x and GCC 2.95.x are supported in this release through the use of the CCVER environment variable (gcc2 or gcc34). GCC 2.95.x is to be retired soon due to its lack of TLS support. The current development branch will soon start depending heavily on TLS support and __thread both within the kernel and in libc and other libraries. This release fully supports TLS segments for programs compiled with gcc-3.4.x.

It goes without saying that this release is far more stable then our 1.0A release. A huge number of bug fixes, performance improvements, and design changes have been made since the 1.0A release.
<<less
Download (112MB)
Added: 2007-08-21 License: BSD License Price:
796 downloads
Gemu News 1.0

Gemu News 1.0


Gemu News is a SuperKaramba theme that displays the latest version of compatibility layers like wine. more>>
Gemu News is a SuperKaramba theme that displays the latest version of compatibility layers like wine and the latest version of emulators like dosbox. The version of xqf is also listend.

By clicking on the globe youll get on the homepage of the driver/tool.

Im looking forward for your feedback.

<<less
Download (0.022MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
935 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5