Main > Free Download Search >

Free sim slots software for linux

sim slots

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 105
Flash-Slots 2

Flash-Slots 2


Experience the most popular casino games in the world on the web with Online-Casino.coms online slot games. From the classic slots to the progressiv... more>> <<less
Download (1110KB)
Added: 2009-04-14 License: Freeware Price: Free
225 downloads
T-Sim 0.1

T-Sim 0.1


T-Sim project is an early version of a helicopter simulator for GNU/Linux. more>>
T-Sim project is an early version of a helicopter simulator for GNU/Linux.

It already has random terrain generation, a 3D cockpit view with working instruments and an external view. The flight model, however, is still very simplistic.

Keys

N increase throttle
B decrease throttle
V move collective up
C move collective down
W push left pedal
X push right pedal
Up Arrow move cyclic forward
Down Arrow move cyclic backward
Left Arrow move cyclic left
Right Arrow move cyclic right
F10 cockpit view
F11 instrument view
F12 external view
F1 look left
F2 look right
F3 look up
F4 look down
F5 zoom out (external view only)
F6 zoom in (external view only)
A drag helicopter to the right
Z drag helicopter to the left
E drag helicopter up
R drag helicopter down
T drag helicopter backward
Y drag helicopter forward
Enter exit

<<less
Download (0.041MB)
Added: 2007-05-06 License: GPL (GNU General Public License) Price:
904 downloads
GPC-Slots 2 0.3.2

GPC-Slots 2 0.3.2


GPC-Slots 2 is a more advanced GPC-Slots. more>>
GPC-Slots 2 is a more advanced GPC-Slots.
NOTE: Run in Gnome-Terminal with Linux Colors set as the color scheme or the Console for the sake of perty colors (Xterm uses a diffrent color scheme that looks less good IMHO for some unknown reason) (gpcslots2 --gnome-terminal). Alternatively, KDEs konsole can be used (gpcslots2 --konsole).
NOTE: entering "a" at the slot macines will execute the previous command again.
Main features:
- 5 slot machines
- Progressive jackpot added to by all machines
- 2 roulette games
- 2 dice games
- Status print out to HTML
Enhancements:
- html status output graph improvements.
- new ways to bet in roulette game
<<less
Download (0.62MB)
Added: 2006-09-26 License: GPL (GNU General Public License) Price:
1137 downloads
SIM Instant Messenger 0.9.4.3

SIM Instant Messenger 0.9.4.3


