go
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 12
Zasio 0.1
Zasio is a graphics calculator for java. more>>
Zasio is a graphics calculator for java.
Zasio is my second attempt at writing a graphics calculator for a hand held device that I own. My first was Newtsio which was writen for the Newton. The first program I wrote while I was in college.
At the time I was lugging around a Casio calculator, a Frankland spell checker, paper based calendar, and about a houndred notes jotted down on scraps of paper. To say the least I was in need of a PDA.
My goal was to get a pda and write programs that would allow me to carry just one device. Today, my needs have changed, but I still find it quite nice to have a programable graphics calculator at hand and when I got a Zaurus I just could not resist writing a calculator for it. With that modivation, I started my second calculator.
Usage:
Inputing:
Commands can be inputed into Zasio in three ways, buttons, editor tab, or file. The button layout is set up in such a way to make it easy for users of a Casio calculator (this is really the only thing Zasio shares with Casio).
The second way to input commands is to use the editor tab. In this tab is a large text edit area where you can type very complicated formulas and or programs that you want to executed. When ready, you can execute your commands with the press of the EXE button at the bottom. The third way to input commands is by file. Files can be loaded (and saved) from the edit tab. This allows you to write programs and formulas in an external editor and load them into Zasio.
Buttons:
Buttons fall into three catagories. Buttons that have one use, buttons that have up to three uses, and the F keys. Most of the one use buttons are on the first row under the F keys but a few others are closer to the bottom. These buttons are the shift, ALPHA, EXIT, Menu, Arrow keys, DEL, AC, and the EXE key.
The shift and ALPHA key are used to change the multi use keys into other keys. EXIT we will get into when I explain F keys. Menu is not used at this time as are the left are right arrow keys. The up and down arrow keys are used to recall previous calculations (scroll up or down). The DEL key will remove the last letter from the calculation (its a delete key). AC is the clear button which will clear the text line or the graph screen depending on which is displayed. Finaly EXE is the execute key. That should wrap up the the single use keys.
The majority of the other keys in Zasio are of the second kind. The up to three uses kind. These keys are like most graphic calculator buttons where the buttons have a normal action, a shifted action and an alpha action. Most of these keys are for entering functions (such as sin or sq) and shift just gives you more options so Zasio does not have to have twice the buttons on the screen. Alpha lets you enter in letters and other such charecters needed for variable access.
F keys take a bit more to understand. Some keys when shifted will allow you to access an F menu that you can navigate through the F keys. One example is the MATH menu. Press SHIFT and then MATH and you should notice a change to the F keys. These keys when pressed will either enter the function they represent into the calculation or take you to more choices in the F keys. To go back, use the EXIT key. So in our example, you can press the Num F key and then abs to get the int function in your calculation.
Calculations:
Zasio works the same as most graphic calculators. You enter your formual in and press the execute key. To run a calculation like 2+2 you would need to press the buttons 2, +, 2, and then EXE. The EXE button takes the formula and turns it into a short program which returns 2 as a result.
While this was a very simple formula, even complicated formulas are entered the same way. Take (sin Pi/2)*2. To do this calculation you would press (, sin, shift, Pi, /, 2, ), *, 2, EXE. Calculations can use variables A to Z, radius, and theta to store results from previous calculations. These variables can also be used in other calculations. To do this, simply use the variable name and the equals (=) button like this: A=(sin Pi/2)*2. You would use A like this: cos(A).
Graphing:
Graphing is done by passing forumals to the s.graph() function which contain the variable x (not to confuse with the storage variable X). To graph a simple function like sin x you would enter in s.graph(s.sin(x)). After pressing EXE, Zasio will change to the graph screen to display the rusults of your function.
To get back to the text screen, press the TG. I should point out now that the clear button (AC) only clears the active screen, so pressing it while in the viewing the text screen will not clear out the gragh screen. You can also display graphs in different colors by setting the color you want in the Color F menu.
<<lessZasio is my second attempt at writing a graphics calculator for a hand held device that I own. My first was Newtsio which was writen for the Newton. The first program I wrote while I was in college.
At the time I was lugging around a Casio calculator, a Frankland spell checker, paper based calendar, and about a houndred notes jotted down on scraps of paper. To say the least I was in need of a PDA.
My goal was to get a pda and write programs that would allow me to carry just one device. Today, my needs have changed, but I still find it quite nice to have a programable graphics calculator at hand and when I got a Zaurus I just could not resist writing a calculator for it. With that modivation, I started my second calculator.
Usage:
Inputing:
Commands can be inputed into Zasio in three ways, buttons, editor tab, or file. The button layout is set up in such a way to make it easy for users of a Casio calculator (this is really the only thing Zasio shares with Casio).
The second way to input commands is to use the editor tab. In this tab is a large text edit area where you can type very complicated formulas and or programs that you want to executed. When ready, you can execute your commands with the press of the EXE button at the bottom. The third way to input commands is by file. Files can be loaded (and saved) from the edit tab. This allows you to write programs and formulas in an external editor and load them into Zasio.
Buttons:
Buttons fall into three catagories. Buttons that have one use, buttons that have up to three uses, and the F keys. Most of the one use buttons are on the first row under the F keys but a few others are closer to the bottom. These buttons are the shift, ALPHA, EXIT, Menu, Arrow keys, DEL, AC, and the EXE key.
The shift and ALPHA key are used to change the multi use keys into other keys. EXIT we will get into when I explain F keys. Menu is not used at this time as are the left are right arrow keys. The up and down arrow keys are used to recall previous calculations (scroll up or down). The DEL key will remove the last letter from the calculation (its a delete key). AC is the clear button which will clear the text line or the graph screen depending on which is displayed. Finaly EXE is the execute key. That should wrap up the the single use keys.
The majority of the other keys in Zasio are of the second kind. The up to three uses kind. These keys are like most graphic calculator buttons where the buttons have a normal action, a shifted action and an alpha action. Most of these keys are for entering functions (such as sin or sq) and shift just gives you more options so Zasio does not have to have twice the buttons on the screen. Alpha lets you enter in letters and other such charecters needed for variable access.
F keys take a bit more to understand. Some keys when shifted will allow you to access an F menu that you can navigate through the F keys. One example is the MATH menu. Press SHIFT and then MATH and you should notice a change to the F keys. These keys when pressed will either enter the function they represent into the calculation or take you to more choices in the F keys. To go back, use the EXIT key. So in our example, you can press the Num F key and then abs to get the int function in your calculation.
Calculations:
Zasio works the same as most graphic calculators. You enter your formual in and press the execute key. To run a calculation like 2+2 you would need to press the buttons 2, +, 2, and then EXE. The EXE button takes the formula and turns it into a short program which returns 2 as a result.
While this was a very simple formula, even complicated formulas are entered the same way. Take (sin Pi/2)*2. To do this calculation you would press (, sin, shift, Pi, /, 2, ), *, 2, EXE. Calculations can use variables A to Z, radius, and theta to store results from previous calculations. These variables can also be used in other calculations. To do this, simply use the variable name and the equals (=) button like this: A=(sin Pi/2)*2. You would use A like this: cos(A).
Graphing:
Graphing is done by passing forumals to the s.graph() function which contain the variable x (not to confuse with the storage variable X). To graph a simple function like sin x you would enter in s.graph(s.sin(x)). After pressing EXE, Zasio will change to the graph screen to display the rusults of your function.
To get back to the text screen, press the TG. I should point out now that the clear button (AC) only clears the active screen, so pressing it while in the viewing the text screen will not clear out the gragh screen. You can also display graphs in different colors by setting the color you want in the Color F menu.
Download (MB)
Added: 2005-12-09 License: Other/Proprietary License Price: $15
1414 downloads
eDating Professional 5
Create your own online dating website in minutes without programming. more>> Create your own online dating website in minutes. No programming knowledge required. Lots of features and add-on modules. The fastest script you will find.
Features: user-to-user instant messaging, buddy list, ignore list, personal guest book, quick links, shout box, greeting cards, news and events, create list of users who will go to an event, advanced searching and sorting, radius search, rate users, hot-or-not type website, multilingual, quick stats, can work as free or paid system, can be used for hetero or gay websites, many advanced configurations and even more modules.<<less
Download (727KB)
Added: 2009-04-19 License: Commercial Price: $199
189 downloads
textonly 1.0
It can be a time consuming task to create and upload those critical more>> This script automatically converts pages on your site to text only on the fly for those who want faster access and dont have a quick modem. It maintains most links within the site, removing images and table tags and doesnt harm links outside of the site.? Simply put a link to the script on each page, and the script does the rest.? It reads the data on the page, removing non-text information. A good way to use the script is to include a link to it in a "server side include" that goes on every page automatically.? I always do this on my sites for headers, footers, middle page ads, and links.? That way I can change all the information on the whole site very quickly and easily. By adding a link to this script in your links list you can automatically convert pages to plain text. The way the script works?? Its quite simple, really.? It checks to see which page it came from (unless theres a page specified for it in the URL).? It opens one of these two pages and removes all the HTML tags that arent plain content.? It then redisplays the page in the browser.<<less
Download (3KB)
Added: 2009-04-10 License: Commercial Price: NA
196 downloads
Movitos USB Linux 2.0
Movitos, is a new USB and CD live Linux distribution for desktop users. more>>
Movitos, is a new USB and CD live Linux distribution for desktop users. Movitos USB Linux runs entirely from USB or CD drive. No installation required. Carry your desktop with you, wherever you go!
Movitos makes it possible to carry your entire desktop and files around in your pocket. Movitos runs from USB sticks, iPods and many MP3 players, and pocket mini-harddrives. No installation required. Just plug in the USB stick or player, and startup the computer. Its that simple. If you can use Windows you can use Movitos.
Focusing on desktop usage, and making it easy for Windows users to try Linux. Movitos includes all the tools you need daily for checking your email, browsing the web, writing documents, doing calculations, and planning your time, as well as listening to music, watching movies and playing games. Tutorials for Linux newbies, and support are planned. Movitos is multi-lingual (English, French, German, sofar).
Main features:
- Runs entirely from USB or CD drive
- No installation required
- Completely mobile operating system, applications, and personal data in your pocket
- Familiar desktop for Windows users
- Desktop help files, especially for people new to Linux
- Support forums and email support
- Includes all the tools you need daily for:
- Checking your email
- Browsing the web
- Writing documents
- Managing your time schedules
- Doing calculations
- Listening to music
- Watching movies
- Playing games
- Free community version available on CD
- Automatically generated desktop icons displaying your various harddrives, CD/DVD drives, and USB sticks
Featured applications:
- OpenOffice.org. Can open Microsoft Office documents.
- Firefox web browser
- Thunderbird Email, RSS and news client
- Kaffeine Media Player for music, videos
- K3B CD/DVD burner and CD ripper
- Kopete messaging and chat program for AOL Instant Messenger, MSN, IRC, Yahoo and others
- Kate the advanced text editor with syntax highlighting, full text search, and built-in console
- Kolourpaint paint program - simple to use yet with multiple undo and other extras
- XFE and emelfm file managers
- And a lot more.
<<lessMovitos makes it possible to carry your entire desktop and files around in your pocket. Movitos runs from USB sticks, iPods and many MP3 players, and pocket mini-harddrives. No installation required. Just plug in the USB stick or player, and startup the computer. Its that simple. If you can use Windows you can use Movitos.
Focusing on desktop usage, and making it easy for Windows users to try Linux. Movitos includes all the tools you need daily for checking your email, browsing the web, writing documents, doing calculations, and planning your time, as well as listening to music, watching movies and playing games. Tutorials for Linux newbies, and support are planned. Movitos is multi-lingual (English, French, German, sofar).
Main features:
- Runs entirely from USB or CD drive
- No installation required
- Completely mobile operating system, applications, and personal data in your pocket
- Familiar desktop for Windows users
- Desktop help files, especially for people new to Linux
- Support forums and email support
- Includes all the tools you need daily for:
- Checking your email
- Browsing the web
- Writing documents
- Managing your time schedules
- Doing calculations
- Listening to music
- Watching movies
- Playing games
- Free community version available on CD
- Automatically generated desktop icons displaying your various harddrives, CD/DVD drives, and USB sticks
Featured applications:
- OpenOffice.org. Can open Microsoft Office documents.
- Firefox web browser
- Thunderbird Email, RSS and news client
- Kaffeine Media Player for music, videos
- K3B CD/DVD burner and CD ripper
- Kopete messaging and chat program for AOL Instant Messenger, MSN, IRC, Yahoo and others
- Kate the advanced text editor with syntax highlighting, full text search, and built-in console
- Kolourpaint paint program - simple to use yet with multiple undo and other extras
- XFE and emelfm file managers
- And a lot more.
Download (478MB)
Added: 2005-12-08 License: Other/Proprietary License Price: $19
1417 downloads
CounterMail 50409-1418
CounterMail is a web stats and counter script in one, but with a slight twist. more>> Not all web hosts allow server side includes, and many do not provide statistical information about your visitors. Youd like to know who is visiting your page, what route theyre taking through your site, what browser they are using, and what time they were there?Maybe you want to know the sites which are linking to you and which links are generating the most traffic.Now this is all possible, even with limited CGI access. If you can run basic Perl scripts, and have access to SendMail on this server, CounterMail can retrieve the information from your visitors, and email it to you. You get to choose when the email comes; every visit, after 10 visits, 50 visits, or any number of visits-- it doesnt matter.Want to show a counter on your page? This script can be called using SSI, to show a simple count of unique visitors. A visitor wont be counted twice, even if the counter is placed on all your pages.Call it with an img tag, and add the string /blank.gif to the end of the script to display a one pixel gif. Or, call it with a Server Side Include to show the visitor count.NEW!This script now sorts the visit data by IP address, so its easier than ever to see the exact path someone used on your site. I find this terrific to use with search engines. For example, someone searches on Google for "Cool Widget" and then goes to 5 pages on your site. It shows how long they were on each page, and how long they were on your site altogether. You can also see which page they exited from, and more!This is a brand new script, so try it out and let me know what you think.<<less
Download (2KB)
Added: 2009-04-03 License: Commercial Price: $7.35
203 downloads
AutoFollowup 50124-1312
This is truly amazing more>> This is truly amazing! If youve ever wasted hours of time sending out emails, only to have them bounce-- or go nowhere... if youve ever wished it was easier to manage unsubscribe requests, subscribe requests, keeping track of sales letters, managing multiple products-- if youre convinced that email marketing works, you just dont like doing it, then this is for you.It does everything the old manual version followup script does, but AUTOMATICALLY!Heres the basic idea: a user comes to your site, wants to sign up for something, or buy something, and they place their email address and name in a form. When they submit this form, the amazing marketing tool goes to work. They could recieve a personalised email message immediately, or after a set number of days pass... then after a different amount of days pass, the next email is sent to them. This can continue indefinitely as long as youve written out emails for them to receive. This form of mass mailing is convincing, because you can place fields like FIRSTNAME and FULLNAME anywhere in the subject or body of your messages.What makes this whole program so great is that its easy to manage. When you install the script, it reads the environment variables and figures out itself how it should be installed. It displays a form for you to change any variables you would like to, then when you press submit, your script is ready to run. Even if you have an old version of Auto FollowUp or FollowUp running, it figures this out, and incorporates all your sales letters immediately!The administration part of the script is really intuitive and easy to use. Click the [try] link below to mess around with it yourself. Of course, its feature limited and sending is disabled, but youll get an idea of how this thing works.I was selling this script for $100, but (aint competition wonderful) Ive lowered the price to harras the competition.<<less
Download (83KB)
Added: 2009-04-15 License: Commercial Price: $29.95
191 downloads
Text Chart Tranposer 1.0
This tranposer script will convert text chord charts (the kind popular to gu... more>> Do you ever wish you could change the key of a song so that its not too high, or not so low? Weve finally found the solution to your problem!Now Text Chart Tranposer will put these charts in any key. Choose how many half-steps you want it to go up or down, for example, 5 or -6-- then whether you prefer flats or sharps. One press of a button and the work is done. Your song will instantly moved to the new key!Text music charts are available all over the Internet. Guitar players and other instrumentalists know how easy it is to read and play from these musical charts. Usually they contain lyrics, with chords over the words. Lots of different web sites provide these chord charts for free. But sometimes we need to transpose these charts to a new key, and thats when Text Chart Transposer comes in! This script was originally written to be implemented into the ServiceBuilder software.<<less
Download (0KB)
Added: 2009-04-04 License: Commercial Price: $14.95
202 downloads

FantasyBetting 700803-2015
This script brings the fun of gambling to your site, without the worry of us... more>> This Fantasy Betting is a just-for-fun way to manage fantasy betting on your site. Every user who logs in gets a set amount of dollars or quid or bangles (you decide the currency) and then have an opportunity to place a fun wager on items of your choice. The script is completely customizable, meaning that with very little knowledge you can make it look like the rest of your site. You can set up the bets in different ways: set them to expire after a certain time set the bet amount to a predetermined cost include a draw option make certain, or all items compulsory. change the ratio of a winWhen you announce the winner, all users are sent an email asking them to re-visit your site to claim their winnings. Thus this becomes a great way to get repeat customers. Users who did not bet on compulsory items will also be contacted, to let them know how close they came to winning if only they had bet on the non-optional wagers. When a user logs in, then are shown the amount of credits in their bank account, and they will have the option of accepting any outstanding winnings or transfers. Use this for baseball, football, or other sports for fun betting. When a team wins, log in, announce the winner, and watch the hits go up on your site. If you have insider clues which can help a user make a more insightful bid, then make use of the insider information feature. There are three potential levels of player, and you set the boundaries when you install the script. You may also limit the number of bets a user can make per term-- say, 12 bets each week. At the end of the week you can login and reset everyones bet count with a simple click. Other options include editing and deleting users, manually increasing account balances, or changing usernames, emails, and other pertinent information.<<less
Download (16KB)
Added: 2009-04-14 License: Commercial Price: $21.99
192 downloads
Other version of FantasyBetting
Price: $25.49
License:Commercial
License:Commercial

PikNix Hosting Service 1.3
No install server build in 10 minutes. more>> The Hosting Service CD contains everything needed to run a web site hosting business. Place this CD into a PC or server with some empty disk space and after a few minutes of initial configuration you are ready to start selling website hosting, email, DNS management, reseller accounts, trouble tickets and all standard hosting services .
Features:
* Nothing to install. All OS, programs, servers and packages run directly from the CD. Boot and go. The only thing stored on the hard drive is user web sites, data and local system configurations.
* No complex system upgrades. PikNix will periodically supply new CD iso images with the latest kernel, package and security upgrades. Simply remove the old CD and reboot with the new CD and you have a total system upgrade to the latest package versions, (or any extra goodies that may be added to the hosting service).
* Open Source. The majority of packages supplied on this CD are from the open source community.
* 10 minutes to configure a complete hosting service. (Assumes a basic knowledge of the Internet addressing, DNS and email delivery principles.) .
* Professional assistance and support available from Pikaia Ltd and the PikNix team.
* Browser based, providing remote administration of all server and hosting service operations and customers.
* Browser based customer control panel, database management and webmail.
* Ability to create various
This system includes, but is not limited to:
* IPSConfig hosting administration and customer control panel with reseller capability and invoicing.
* Webmin server configuration.
* Apache 1.3
* MySQL 4.1
* PHP4.3
* BIND9 DNS
* Postfix MTA
* POP3, POP3 (SSL), IMAP, IMAP (SSL) email.
* KDE3 GUI desktop with many tools and utilities.
* Webalizer web site statistics.
* AWStats web site statistics.
* Spamassassin anti-spam email filtering.
* Clamav anti-virus email filtering.<<less
Download (461.58MB)
Added: 2009-04-02 License: Commercial Price: $149
206 downloads

AlbumAdvanced 50620.1458
Got a digital camera and want an easy way to share photos with family and fr... more>> This AlbumAdvanced Photo Album looks through your web server in the directories in which you specify for both gif and jpeg images. It displays them as thumbs, as well as showing all child directories. As the user browses these directories, they can view the photos and images in them as thumbnails as well. If an image is clicked, then you can view it full size, or specify the size to shrink it or enlarge it however you want, all from a browser. Each directory can have its own password, its own body information (background colours and link colours etc.) so that its a breeze setting up albums for all your friends. They can login to this photo album, upload their own photos, and you never have to lift a finger. The script ensures that the total size of photos and pictures in each directory doesnt pass the limit you specify. You could give a folder to your sister, but limit her uploads to just two or three photos. Your girlfriend could have another directory to upload to, with no limits on her uploads at all. Its up to you! Administrate it all from any browser. Go to the friends_directory and use the login and password combo: admin/password to test the upload and settings options.<<less
Download (25KB)
Added: 2009-04-10 License: Commercial Price: $9.99
196 downloads
Tasks 2.7.1
Tasks is a dynamic hierarchical view of your tasks, scheduling due dates more>>
Tasks project features a dynamic hierarchical view of your tasks, scheduling due dates, and associating URLs with and uploading and attaching files to tasks.
You have numerous tasks, projects with sub-tasks, related notes and files, billable tasks, and ideas that you want to publish to your blog. You need to access on various computers, PDAs, or web-enabled phones from anywhere. Tasks is your solution.
Recurring tasks and task templating features save you time by eliminating manual duplication. Task templates increase the accuracy and speed of repeated tasks and projects by providing predefined tasks and sub-tasks at the click of a button.
You may be on a sales call, in the grocery store, or at a friends house, but if you have internet access from a computer, PDA or web phone, you can reach Tasks. Tasks can also reach out to you through the optional daily email reminders. Now its impossible to forget what needs to be done!
With hierarchical organization, there is no need to create and manage categories; tasks grow organically. Create high-level tasks and fill out detailed sub-tasks as needed. Use visual prioritization and magic sorting to identify urgent tasks.
Main features:
Rich, powerful interface
- Tasks is built from the users perspective with a responsive and innovative user interface that makes it a real joy to use. This is software designed to stay out of your way and help you get things done.
Hierarchical organization of tasks
- The heart of Tasks is the hierarchical task structure. Tasks and notes are organized and categorized through these relationships. Put your high-level projects at the top and fill out the details as you go.
Prioritize
- Set priorities on your tasks so you can easily see what you need to do next. You can even sort tasks by priority across projects by using the Sortable screen.
Be Timely
- You can set a due date for each task, then view all upcoming tasks and receive daily e-mail reminders so you dont forget any deadlines.
Notes
- Store ideas and related information anywhere in the tree.
File Uploads
- Attach files to tasks and notes.
RSS Feeds
- Monitor status on specific tasks and let others do the same.
iCalendars
- Subscribe to and share iCalendars for all of your tasks or just for specific projects.
Auto-expand on Home Page
- View your home page with the tasks already expanded up to 4 levels deep.
Edit Multiple Tasks
- Select multiple tasks in the list views and apply changes to all of them at once.
Themes
- Choose from supplied theme options or make your own to personalize your Tasks experience.
Friendly Install Script
- A great installer including an upgrade from Tasks Jr. (or Tasks 1.x) option.
In-depth Documentation
- Tasks includes in-depth documentation covering all aspects and features of the software.
<<lessYou have numerous tasks, projects with sub-tasks, related notes and files, billable tasks, and ideas that you want to publish to your blog. You need to access on various computers, PDAs, or web-enabled phones from anywhere. Tasks is your solution.
Recurring tasks and task templating features save you time by eliminating manual duplication. Task templates increase the accuracy and speed of repeated tasks and projects by providing predefined tasks and sub-tasks at the click of a button.
You may be on a sales call, in the grocery store, or at a friends house, but if you have internet access from a computer, PDA or web phone, you can reach Tasks. Tasks can also reach out to you through the optional daily email reminders. Now its impossible to forget what needs to be done!
With hierarchical organization, there is no need to create and manage categories; tasks grow organically. Create high-level tasks and fill out detailed sub-tasks as needed. Use visual prioritization and magic sorting to identify urgent tasks.
Main features:
Rich, powerful interface
- Tasks is built from the users perspective with a responsive and innovative user interface that makes it a real joy to use. This is software designed to stay out of your way and help you get things done.
Hierarchical organization of tasks
- The heart of Tasks is the hierarchical task structure. Tasks and notes are organized and categorized through these relationships. Put your high-level projects at the top and fill out the details as you go.
Prioritize
- Set priorities on your tasks so you can easily see what you need to do next. You can even sort tasks by priority across projects by using the Sortable screen.
Be Timely
- You can set a due date for each task, then view all upcoming tasks and receive daily e-mail reminders so you dont forget any deadlines.
Notes
- Store ideas and related information anywhere in the tree.
File Uploads
- Attach files to tasks and notes.
RSS Feeds
- Monitor status on specific tasks and let others do the same.
iCalendars
- Subscribe to and share iCalendars for all of your tasks or just for specific projects.
Auto-expand on Home Page
- View your home page with the tasks already expanded up to 4 levels deep.
Edit Multiple Tasks
- Select multiple tasks in the list views and apply changes to all of them at once.
Themes
- Choose from supplied theme options or make your own to personalize your Tasks experience.
Friendly Install Script
- A great installer including an upgrade from Tasks Jr. (or Tasks 1.x) option.
In-depth Documentation
- Tasks includes in-depth documentation covering all aspects and features of the software.
Download (0.35MB)
Added: 2007-06-20 License: Other/Proprietary License with Source Price: $29
856 downloads
MySpeed Server 7.4a
MySpeed Server is an excellent and useful program with which you can quickly and easily provide broadband speed test services to your end users. more>>
MySpeed Server 7.4a is an excellent and useful program with which you can quickly and easily provide broadband speed test services to your end users. Easily view end-user speed test results and quality of service reports, key information for managing VoIP, web application and help desk environments. It provide your customers with accurate bandwidth test services, including hard to find upload speed testing. Automate customer service processes by combining MySpeed speed test results with scripting
Major Features:
- Upload and download speed test measurements
- Connections often have different upload and download speeds, but most bandwidth tests only measure the download speed, providing only half the picture. MySpeed accurately reports both upload and download speeds.
- Reports bandwidth consistency (QOS), Max Pause and Round Trip Time (RTT)
- The consistency of download capacity is a critical measure for bandwidth-intensive applications such as VoIP and multimedia. MySpeed reports Quality of Service measurements of consistent bandwidth delivery. Max Pause, the longest pause recorded during the data download, and RTT are also reported.
- Highly accurate
- MySpeed has been carefully engineered and tested to accurately measure connection speeds. See the Broadband Speed Tester Benchmarks article.
- Can be combined with scripting for customized implementations
- MySpeed has the ability to call a JavaScript function when a speed test completes, enabling you to do most anything with the test results via JavaScript scripting, such as the options below. Try the live demo.
- Dynamically changing the HTML in the MySpeed web page based upon speed test results
- Provide connectivity analysis in a popup window
- Redirecting to another URL based upon the results.
- Easy implementation
- Unlike other speed testers, MySpeeds innovative design does not require any scripts or configuration changes. Just add the MySpeed files to your existing web server!
- Easy web page customization
- MySpeed may be easily incorporated into your web pages, or modify the default MySpeed speed test web page to the look and feel of your website.
- NEW! End-users can easily email test results
- A bundled JavaScript option enables the end-user to easily send speed test results to your help desk staff or other address. Try the live demo.
- VoIP Connection Analysis
- Use MySpeeds bundled JavaScript option to analyze a broadband connection and determine the number of VoIP lines that can be supported. Modify the JavaScript as needed to fit your needs. Try the live demo.
- Display connection quality test results in common terminology
- Display connection quality (QOS), Round Trip Time (RTT) and Max Pause results in non-technical terms as Excellent, Good or Poor.
- Automated start option
- Seemlessly initiates a connection speed test when a visitor goes to your MySpeed page. Try the live demo.
- Customizable display of speed test chart
- Easily modify the applet display to change the speed test scale, show/hide text labels, change the applet colors, and more! You can even customize the MySpeed applet text to display in another language.
Enhancements:
- Max Attainable Speed (the calculated maximum TCP connect speed that is supported by a network connection)
- Max Route Speed (the maximum speed that may be attained on the route being tested)
- TCP Forced Idle Percent (the TCP idle time invoked because the route being tested is too slow end-to-end).
Added: 2008-02-14 License: Other/Proprietary Li... Price: USD249.00
3 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above go 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