Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.472.544 Times

Calender Scope software
Filter: All | Freeware | Demo
 

Calender Scope

< 1 2 3 4 5 > 
Added: August 05, 2008 | Visits: 1.884

z/Scope Code Editor z/Scope Workbench offers its users an unmatched range of benefits produced by the unique integration of accessing and editing tools in just one product. It includes a solid emulation for all different protocols, a powerful FTP Client and it allows you to edit Mainframe, as/400 and Unix files in a...



Platforms: Windows

License: Shareware Cost: $150.00 USD Size: 11.87 KB Download (111): z/Scope Code Editor Download

Added: January 25, 2010 | Visits: 685

Mac the Scope Professional quality FFT vector signal analyzer, 1/3 octave RTA, oscilloscope, sonogram/spectrogram display. Includes versatile, intuitive signal generator software and more.Uses CoreAudio compatible input and output devices. Real-time analysis; Offline analysis: AIFF or Sound Designer II files...





Platforms: Mac

License: Demo Cost: $0.00 USD Size: 3.1 MB Download (111): Mac the Scope Download

Added: August 07, 2008 | Visits: 2.116

z/Scope Telnet & SSH Client z/Scope Express VT is a light-weight, fast and secure terminal emulator, featuring an integrated tabbed multisession emulation. It runs under Windows 98/ME/NT/2K/XP platforms. z/Scope provides full support of Internet-Standard communication protocols Telnet, SSH1/SSH2, with emulation support for...


Platforms: Windows

License: Shareware Cost: $40.00 USD Size: 10.94 KB Download (110): z/Scope Telnet & SSH Client Download

Added: August 31, 2008 | Visits: 963

Quintura Search With Quintura Search you can create a personalized search scope using tags related to a search query, make search scope more specific and personalize the scope by adding or subtracting tags using a visual map, refine search results removing search links or websites from the result list, save the...


Platforms: Windows

License: Freeware Size: 3.92 MB Download (109): Quintura Search Download

Added: August 18, 2008 | Visits: 1.328

z/Scope TN3270 z/Scope Express 3270 offers an unmatched look&feel and the most intuitive and user-friendly interface. Also gives full support of Internet-Standard comunication protocols TN3270E, SSL 2/3 and TLS 1. With z/Scope Express you will have all the necessary basic tools to experience a modern agile and...


Platforms: Windows

License: Shareware Cost: $40.00 USD Size: 8.28 KB Download (107): z/Scope TN3270 Download

Added: August 27, 2010 | Visits: 1.013

File::pushd File::pushd is a Perl module to change directory temporarily for a limited scope. SYNOPSIS use File::pushd; chdir $ENV{HOME}; # change directory again for a limited scope { my $dir = pushd( /tmp ); # working directory changed to /tmp } # working directory has reverted to $ENV{HOME}...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (100): File::pushd Download

Added: September 23, 2013 | Visits: 879

Global Village Global Village is a Gnome application designed to place a front-end, or graphical user interface onto the CLI interface of Xplanet. Originally intended to create and update the desktop wallpaper in a gnome environment, showing a traditional rectangular projection of the planet Earth. Global...


Platforms: *nix

License: Freeware Size: 2.84 MB Download (100): Global Village Download

Added: January 25, 2010 | Visits: 637

Xyle scope Xyle scope is an elegant analysis tool for everyone interested in web standards. It's like surfing the web with an X-ray view. Using Xyle scope you will deepen your understanding of XHTML and CSS, find out how your peers did it, and see your own work with fresh eyes.The synchronized views of Xyle...


Platforms: Mac

License: Demo Cost: $0.00 USD Download (98): Xyle scope Download

Added: October 04, 2010 | Visits: 944

Hook::Scope Hook::Scope is a Perl extension for adding hooks for exiting a scope. SYNOPSIS use Hook::Scope; { Hook::Scope::POST(sub { print "I just left my scope"}); print "you will see this first!"; } use Hook::Scope qw(POST PRE); # only POST can be exported { POST { print "foo" }; POST sub {...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (97): Hook::Scope Download

Added: January 02, 2010 | Visits: 840

SyncEvolution SyncEvolution project synchronizes Evolutions contact, calender and task items via SyncML. The items are exchanged in the vCard 2.1 or 3.0 format and iCalender 2.0 format via the open source Funambol C++ client API library, which should make SyncEvolution compatible with the majority of SyncML...


