hotel reservation prank call
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2796
Remote Python Call 2.60
RPyC stands for Remote Python Call, a pun over remote procedure call. more>>
RPyC stands for Remote Python Call, a pun over remote procedure call. It is completely transparent and symmetrical. It is inspired by the work of eyal lotem (pybuild.sf.net) on pyinvoke, and was made for two purposes:
Learning the lowlevel of the python language attempting to improve pyinvoke by making the entire protocol symmetrical. This means the client can make requests to the server, and the server can reply with requests of its own (the client is also a server on its own). This typically means using callback functions.
The RPyC package comes with a full demo, showing (or showing-off) many of its features. As i said, its completely transparent and symmetrical, so you can write code just as you would write in the case of normal python programs.
demo 1 -- a simple client demo
# import the client
from Rpyc.Client import RpycSocketClient
# `hostname` is the name of the host running an Rpyc server
# the port parameter is optional
c = RpycSocketClient("hostname")
# now we are connected and can start messing around with stuff on the server
for filename in c.modules.os.listdir("/tmp"):
print "found file", filename
Enhancements:
- This release adds DeliveringNamespace, LoginError (instead of tlslites internal errors), __version__, deliver (the counterpart of obtain, which can now deliver and obtain functions as well), and isproxy (to test whether an object is a proxy).
- It improves memory consumption with __slots__ and the isinstance/issubclass mechanism.
<<lessLearning the lowlevel of the python language attempting to improve pyinvoke by making the entire protocol symmetrical. This means the client can make requests to the server, and the server can reply with requests of its own (the client is also a server on its own). This typically means using callback functions.
The RPyC package comes with a full demo, showing (or showing-off) many of its features. As i said, its completely transparent and symmetrical, so you can write code just as you would write in the case of normal python programs.
demo 1 -- a simple client demo
# import the client
from Rpyc.Client import RpycSocketClient
# `hostname` is the name of the host running an Rpyc server
# the port parameter is optional
c = RpycSocketClient("hostname")
# now we are connected and can start messing around with stuff on the server
for filename in c.modules.os.listdir("/tmp"):
print "found file", filename
Enhancements:
- This release adds DeliveringNamespace, LoginError (instead of tlslites internal errors), __version__, deliver (the counterpart of obtain, which can now deliver and obtain functions as well), and isproxy (to test whether an object is a proxy).
- It improves memory consumption with __slots__ and the isinstance/issubclass mechanism.
Download (0.030MB)
Added: 2006-05-19 License: Public Domain Price:
1254 downloads
Vonage::Click2Call 0.11
Vonage::Click2Call is a Perl extension for using the Vonage Click2Call service. more>>
Vonage::Click2Call is a Perl extension for using the Vonage Click2Call service.
SYNOPSIS
use Vonage::Click2Call;
my $vonage = Vonage::Click2Call->new(login => user,
password => pass,
no_https_check => 1, # wasteful after the first time. turn it off.
);
if (! $vonage) {
# no $vonage for errstr...
die "Failed during initilization : " . $Vonage::Click2Call::errstr;
}
# get my phone numbers
my @phoneNumbers = $vonage->fromNumbers();
if (! defined($phoneNumbers[0])) {
die "No phone numbers found : " . $vonage->errstr;
}
printf("I have %d numbers configured.",scalar(@phoneNumbers));
# call someone. dont forget the leading 1.
my $rc = $vonage->call($phoneNumbers[0],12125551234);
if (! $rc) {
die "Failed to place a call : " . $vonage->errstr;
}
<<lessSYNOPSIS
use Vonage::Click2Call;
my $vonage = Vonage::Click2Call->new(login => user,
password => pass,
no_https_check => 1, # wasteful after the first time. turn it off.
);
if (! $vonage) {
# no $vonage for errstr...
die "Failed during initilization : " . $Vonage::Click2Call::errstr;
}
# get my phone numbers
my @phoneNumbers = $vonage->fromNumbers();
if (! defined($phoneNumbers[0])) {
die "No phone numbers found : " . $vonage->errstr;
}
printf("I have %d numbers configured.",scalar(@phoneNumbers));
# call someone. dont forget the leading 1.
my $rc = $vonage->call($phoneNumbers[0],12125551234);
if (! $rc) {
die "Failed to place a call : " . $vonage->errstr;
}
Download (0.003MB)
Added: 2007-05-25 License: Perl Artistic License Price:
888 downloads
Python Remote Call Module 0.0.3
Python Remote Call Module allows to transparently work with remote object in a python program. more>>
Python Remote Call Module allows to transparently work with remote object in a python program.
To make this possible a kind of peer-to-peer design is used. Servers can be created explictly, as can clients by explicitly connecting to a server. If a client needs to have a server, e.g. so a reference to a local object can be passed to a remote destination, it is instantiated as needed.
Clients can have multiple connections. New connections are created when needed, e.g. when a remote reference to a new server is recieved.
WARNING:
This module is still in its experimental phase, so it is kind of usable, but an awful lot of bugs is still in it, and quite a few parts are not coded yet, others arent even designed yet.
Therefor lots of changes and outdated documentation should be expected.
Enhancements:
- All previous stub objects have been replaced by a single stub object which uses on-demand retrieval of attributes of remote objects.
- This way, the behavior of the stub object is much more flexible and smoother.
- A first draft of an authentication framework has been implemented so PyRCall can support many different authentication methods.
- Support for username/password-based authentication has been implemented.
<<lessTo make this possible a kind of peer-to-peer design is used. Servers can be created explictly, as can clients by explicitly connecting to a server. If a client needs to have a server, e.g. so a reference to a local object can be passed to a remote destination, it is instantiated as needed.
Clients can have multiple connections. New connections are created when needed, e.g. when a remote reference to a new server is recieved.
WARNING:
This module is still in its experimental phase, so it is kind of usable, but an awful lot of bugs is still in it, and quite a few parts are not coded yet, others arent even designed yet.
Therefor lots of changes and outdated documentation should be expected.
Enhancements:
- All previous stub objects have been replaced by a single stub object which uses on-demand retrieval of attributes of remote objects.
- This way, the behavior of the stub object is much more flexible and smoother.
- A first draft of an authentication framework has been implemented so PyRCall can support many different authentication methods.
- Support for username/password-based authentication has been implemented.
Download (0.005MB)
Added: 2005-12-29 License: GPL (GNU General Public License) Price:
1399 downloads
Automated support for compound RPC calls 0.2
Automated support for compound RPC calls is a project which augments RPCGEN to support NFSv4-style compound procedures. more>>
Automated support for compound RPC calls is a project which augments RPCGEN to support NFSv4-style compound procedures.
NFSv4 specifies that the RPC calls be batched into a "compound" call. There is no support for this in RPCGEN.
By rearranging the ONC IDL for NFSv4 into AutoGen definitions, these templates will emit the original IDL *plus* all the code to package, send, distribute, collect, return, and dispatch the results.
The distributed program author merely needs to call and supply server procedures for the routines specified in the IDL.
Templates for these calls and service routines is provided, too. The NFSv4 definitions are included.
<<lessNFSv4 specifies that the RPC calls be batched into a "compound" call. There is no support for this in RPCGEN.
By rearranging the ONC IDL for NFSv4 into AutoGen definitions, these templates will emit the original IDL *plus* all the code to package, send, distribute, collect, return, and dispatch the results.
The distributed program author merely needs to call and supply server procedures for the routines specified in the IDL.
Templates for these calls and service routines is provided, too. The NFSv4 definitions are included.
Download (0.022MB)
Added: 2007-04-05 License: BSD License Price:
938 downloads
Inter-Thread Communication 1.1.3
Inter-Thread Communication (ITC) aims to make it exceedingly easy to call functions in other threads. more>>
Inter-Thread Communication (ITC) aims to make it exceedingly easy to call functions in other threads.
The lexer does all the work, so just run the lexer on your headers, then call the stub functions.
In addition, it also provides a complete threading API, with the four threading primitives and a high speed threadsafe FIFO class.
Enhancements:
- It add support for GCC 4.x, and the build system is fixed.
<<lessThe lexer does all the work, so just run the lexer on your headers, then call the stub functions.
In addition, it also provides a complete threading API, with the four threading primitives and a high speed threadsafe FIFO class.
Enhancements:
- It add support for GCC 4.x, and the build system is fixed.
Download (0.41MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1214 downloads
TurboCall 1.0.3+
TurboCall is an extension which adds a phone call function to your browser. more>>
TurboCall is an extension which adds a phone call function to your browser.
Select any phone number on any web page, or click on a phone number in your contact list in the integrated panel, and you will receive an incoming call from the desired destination number within seconds.
Main features:
- No obligation to subscribe after trial period
- Use your regular landline or cell phone
- Low international rates!
- Accessible worldwide
- Store your personal contact list
- No connection fee, no maintenance fee!
<<lessSelect any phone number on any web page, or click on a phone number in your contact list in the integrated panel, and you will receive an incoming call from the desired destination number within seconds.
Main features:
- No obligation to subscribe after trial period
- Use your regular landline or cell phone
- Low international rates!
- Accessible worldwide
- Store your personal contact list
- No connection fee, no maintenance fee!
Download (0.026MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
930 downloads
Python Call Graph 0.4.0
Python Call Graph (pycallgraph) is a Python library that creates call graphs for Python programs more>>
Python Call Graph (pycallgraph) is a Python library that creates call graphs for Python programs
pycallgraph is quite new. It seems to work well and I will most likely improve it in the near future!
<<lesspycallgraph is quite new. It seems to work well and I will most likely improve it in the near future!
Download (0.004MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
853 downloads
Solunas Hotel Management 2.0.1
Solunas Hotel Management helps the user manage small to medium-sized hotels, holiday flats, guest houses, or car rentals. more>>
Solunas Hotel Management helps the user manage small to medium-sized hotels, holiday flats, guest houses, or car rentals.
The Solunas Booking Engine Software is aimed at Hotels and Holiday Homes of between 1 to 150 units who are seeking to market their accomodation over the internet.
Because the trend in online bookings has remained constant/continues to grow, experience shows this system to be well liked by customers with growth in orders extending into the double digits. It is also noteworthy that private landlords providing from 1 to 50 units have a lot of catching up to do when it comes to the latest technology.
The Solunas.org central portal tasks itself, through a worldwide volunteer effort, to create an alternative Booking-Platform to rival commercial product offerings.
The end user has two methods to reserve his accomodation. Firstly, a visual reservations calendar displaying room availability, offers the customer direct booking online by mouse-click.
The second method, offering a manual selecction of the booking period and number of persons, involves a list of available units or groups can, likewise, be booked directly online. Details of the total price and last minute bargains are generated straight from the system.
The booking path, known internally as Bookflow, can be modified for very individual requirements.
<<lessThe Solunas Booking Engine Software is aimed at Hotels and Holiday Homes of between 1 to 150 units who are seeking to market their accomodation over the internet.
Because the trend in online bookings has remained constant/continues to grow, experience shows this system to be well liked by customers with growth in orders extending into the double digits. It is also noteworthy that private landlords providing from 1 to 50 units have a lot of catching up to do when it comes to the latest technology.
The Solunas.org central portal tasks itself, through a worldwide volunteer effort, to create an alternative Booking-Platform to rival commercial product offerings.
The end user has two methods to reserve his accomodation. Firstly, a visual reservations calendar displaying room availability, offers the customer direct booking online by mouse-click.
The second method, offering a manual selecction of the booking period and number of persons, involves a list of available units or groups can, likewise, be booked directly online. Details of the total price and last minute bargains are generated straight from the system.
The booking path, known internally as Bookflow, can be modified for very individual requirements.
Download (0.72MB)
Added: 2007-03-01 License: GPL (GNU General Public License) Price:
972 downloads
php-residence 0.7
php-residence is designed to manage weekly or daily rental of house apartments or small hotel rooms. more>>
php-residence is designed to manage weekly or daily rental of house apartments or small hotel rooms. php-residence uses a MySQL or PostgreSQL database as a backend. Reservations can be assigned to an apartment automatically with user-defined rules.
Main features:
- Software released under GPL licence (free and modifiable).
- Automatic assignment of the apartments with user defined rules. Details -->
- Configurable in number and characteristics of the apartments, periods, rates...
- Possibility to add weekly-daily or percentage extra costs to the rates. Details -->
- Visualization of contracts with inserted data for printing.
- Creation of templates to check availability from an internet site.
- Multi-user with privileges system. Details -->
- Backup all your data on a single text file.
- In english, italian and spanish.
Enhancements:
- Support was added for the sqlite database, recording of guests data, and assignment of reservations in close apartments.
<<lessMain features:
- Software released under GPL licence (free and modifiable).
- Automatic assignment of the apartments with user defined rules. Details -->
- Configurable in number and characteristics of the apartments, periods, rates...
- Possibility to add weekly-daily or percentage extra costs to the rates. Details -->
- Visualization of contracts with inserted data for printing.
- Creation of templates to check availability from an internet site.
- Multi-user with privileges system. Details -->
- Backup all your data on a single text file.
- In english, italian and spanish.
Enhancements:
- Support was added for the sqlite database, recording of guests data, and assignment of reservations in close apartments.
Download (0.35MB)
Added: 2007-06-04 License: GPL (GNU General Public License) Price:
875 downloads
WebService::Eventful 1.0
WebService::Eventful is a Perl interface to EVDB public API. more>>
WebService::Eventful is a Perl interface to EVDB public API.
SYNOPSIS
use WebService::Eventful;
my $evdb = WebService::Eventful->new(app_key => $app_key);
$evdb->login(user => harry, password => H0gwart$)
or die "Cant log in: $WebService::Eventful::errstr";
# call() accepts either an array ref or a hash ref.
my $event = $evdb->call(events/get, {id => E0-001-000218163-6})
or die "Cant retrieve event: $WebService::Eventful::errstr";
print "Title: $event->{title}n";
my $venue = $evdb->call(venues/get, [id => $event->{venue_id}])
or die "Cant retrieve venue: $WebService::Eventful::errstr";
print "Venue: $venue->{name}n";
The Eventful API allows you to build tools and applications that interact with Eventful. This module provides a Perl interface to that API, including the digest-based authentication infrastructure.
<<lessSYNOPSIS
use WebService::Eventful;
my $evdb = WebService::Eventful->new(app_key => $app_key);
$evdb->login(user => harry, password => H0gwart$)
or die "Cant log in: $WebService::Eventful::errstr";
# call() accepts either an array ref or a hash ref.
my $event = $evdb->call(events/get, {id => E0-001-000218163-6})
or die "Cant retrieve event: $WebService::Eventful::errstr";
print "Title: $event->{title}n";
my $venue = $evdb->call(venues/get, [id => $event->{venue_id}])
or die "Cant retrieve venue: $WebService::Eventful::errstr";
print "Venue: $venue->{name}n";
The Eventful API allows you to build tools and applications that interact with Eventful. This module provides a Perl interface to that API, including the digest-based authentication infrastructure.
Download (0.008MB)
Added: 2007-03-27 License: Perl Artistic License Price:
941 downloads
Php-Residence Hotel Software 1.1.1
Php-residence is an open source program designed to manage daily or weekly rental of house apartments or hotel rooms. It uses a PostgreSQL or MySQL database on backend. Reservations can be assigned to an apartment automatically with user defined rules. Templates of forms to check availability for internet sites can be created. Multi-user with privileges system. more>>
Php-Residence Hotel Software - Php-residence is an open source program that can be used in your browser designed to manage daily or weekly rental of house apartments or hotel rooms. It uses a PostgreSQL or MySQL database on backend. Reservations can be assigned to a room or apartment automatically with user defined rules. Templates of forms to check availability for internet sites can be created. Multi-user with privileges system. Custom prints and reports can be generated.
Enhancements:
Version 1.0
System Requirements:Apache, php, mysql or postgresql<<less
Download (661.4Kb)
Added: 2008-11-16 License: Free Price: Free
14 downloads
Other version of Php-Residence Hotel Software
License:Freeware
Sys::AlarmCall 1.2
Sys::AlarmCall is a package to handle the logic in timing out calls with alarm() and an ALRM handler. more>>
Sys::AlarmCall is a package to handle the logic in timing out calls with alarm() and an ALRM handler, allowing nested calls as well.
SYNOPSIS
use Sys::AlarmCall;
$result = alarm_call($timeout1,$func1,@args1);
@result = alarm_call($timeout2,$func2,@args2);
Sys::AlarmCall provides a straightforward function call to use the alarm handler. It also handles the logic which allows nested time out calls if timeout calls are run thorugh the alarm_call() functions.
The main advantages of Sys::AlarmCall are that:
1. simple calls, e.g.
@result = &func(@args); #Normal function call with &
$result = func(@args);; #Normal function call
@result = &$code_reference(@args);
@result = $obj->func(@args); #Object method call
become simple calls:
@result = alarm_call($timeout,&func,@args);
$result = alarm_call($timeout,func,@args);
@result = alarm_call($timeout,$code_reference,@args);
@result = alarm_call($timeout,->func,$obj,@args);
<<lessSYNOPSIS
use Sys::AlarmCall;
$result = alarm_call($timeout1,$func1,@args1);
@result = alarm_call($timeout2,$func2,@args2);
Sys::AlarmCall provides a straightforward function call to use the alarm handler. It also handles the logic which allows nested time out calls if timeout calls are run thorugh the alarm_call() functions.
The main advantages of Sys::AlarmCall are that:
1. simple calls, e.g.
@result = &func(@args); #Normal function call with &
$result = func(@args);; #Normal function call
@result = &$code_reference(@args);
@result = $obj->func(@args); #Object method call
become simple calls:
@result = alarm_call($timeout,&func,@args);
$result = alarm_call($timeout,func,@args);
@result = alarm_call($timeout,$code_reference,@args);
@result = alarm_call($timeout,->func,$obj,@args);
Download (0.005MB)
Added: 2007-04-13 License: Perl Artistic License Price:
925 downloads
DialFox callto 1.0
DialFox callto is a Web-based dialer for the Asterisk PBX and AMI Call Management. more>>
DialFox callto is a Web-based dialer for the Asterisk PBX and AMI Call Management. DialFox callto makes it possible to use an HTML hyperlink tag to call numbers using a callto://+44441234567 URI.
<<less Download (0.060MB)
Added: 2007-08-23 License: GPL (GNU General Public License) Price:
802 downloads
Prey Dedicated Server 1.2
Prey tells the story of Tommy, a Cherokee garage mechanic stuck on a reservation going nowhere. more>>
Prey tells the story of Tommy, a Cherokee garage mechanic stuck on a reservation going nowhere. His life changes when an otherworldly crisis forces him to awaken spiritual powers from his long-forgotten birthright. Abducted along with his people to a menacing mothership orbiting Earth, he sets out to save himself and his girlfriend and eventually his planet.
Prey is serious, dark story, based on authentic Cherokee mythology. Themes of sacrifice, love and responsibility are explored and the story dives into emotional territory not yet explored by similar games. You will find nothing familiar with this game.
Overview
In Prey, gamers enter an unpredictable world where nothing can be taken for granted. Most of the game takes place within a living ship, a giant entity that can sense and react to Tommys presence.
Prey makes use of Josephs Campbells renowned story structure, "The Heros Journey," for guiding the main character arc. Campbells extensive work on mythological story progression was made famous when George Lucas used it for Luke Skywalkers story arc in the original Star Wars.
Main features:
- Built on an enhanced Doom 3 engine, the most impressive 3D engine used in a released game.
- Portal technology adds a new dimension to gameplay, allowing enemies to appear out of thin air and create new and completely original puzzles and gameplay styles.
- Several never-before-seen gameplay elements such as Spirit Walking, Wall Walking, and Deathwalk.
- Highly organic, living environment that itself can attack Tommy.
- A deep, emotional story of love and sacrifice.
- Tommy has a sidekick, a spiritual hawk that can help him fight enemies and decipher the alien language of the living ship.
- Multiplayer game support that takes advantage of the unique gameplay styles in Prey.
<<lessPrey is serious, dark story, based on authentic Cherokee mythology. Themes of sacrifice, love and responsibility are explored and the story dives into emotional territory not yet explored by similar games. You will find nothing familiar with this game.
Overview
In Prey, gamers enter an unpredictable world where nothing can be taken for granted. Most of the game takes place within a living ship, a giant entity that can sense and react to Tommys presence.
Prey makes use of Josephs Campbells renowned story structure, "The Heros Journey," for guiding the main character arc. Campbells extensive work on mythological story progression was made famous when George Lucas used it for Luke Skywalkers story arc in the original Star Wars.
Main features:
- Built on an enhanced Doom 3 engine, the most impressive 3D engine used in a released game.
- Portal technology adds a new dimension to gameplay, allowing enemies to appear out of thin air and create new and completely original puzzles and gameplay styles.
- Several never-before-seen gameplay elements such as Spirit Walking, Wall Walking, and Deathwalk.
- Highly organic, living environment that itself can attack Tommy.
- A deep, emotional story of love and sacrifice.
- Tommy has a sidekick, a spiritual hawk that can help him fight enemies and decipher the alien language of the living ship.
- Multiplayer game support that takes advantage of the unique gameplay styles in Prey.
Download (25.1MB)
Added: 2007-01-15 License: Freeware Price:
1013 downloads

GrandCentral Click to Call 0.3.0
Click a phone number on any page to place a call using GrandCentral. more>> <<less
Added: 2009-03-15 License: MPL Price: FREE
10 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 hotel reservation prank call 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