SIM Instant Messenger provides an plugins-based instant messenger with support for various protocols. more>>
SIM Instant Messenger provides an plugins-based instant messenger with support for various protocols.
Based on the Qt library it works on X11 (optional with KDE-support), MS Windows and MacOS X.
Main modules
- Core (_core) is the program interface
- Migrate (__migrate) Converts the old SIM 0.8.3-settings to the new 0.9x format
- Homedir (__homedir) sets the configuration-directory
Protocols modules
All protocols support richtext-messages, file transfer, typing notification, server-side contact list (with postponed synchronization - you can change contact list in offline mode and after log on all changes will be synchronized with server), new account registration, various searches and HTTP-polling.
You can use multiple accounts for each protocol.
- Oscar - ICQ and AIM support
- Jabber
- LiveJournal
- MSN
- Yahoo!
Enhancements:
Build system
- Autotools: fix libXss detection.
- Add initial CMake support.
Core
- Disable history filter when it is empty.
- Remove "To container" menu when separate containers are disabled.
- Auto scroll message view only if it is scrolled to the bottom.
- XFree: fix problems with Composite extension enabled.
ICQ plugin
- More fixes for receiving certain messages.
<<less
Download (MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
979 downloads
monosim 1.3.0

monosim 1.3.0


monosim application helps you read, write, update and delete the phone numbers on your sim card. more>>
monosim application helps you read, write, update and delete the phone numbers on your sim card, simply using a standard PCSC smartcard reader (like towitoko, acs, etc.).

It work fine on all OS where is present MONO framework (http://www.mono-project.com).

It use GTK# for GUI (graphic user interface).

<<less
Download (0.033MB)
Added: 2007-07-04 License: GPL (GNU General Public License) Price:
843 downloads
GLRCSIM 0.0.1

GLRCSIM 0.0.1


GLRCSIM project is an OpenGL Radio controlled flight sim. more>>
GLRCSIM project is an OpenGL Radio controlled flight sim.
GLRCSIM is a flight simulator for radio controlled models. It is aimed at slope soaring, where unpowered models glide on the breeze.
Enhancements:
- The initial release of a radio controlled plane simulator for OpenGL on Linux.
- Works best with OpenGL acceleration and has only been tested on XFree 4.0 using the NVidia TNT drivers.
- It doesnt fly like a real plane, but just heads in the direction you point it in.
<<less
Download (0.029MB)
Added: 2006-11-20 License: GPL (GNU General Public License) Price:
1069 downloads
The SlotSig library 1.0.0

The SlotSig library 1.0.0


The SlotSig library is a library that provides type-safe connections between C++ classes. more>>
The SlotSig library is a library that provides type-safe connections between C++ classes.
When programming in C, its usual to use callback functions (moreover when you do GUI stuffs). In C++, we prefer to encapsulate things into classes, and usually we want a rather type-safety.
This small library attempt to provide an easy-to-use, type-safe, C++-friendly solution to the problem. The idea is to define slots, either as global functions or member methods, that will be called when some signals are emitted The signals and slots do not need to really know about each other, only a pointer and a compatible signature is required.
Inconsistent connections (when return type or parameters do not match) should be detected at compile-time.
If youve heard about the Qt, libsigc++, Sigslot or boost libraries, or any other Im not aware of (if this is the case, let me know !), maybe you wonder why yet another signals lib. Here are the main reasons :
- Qts system needs a preprocessor (called moc, for Meta-Object Compiler) that will produce additionnal code to enable the connections and handle the signal emitting ; its quite simple to use, but you cant use templates on signal/slot-enabled classes, and inconsistencies are not detected at compile time but at runtime ;
- I found libsig++ a great thing, but a little bit to complex to use, and I dislike some casts done into it ; I also dislike the fact that a function (or method) connected twice will be called twice when emitting the signal ;
- Boost is fine, but to use the signals module you also need a rather large part of the whole lib ; theres nothing really wrong with that, I just wanted something smaller â and easier to use ;
- It was fun to code, and because I did it, I find SlotSig the simplest signal/slot library available.
Enhancements:
- Incorporated the Makefile from Leopold Palomo-Avellaneda, to generate a global shared library containing the very small amount of static code.
- Updated benchmarks. The 1.x versions of SlotSig will remain binary-compatible. No major new feature is expected, mainly cosmetic changes and bugfixes. The main line of development will be done in a 1.99.x branch, maybe leading someday to a 2.0 version.
<<less
Download (0.15MB)
Added: 2006-04-17 License: GPL (GNU General Public License) Price:
1286 downloads
Simulation::Sensitivity 0.11

Simulation::Sensitivity 0.11


Simulation::Sensitivity is a general-purpose sensitivity analysis tool for user-supplied calculations and parameters. more>>
Simulation::Sensitivity is a general-purpose sensitivity analysis tool for user-supplied calculations and parameters.

SYNOPSIS

use Simulation::Sensitivity;
$sim = Simulation::Sensitiviy->new(
calculation => sub { my $p = shift; return $p->{alpha} + $p->{beta} }
parameters => { alpha => 1.1, beta => 0.2 },
delta => 0.1 );
$result = $sim->run;
print $sim->text_report($result);

Simulation::Sensitivity is a general-purpose sensitivity analysis tool. Given a user-written calculating function, a "base-case" of parameters, and a requested input sensitivity delta, this module will carry out a sensitivity analysis, capturing the output of the calculating function while varying each parameter positively and negatively by the specified delta. The module also produces a simple text report showing the percentage impact of each parameter upon the output.

The user-written calculating function must follow a standard form, but may make any type of computations so long as the form is satisfied. It must take a single argument -- a hash reference of parameters for use in the calculation. It must return a single, numerical result.

CONSTRUCTORS

new

my $sim = Simulation::Sensitivity->new(
calculation => sub { my $p = shift; return $p->{alpha} + $p->{beta} }
parameters => { alpha => 1.1, beta => 0.2 },
delta => 0.1 );

new takes as its argument a hash with three required parameters. calculation must be a reference to a subroutine and is used for calculation. It must adhere to the usage guidelines above for such functions. parameters must be a reference to a hash that represents the initial starting parameters for the calculation. delta is a percentage that each parameter will be pertubed by during the analysis. Percentages should be expressed as a decimal (0.1 to indicate 10%).

As a constructor, new returns a Simulation::Sensitivity object.

<<less
Download (0.014MB)
Added: 2007-01-16 License: Perl Artistic License Price:
1019 downloads
OS-SIM 0.9.9 RC5

OS-SIM 0.9.9 RC5


Ossim stands for Open Source Security Information Management. more>>
Ossim stands for Open Source Security Information Management. OS-SIMs goal is to provide a comprehensive compilation of tools which, when working together, grant a network/security administrator with detailed view over each and every aspect of his networks/hosts/physical access devices/server/etc...
Besides getting the best out of well known open source tools, some of which are quickly described below these lines, ossim provides a strong correlation engine, detailed low, mid and high level visualization interfaces as well as reporting and incident managing tools, working on a set of defined assets such as hosts, networks, groups and services.
All this information can be limited by network or sensor in order to provide just the needed information to specific users allowing for a fine grained multi-user security environment. Also, the ability to act as an IPS (Intrusion Prevention System) based on correlated information from virtually any source result in a useful addition to any security professional.
Main features:
- Arpwatch, used for mac anomaly detection.
- P0f, used for passive OS detection and os change analisys.
- Pads, used for service anomaly detection.
- Nessus, used for vulnerability assessment and for cross correlation (IDS vs Security Scanner).
- Snort, the IDS, also used for cross correlation with nessus.
- Spade, the statistical packet anomaly detection engine. Used to gain knowledge about attacks without signature.
- Tcptrack, used for session data information which can grant useful information for attack correlation.
- Ntop, which builds an impressive network information database from which we can get aberrant behaviour anomaly detection.
- Nagios. Being fed from the host asset database it monitors host and service availability information.
- Osiris, a great HIDS.
<<less
Download (3.8MB)
Added: 2007-08-09 License: BSD License Price:
812 downloads
Megaupload SX 3.2

Megaupload SX 3.2


Megaupload SX is a Fierfox extension that offers free slots from Megaupload for other countries else United States. more>>
Megaupload SX is a Firefox extension that offers free slots from Megaupload for other countries else United States.

Works on Megaupload and Sexuploader (Megarotic). It is working just perfect. Its very easy to use. Turn it on to click in a megaupload link and turn it off later the download has started.

Problems like links that doesnt exist anymore I cant solve.

I wish you guys good luck and enjoy. Thanks for using my extension. I would apreciate some good rating by those who liked the extension.

<<less
Download (0.010MB)
Added: 2007-07-16 License: MPL (Mozilla Public License) Price:
1432 downloads
WordNet::Similarity 1.04

WordNet::Similarity 1.04


WordNet::Similarity is a collection of Perl modules for computing measures of semantic relatedness. more>>
WordNet::Similarity is a collection of Perl modules for computing measures of semantic relatedness.

SYNOPSIS

Basic Usage Example

use WordNet::QueryData;

use WordNet::Similarity::path;

my $wn = WordNet::QueryData->new;

my $measure = WordNet::Similarity::path->new ($wn);

my $value = $measure->getRelatedness("car#n#1", "bus#n#2");

my ($error, $errorString) = $measure->getError();

die $errorString if $error;

print "car (sense 1) bus (sense 2) = $valuen";

Using a configuration file to initialize the measure

use WordNet::Similarity::path;

my $sim = WordNet::Similarity::path->new($wn, "mypath.cfg");

my $value = $sim->getRelatedness("dog#n#1", "cat#n#1");

($error, $errorString) = $sim->getError();

die $errorString if $error;

print "dog (sense 1) cat (sense 1) = $valuen";

Printing traces

print "Trace String -> ".($sim->getTraceString())."n";

Introduction

We observe that humans find it extremely easy to say if two words are related and if one word is more related to a given word than another. For example, if we come across two words, car and bicycle, we know they are related as both are means of transport. Also, we easily observe that bicycle is more related to car than fork is. But is there some way to assign a quantitative value to this relatedness? Some ideas have been put forth by researchers to quantify the concept of relatedness of words, with encouraging results.

Eight of these different measures of relatedness have been implemented in this software package. A simple edge counting measure and a random measure have also been provided. These measures rely heavily on the vast store of knowledge available in the online electronic dictionary -- WordNet. So, we use a Perl interface for WordNet called WordNet::QueryData to make it easier for us to access WordNet. The modules in this package REQUIRE that the WordNet::QueryData module be installed on the system before these modules are installed.

<<less
Download (0.63MB)
Added: 2007-02-28 License: Perl Artistic License Price:
968 downloads
gsmlib 1.10

gsmlib 1.10


GSMLIB is a library to access GSM mobile phones through GSM modems. more>>
GSMLIB is a library to access GSM mobile phones through GSM modems. Additionally, some simple command line programs are provided to use these functionalities.
The software works under Linux (tested with Redhat Linux 6.1 and 7.0) and Win32 (experimental, tested with Windows95 and Windows NT4.0).
Main features:
- modification of phonebooks stored in the mobile phone or on the SIM card
- reading and writing of SMS messages stored in the mobile phone
- sending and reception of SMS messages
<<less
Download (0.46MB)
Added: 2006-07-17 License: GPL (GNU General Public License) Price:
1200 downloads
climm 0.6.4

climm 0.6.4


A very portable text-mode ICQ clone. more>>
climm 0.6.4 provides you a professional and very portable text-mode ICQ clone which is designed to compile under Linux, BSD, AIX, HPUX, Windows, AmigaOS and with restrictions BeOS. Originally written by Matthew D. Smith, a great part of climm has been rewritten by Rdiger Kuhlmann, in particular the support for the new version 8 of the OSCAR protocol that became necessary, the internationalization, the file transfer and some restructuring of the code.

Major Features:

  1. Login: login with both the old v6 and the new v8 protocol
  2. Register: register new uins and setup configuration with an easy to use setup wizard
  3. Password: changing password
  4. Reconnect: reconnects when kicked by server
  5. Contact list: complete contact list with several ways for a concise display of online/offline users
  6. Status: set status arbitrarily
  7. Messages: send and receive messages and urls
  8. Acknowledged messages: send ackowledged messages to clients who understand them
  9. UTF-8 encoded messages: send UTF-8 encoded messages to clients who understand them
  10. sms: send SMS to users cell phone
  11. User info: request and update all user and personal information
  12. Search: easy search command, can search by (nearly) any information
  13. Visibility: be visible to certain users even when invisible, or be invisible to certain users at any time
  14. Ignore: ignore certain users completely
  15. Chat group: request user from interest group and set owns interest group
  16. Events: can beep or execute arbitrary commands when other users go online, offline or send a message.
  17. Connections: can show a users connection info and last seen online time
  18. Peek: check whether someone is offline or just invisible
  19. tcp: full support of v8 direct connections
  20. SSL: supports SSL encrypted connections a la licq
  21. Tcl: supports scripting via the Tcl scripting language
  22. File transfer: full support of sending/receiving v6,v7,v8 (batch) file transfers
  23. Auto messages: auto replys if away, request and send auto messages
  24. Identification: recognizes climm/mICQ, licq, Miranda, StrICQ, &RQ, alicq, SIM, Kopete, vICQ including version number, and YSM, libicq2000-based, ICQ 2001, ICQ 2002, Trillian, ICQ2go, ICQ Lite, partially ICQ 2000
  25. History: writes a log of all messages to and from a user
  26. Debugging: easy debugging by selecting what data to display, including concise packet monitor
  27. i18n: translations include English, German, Serbian, Portuguese, Ukrainian, Japanese, partially Russian, French, Spanish, Romanian, Italian.
  28. Transcoding: transcode texts for Russian and Japanese users.
  29. Birthday flag: show if it is users birthday
  30. Socks5: supports connections via socks5

Enhancements:

  • Lots of bugs were fixed.
  • Some improvements were made to XMPP.
  • SOCKS 5 configuration per connection was implemented.
  • Layout changes related to XMPP were made.
<<less
Added: 2009-02-27 License: GPL Price: FREE
10 downloads
DSHub Epsilon / Zeta RC12

DSHub Epsilon / Zeta RC12


DSHub is a hubsoft for Direct Connect Network. more>>
DSHub is a hubsoft for Direct Connect Network. DSHub project uses the ADC protocol currently in development by Jacek Sieka and DC DEV. ADC is the future of DC++ network.
How can I use DSHub ?
You can download DSHub from this site and just use it. DSHub is free and every user can take it for himself. You can also redistribute it and you can modify it ( substantially only) under the terms of GNU General Public License. Right click here to download . DSHub comes in zip archive.
DShub is now Open Source and source for current binaries is available here.
How do I install DSHub ?
DSHub is a software created in Java Language developed by Sun. For it to run you need JRE installed. [ That is, Java Runtime Environment]. JRE can be found on http://java.sun.com/ . DSHub requires the least JRE version 1.5.0.0 to run properly. After that just create a folder for your hub and paste the DSHub.jar file downloaded from this site in there.
How do I use DSHub ?
Either you read manual, or after you got your DSHub installed, you can run it from command line by using the command:
path_to_java_exe -jar path_to_DSHub.jar
Linux Example:
java -jar /home/user/myhub/dshub.jar
Whats New in Epsilon Stable Release:
- fixed bug with kick/ban message not showing properly;
- fixed again usercount hope its for good;
- fixed restarting from console;
- fixed rename issue selecting bad/used nick;
- fixed issue when putting max_chat_msg 0 nobody could change it from cmd line;
- ops_override_spam now override max_chat_msg too;
- corrected bug not showing when ureg not online user;
- DSHub is now OPEN-SOURCE under GPL !!! Please look into SRC and give me feedback !
- corrected massall command not working for more words;
- modyfied the random data from IGPA now its real random data;
- fixed bug when restarting, not showing new motd and help file ( thanks Catalin);
- fixed bug when restarting reading regs and bans, doubling them (thanks Catalin);
- fixed bug when restarting after a failure in starting server ( thanks Catalin);
- fixed bug when port was a out of range one and hub would crash;
- corrected message when disconnect on too many ops not showing (thanks ffrag);
- tryed to fix the ghost thingy on unnormal TCP closing sending a keepalive (thanks Ghost for helping);
- added a variable keep_alive_interval for seconds interval between keep alive messages;
- fixed bug when not checking nick lenght on rename ( thanks b_w_johan );
- fixed unbanning some string which is invalid CID;
- fixed issue with opchat nick cant rename to its nick now;
- now users cant use an IP for a nick;
- removed whocid and whoip commands, moved that to info example !info nick gives info about a nick, !info cid shows user with cid, !info ip shows info about users with given ip;
- big change: default password "defpass" removed, now, by default, regs have no pass, just CID check however is good to have one for even better security;
- tryed to fix ugly bug when double client connecting ( example: connecting at same time, double fav hub auto connect); syncronized method handleINF so that it cant be called @ same time;
- improved history, now retains IMSG broadcasts as well;
- created a command cmdhistory that pastes given commands since startup;
- added drop command , a kick with no reason and 0 ban time;
Kick Command:
- Kicking in DSHub is very simple now.
- Classic kick:
kicks just a user out in flames, with a kick_time temporary ban, default 5 minutes.
- Extended kick has way more advantages and can be used very efficiently with a large hub.
- Extended kick features:
- Kicking users that match a certain regular expression:
- Example: !kick [RO].* -- this command kicks all users that have their nick starting with [RO]
- Example: !kick .. --this command kicks all users with 2 letter nicks
- This type of kick accepts just any regular expression.
- Kicking users that have their fields checked:
- Example: !kick share, < , =, !
- And a list of possible fields : share, sl (slots), ni (nick length),su(supports, accepts only = or !, example: !kick su=tcp4),hn(normal hubs count),hr(registered hub count),ho(op hub count),aw(away, 1 means normal away, 2 means extended away),rg (1- registered, 0 otherwise, registered means not op),op ( 1 -op, 0 - otherwise , op means it has key).
- created a kick and ban function for easy call from commands;
- done almost all that kick stuff, for share slots and su, still need to do for rest;
- added a debug message, please ignore, or if you figure it out, report to me;
- modified share kick, to be in megabytes;
- completed kick with all mentioned above in the log;
- fixed bug on new kick, forgot to check if kick_ops is enabled;
- added same features to drop command as well;
- added extra fields to reg class so OLD regs DONT WORK anymore sorry so please REREG;
- modified reg command, now if user already added prints user info;
- added a getRegInfo method, also added extra fields on info and reg;
- added hideme command that toggles the hideme, also hideme is remembered in reg file;
- fixed bug when restarting and changing default port;
- fixed bug when opchat could have same nick as other users;
- fixed exploit when cmdhistory could see the !password;
- fixed bug with renaming into a CID or IP and not repsecting sizes;
Whats New in Zeta RC12 Development Release:
- Completely changed string parsing hope its better now.
<<less
Download (0.086MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
822 downloads
eZ components 2006.2

eZ components 2006.2


eZ components is an enterprise-ready, general-purpose PHP platform. more>>
eZ components project is an enterprise-ready, general-purpose PHP platform.
As a collection of high-quality independent building blocks for PHP application development, eZ components will both speed up development and reduce risks.
An application can use one or more components easily, as they all adhere to the same naming conventions and follow the same structure.
All components are based on PHP 5.1, except for the ones that require the new Unicode support that will be available from PHP 6 on.
Main features:
- Designed for enterprise PHP application development
- Open source and licensed under the New BSD license
- Clear IP rights
- Thoroughly documented
- Developed, supported and maintained by eZ systems
As the developers of eZ publish, one of the largest enterprise PHP applications in the world, eZ systems has over several years been developing enterprise PHP applications.
During the development of eZ publish eZ systems has been writing all the needed general libraries itself instead of reusing existing libraries. Quite a few other PHP projects are also doing the same. There are several reasons for this, like lack of documentation, quality of code, lacking functionality, unclear IP rights or inconsistencies between the libraries. eZ systems has the experience and resources to make such a product as well as the need for it.
The eZ components are developed with interoperatibility and a clean design in mind, allowing its users more flexibility and freedom, while keeping a consistent and well documented API. It is thouroughly documented, New BSD licensed with clear IP rights and available free of charge.
eZ systems has a dedicated team of professional developers for developing, maintaining and supporting eZ components. This will ensure that eZ components will be an active project for the future, making them a safe choice for PHP application developers to rely on.
Enhancements:
- The Graph component renders statistical data into 2-D and 3-D charts and graphs like bar, pie, and line charts.
- The SignalSlot component implements a kind of Subject-Observer pattern for object-oriented application design.
- Designed after Qts Signals and Slots mechanism, it gives you a handy tool for inter- and intra-object communication.
- The Url component conveniently extracts data from URLs and similarly creates URLs.
- This mechanism is commonly used in controller parts of a Model-View-Controller (MVC) implementation.
<<less
Download (6.1MB)
Added: 2007-01-16 License: BSD License Price:
1012 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5