Platforms: *nix

License: Freeware Size: 1.1 MB Download (96): SyncEvolution Download

Added: May 11, 2010 | Visits: 883

Devel::Monitor Devel::Monitor is a Perl module that can monitor your variables/objects for memory leaks. You have memory leaks, and you want to remove it... You can use this tool to help you find which variables/objects that are not destroyed when they should be, and thereafter, you can visualise exactly...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (95): Devel::Monitor Download

Released: February 21, 2012  |  Added: March 18, 2012 | Visits: 689

HarePoint Workflow Monitor HarePoint Workflow Monitor has been developed to monitor the status of the workflows and manage them. In major companies with a well-developed IT-infrastructure, hundreds or even thousands workflows of different complexity levels and various execution frequencies may exist and operate at...


Platforms: Windows

License: Shareware Cost: $599.00 USD Size: 10.38 MB Download (95): HarePoint Workflow Monitor Download

Added: November 14, 2010 | Visits: 1.684

Image::MetaData::JPEG::Structures Image::MetaData::JPEG::Structures is a Perl module that describes the structure of a JPEG file; it is an appendix to the main manual page of the Image::MetaData::JPEG module, which the reader should refer to for further details and the general scope. THE STRUCTURE OF JPEG PICTURES The JPEG...


Platforms: *nix

License: Freeware Size: 286.72 KB Download (93): Image::MetaData::JPEG::Structures Download

Added: November 27, 2010 | Visits: 861

Text::Query::BuildSQL Text::Query::BuildSQL is a base class for SQL query builders. SYNOPSIS package Text::Query::BuildSQLsqldb; use Text::Query::BuildSQL; use vars qw(@ISA); @ISA = qw(Text::Query::BuildSQL); Defines all the build_* functions to build a syntax tree. The tree nodes are [ operator scope...


Platforms: *nix

License: Freeware Size: 19.46 KB Download (92): Text::Query::BuildSQL Download

Added: July 17, 2010 | Visits: 805

AtExit AtExit is a Perl module that can perform exit processing for a program or object. SYNOPSIS use AtExit; sub cleanup { my @args = @_; print "cleanup() executing: args = @argsn"; } ## Register subroutines to be called when this program exits $_ = atexit(&cleanup, "This call was...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (89): AtExit Download

Added: September 12, 2013 | Visits: 655

detox Detox is a utility designed to clean up filenames. It replaces difficult to work with characters, such as spaces, with standard equivalents. It will also clean up filenames with UTF-8 or Latin-1 (or CP-1252) characters in them. Features Removal or replacement of upper ASCII Latin-1 (ISO...


Platforms: *nix

License: Freeware Size: 81.92 KB Download (89): detox Download

Added: November 06, 2010 | Visits: 640

Regexp::Parser::Handlers Regexp::Parser::Handlers is a Perl module with handlers for Perl 5 regexes. This module holds the init() method for the Regexp::Parser class, which installs all the handlers for standard Perl 5 regexes. This documentation contains a sub-classing tutorial. SUB-CLASSING I will present two...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (86): Regexp::Parser::Handlers Download

Released: July 01, 2012  |  Added: July 01, 2012 | Visits: 646

JAP/JonDo JAP (called JonDo in the scope of the commercial JonDonym anonymous proxy servers - AN.ON remains free of charge) makes it possible to surf the internet anonymously and unobservably. Without Anonymization, every computer in the internet communicates using a traceable Address. That means: *...


Platforms: Windows, Mac, Linux

License: Freeware Size: 1024 KB Download (68): JAP/JonDo Download

Simulink Modelling of a 3 phase Induction Motor Using its test results The 3 phase induction motor is modeled to accept the No-Load & Blocked rotor test results for determining the equivalent circuit parameters. The model is used to simulate various performance characteristics. these characteristics can be viewed using a scope.


Platforms: Matlab


Released: September 02, 2012  |  Added: September 02, 2012 | Visits: 692

Mac the Scope for Mac OS Includes a real-time and audio file based vector trace FFT analyzer, time domain oscilloscope with triggering, precision swept sine analyzer, precision multi-waveform signal generator, including ultra-flat pink noise; 1/3 octave RTA featuring precision, elliptical bandpass filters, spectrogram...


Platforms: Mac

License: Freeware Size: 3 MB Download (63): Mac the Scope for Mac OS Download

< 1 2 3 4 5 >