to post
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 671
post 4.7
post is a highly configurable Web traffic generator and Web server benchmarking tool. more>>
post is a highly configurable Web traffic generator and Web server benchmarking tool. It has lots of features, and a command line interface.
This program sends requests to a web server. It is made for benchmarking a web server or web application.
To specify a URL to request, use any of these formats:
a) service://host:port/path
b) host:port/path
c) host
d) host:port
e) host/path
f) service://host/path
g) /path
You can specify a single url on the command line with -u , or put many of them in a file and use -l . in a file, put one url per line. comment lines start with #. currently, post data will be identical for all the urls. if service is specified, it is looked up in /etc/services.
The program can send any HTTP Method (GET, POST, HEAD, DELETE, etc).
When using POST, content data can be specified in one of three ways:
a) With -d post data is on the command line
b) With -f post data is read from
c) With neither flag, post data is read from STDIN
The program can repeatedly send the same request. ie, it sends the request and when the response is completed it repeats the procedure. using the -r option, you specify the number of times to send the request. with the -i option, you specify the amount of time (in seconds) to repeat for. with -i, the request which is in-process when the timeout is reached is allowed to complete, and the program stops after that.
The -k option causes the Host: header to be included in the request. specify the hostname to send, or specify . and the hostname used will be the one from the url specified with -u.
The -j option allows specifying arbitrary HTTP headers to include in the request. the -j option can be used multiple times to add multiple HTTP headers. Put the argument in quotes if the header has spaces in it. For example: -j Max-Forwards: 0 -j Pragma: no-cache
The -s option limits data transfer rates to simulate real web clients with slow connections. Typical transfer rates:
modem: 3000
isdn: 10000
The -t option sets the timeout which defines a connect/read/write error. default is 15 seconds.
The -e option defines the behavior when the timeout is exceeded. by default, the current request is terminated and the next request is started, but using -e causes the program to exit after the first timeout/failure.
The -y option causes causes the program to randomly close the connection before
the request is completed. specify a number between 0.0 and 1.0 which is proportional to how often the client will randomly hangup. hangups may occur during send or receive, and occur proportional to the number of data packets sent. thus you may need to play around with the -c parameter a bit to find a reasonable hangup frequency.
The -w option causes the program to resolve the hostname before every post. normally, the hostname is resolved into ip-address once at the program start.
Signal Mode Operation
The program responds to the usr1 and usr2 signals allowing stopwatch-style operation of the statistics reporting.
1) run post with -i option. set to a large runtime
2) use kill -USR1 to reset the statistics
3) use kill -USR2 to print statistics
4) use kill -TSTP to stop/start posting. (toggle switch)
5) use kill -TERM to end program
steps 2,3,4 can be repeated during a single program run. if posting is stopped, statistics are reset when posting is started again.
* Benchmarking Client Mode Operation *
This mode is used when the post program will be managed by a benchmarking server. The port specified with -c is connected to, and the post program sends data on this port during operation. When in client mode operation, the signal mode operation is altered:
SIGUSR1 causes posting to start
SIGUSR2 causes posting to stop
other signals operate as before. the program will begin in the stopped state. at the completion of every request, the program sends a message to the benchmarking server. currently these are 1-byte bessages:
0x00 nothing
0x10 request successful
0x11 connect error
0x12 send error
0x13 receive error
0x14 server error
0x15 disconnect error
0x16 send hangup
0x17 receive hangup
<<lessThis program sends requests to a web server. It is made for benchmarking a web server or web application.
To specify a URL to request, use any of these formats:
a) service://host:port/path
b) host:port/path
c) host
d) host:port
e) host/path
f) service://host/path
g) /path
You can specify a single url on the command line with -u , or put many of them in a file and use -l . in a file, put one url per line. comment lines start with #. currently, post data will be identical for all the urls. if service is specified, it is looked up in /etc/services.
The program can send any HTTP Method (GET, POST, HEAD, DELETE, etc).
When using POST, content data can be specified in one of three ways:
a) With -d post data is on the command line
b) With -f post data is read from
c) With neither flag, post data is read from STDIN
The program can repeatedly send the same request. ie, it sends the request and when the response is completed it repeats the procedure. using the -r option, you specify the number of times to send the request. with the -i option, you specify the amount of time (in seconds) to repeat for. with -i, the request which is in-process when the timeout is reached is allowed to complete, and the program stops after that.
The -k option causes the Host: header to be included in the request. specify the hostname to send, or specify . and the hostname used will be the one from the url specified with -u.
The -j option allows specifying arbitrary HTTP headers to include in the request. the -j option can be used multiple times to add multiple HTTP headers. Put the argument in quotes if the header has spaces in it. For example: -j Max-Forwards: 0 -j Pragma: no-cache
The -s option limits data transfer rates to simulate real web clients with slow connections. Typical transfer rates:
modem: 3000
isdn: 10000
The -t option sets the timeout which defines a connect/read/write error. default is 15 seconds.
The -e option defines the behavior when the timeout is exceeded. by default, the current request is terminated and the next request is started, but using -e causes the program to exit after the first timeout/failure.
The -y option causes causes the program to randomly close the connection before
the request is completed. specify a number between 0.0 and 1.0 which is proportional to how often the client will randomly hangup. hangups may occur during send or receive, and occur proportional to the number of data packets sent. thus you may need to play around with the -c parameter a bit to find a reasonable hangup frequency.
The -w option causes the program to resolve the hostname before every post. normally, the hostname is resolved into ip-address once at the program start.
Signal Mode Operation
The program responds to the usr1 and usr2 signals allowing stopwatch-style operation of the statistics reporting.
1) run post with -i option. set to a large runtime
2) use kill -USR1 to reset the statistics
3) use kill -USR2 to print statistics
4) use kill -TSTP to stop/start posting. (toggle switch)
5) use kill -TERM to end program
steps 2,3,4 can be repeated during a single program run. if posting is stopped, statistics are reset when posting is started again.
* Benchmarking Client Mode Operation *
This mode is used when the post program will be managed by a benchmarking server. The port specified with -c is connected to, and the post program sends data on this port during operation. When in client mode operation, the signal mode operation is altered:
SIGUSR1 causes posting to start
SIGUSR2 causes posting to stop
other signals operate as before. the program will begin in the stopped state. at the completion of every request, the program sends a message to the benchmarking server. currently these are 1-byte bessages:
0x00 nothing
0x10 request successful
0x11 connect error
0x12 send error
0x13 receive error
0x14 server error
0x15 disconnect error
0x16 send hangup
0x17 receive hangup
Download (0.014MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1214 downloads
Postit 0.2
PostIt Firefox extension is a Peer-to-Peer bookmarking system. more>>
It is very similar to del.icio.us and in addition, it enables conversations around posts. To use the PostIt extension, you need to download and install the Indus Live SDK (available at http://www.aumeganetworks.com) which provides access to the P2P network and the PostIt application (available at http://www.aumeganetworks.com) which can be installed using the Indus Live toolbar.
PostIt currently features abilities to mark-and-post any web content, bookmark pages, add contacts, share and reply to posts, editing and organisation of posts. Indus Live has been designed to enable implementation and hosting of open source P2P services and developers are encouraged to improve PostIt (sources available from http://sourceforge.net/projects/indus) and add other P2P services. Current plans include adding tags, public posts and search, post to blogs, feeds of tagged posts and import/export of posts.
<<lessPostIt currently features abilities to mark-and-post any web content, bookmark pages, add contacts, share and reply to posts, editing and organisation of posts. Indus Live has been designed to enable implementation and hosting of open source P2P services and developers are encouraged to improve PostIt (sources available from http://sourceforge.net/projects/indus) and add other P2P services. Current plans include adding tags, public posts and search, post to blogs, feeds of tagged posts and import/export of posts.
Download (0.005MB)
Added: 2007-05-30 License: MPL (Mozilla Public License) Price:
903 downloads
del.icio.us post 0.7
del.icio.us post is a Firefox extension that allows you to posts current page or link to del.icio.us. more>>
del.icio.us post is a Firefox extension that allows you to posts current page or link to del.icio.us. Adds an entry to the context menu and a button to the toolbar.
Due to some changes in version 0.4, it is advised to first uninstall any previous versions of this extension before proceeding with the installation.
After installing use View -> Toolbars -> Customize... to add the button to the toolbar.
<<lessDue to some changes in version 0.4, it is advised to first uninstall any previous versions of this extension before proceeding with the installation.
After installing use View -> Toolbars -> Customize... to add the button to the toolbar.
Download (0.010MB)
Added: 2007-05-07 License: MPL (Mozilla Public License) Price:
902 downloads
Post-Modern 0.1
Post-Modern is a KDE style inspired by eriols KDE 4 mockup. more>>
Post-Modern is a KDE theme inspired by eriols KDE 4 mockup. However, the window decor should be simple. But, personally i do not know how to do the coding; i tried, i have no programming knowledge.
I am looking for someone interested in helping make the window decor. It would need no masks and the button style i pulled from clear look.
<<lessI am looking for someone interested in helping make the window decor. It would need no masks and the button style i pulled from clear look.
Download (MB)
Added: 2007-05-04 License: GPL (GNU General Public License) Price:
542 downloads
Rally Point 1.0
Rally Point is a community collaboration site designed for homeowners associations. more>>
Rally Point is a community collaboration site designed for homeowners associations (HOAs), apartment complexes, condominiums or any other group of people who need to share files, notes, FAQS, log information, financials or car registration information. The project is really simple, allowing you to get everyone up-to-speed without training or confusion.
Main features:
- Reduce costs by communicating by the web instead of mail
- Increase collaborative activities by getting everyone involved
- Solve parking problems
- Post financial information for each unit
- Post files
- Provide a convenient place to post frequently asked questions
- Update everyone automatically with RSS
- Extract the information in Rally Point for other uses with CSV and XML
<<lessMain features:
- Reduce costs by communicating by the web instead of mail
- Increase collaborative activities by getting everyone involved
- Solve parking problems
- Post financial information for each unit
- Post files
- Provide a convenient place to post frequently asked questions
- Update everyone automatically with RSS
- Extract the information in Rally Point for other uses with CSV and XML
Download (0.20MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
958 downloads
feresPost 2.9.8
feresPost is a Ruby extension that provides the definition of classes and modules. more>>
feresPost is a Ruby extension that provides the definition of classes and modules devoted to the development of automated post-processing for Nastran finite element results.
feresPost library allows easy manipulation of finite element models, groups, and results. Efficient post-processing is possible because the time-consuming operations are written in C/C++.
Enhancements:
- Bugs in the reading of xdb and bdf files have been fixed.
- The classes devoted to the composite calculations were reorganized.
<<lessferesPost library allows easy manipulation of finite element models, groups, and results. Efficient post-processing is possible because the time-consuming operations are written in C/C++.
Enhancements:
- Bugs in the reading of xdb and bdf files have been fixed.
- The classes devoted to the composite calculations were reorganized.
Download (0.26MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
809 downloads
PurePostPro 1.4
PurePostPro provides an upload post-processor for Pure-FTPd. more>>
PurePostPro provides an upload post-processor for Pure-FTPd.
PurePostPro is a Perl/MySQL script that enables user uploads to be managed more easily. New uploads are logged in a MySQL database, and duplicate files are tracked using MD5 checksums.
The script has two main functions:
1. It logs all incoming uploads to a two-table database;
2. It calculates an MD5 checksum for each file and stores that in the database too.
<<lessPurePostPro is a Perl/MySQL script that enables user uploads to be managed more easily. New uploads are logged in a MySQL database, and duplicate files are tracked using MD5 checksums.
The script has two main functions:
1. It logs all incoming uploads to a two-table database;
2. It calculates an MD5 checksum for each file and stores that in the database too.
Download (0.050MB)
Added: 2007-04-30 License: GPL (GNU General Public License) Price:
907 downloads
Gnome Blosxom 1.1
Gnome Bloxsom is a GUI based program to post entries to a Blosxom based weblog. more>>
Gnome Bloxsom is a GUI based program to post entries to a Blosxom based weblog. The program requires Python version 2.2 or greater, PyGTK version 2.0 or greater, and Gnome-Python for Gnome 2.
It can optionally use PyGtkSpell version 0.3.1 or greater for spell checking, which is part of Gnome-Python-Extras. More information about the Bloxsom weblog application can be found at www.blosxom.com.
<<lessIt can optionally use PyGtkSpell version 0.3.1 or greater for spell checking, which is part of Gnome-Python-Extras. More information about the Bloxsom weblog application can be found at www.blosxom.com.
Download (0.024MB)
Added: 2005-07-27 License: GPL (GNU General Public License) Price:
1550 downloads
OBEX Send to Phone 0.0.0
OBEX Send to Phone service menu allows for sending any file(s) to a mobile phone equipped with OBEX stack. more>>
OBEX Send to Phone service menu allows for sending any file(s) to a mobile phone equipped with OBEX stack.
It is made for Nokia S60 (6630 to be precise) phone with USB connection. There are no settings, no progress indicator. Files are copied to the memory card (E: drive)
Requires openobex and obexftp.
Hope this script might be useful for someone. Please post fixes, comments and suggestions.
<<lessIt is made for Nokia S60 (6630 to be precise) phone with USB connection. There are no settings, no progress indicator. Files are copied to the memory card (E: drive)
Requires openobex and obexftp.
Hope this script might be useful for someone. Please post fixes, comments and suggestions.
Download (MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1246 downloads
AutoScan 1.01
AutoScan is a utility for network exploration (Samba and nessus client). more>>
AutoScan is a utility for network exploration.
The objective of the program is to post the list of all equipment connected to the network. A list of ports preset is scanned for each equipment.
Main features:
- Automatic network discovery
- Entire subnets can be scanned simultaneously without human intervention
- Addition time-reality of the new machines put on the network
- Detection of the OS, brand and model known (Possibility to add an unknown equipment in the database)
- Ability to save the network state
- A Samba share browser
- A Nessus client
- For each machine, one can launch a script (ex:ping, nmap) and display the result
- For each port, one can launch an application (ex:rdesktop for the terminal server service)
<<lessThe objective of the program is to post the list of all equipment connected to the network. A list of ports preset is scanned for each equipment.
Main features:
- Automatic network discovery
- Entire subnets can be scanned simultaneously without human intervention
- Addition time-reality of the new machines put on the network
- Detection of the OS, brand and model known (Possibility to add an unknown equipment in the database)
- Ability to save the network state
- A Samba share browser
- A Nessus client
- For each machine, one can launch a script (ex:ping, nmap) and display the result
- For each port, one can launch an application (ex:rdesktop for the terminal server service)
Download (14.7MB)
Added: 2007-06-02 License: GPL (GNU General Public License) Price:
967 downloads
Tomb Raider 1
Tomb Raider is a KDM theme featuring Angelina Jolie. more>>
Tomb Raider is a KDM theme featuring Angelina Jolie. This is the first of several Tomb Raider themes. I also intend to make Login Splash screens. Ill post the links here when I do.
<<less Download (0.53MB)
Added: 2007-04-02 License: GPL (GNU General Public License) Price:
8473 downloads
vSMP Monitor 1.3
vSMP Monitor is the Superkaramba theme that i have been modifying with time and finally decided to post it. more>>
vSMP Monitor is the SuperKaramba theme that i have been modifying with time and finally decided to post it.
It is a melting pot of many other themes which i have mentioned in the theme file. Hope you like it.
** Note background is from unknown origin all credit goes to the author!
<<lessIt is a melting pot of many other themes which i have mentioned in the theme file. Hope you like it.
** Note background is from unknown origin all credit goes to the author!
Download (0.037MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
1213 downloads
Test-Parser 1.2
Test::Parser is a collection of parsers for different test output file formats. more>>
Test::Parser is a collection of parsers for different test output file formats. These parse the data into a general purpose data structure that can then be used to create reports, do post-processing analysis, etc.
Test-Parser can also export tests in SpikeSources TRPI test description XML language.
<<lessTest-Parser can also export tests in SpikeSources TRPI test description XML language.
Download (0.053MB)
Added: 2006-05-04 License: GPL (GNU General Public License) Price:
1268 downloads
SvnReporter 0.4
SvnReporter generates various reports in response to commits happening in a Subversion repository. more>>
SvnReporter generates various reports in response to commits happening in a Subversion repository.
SvnReporter is intended to be called from the post-commit hook. Two types of reports are supported: single-event and event list reports.
The former generate reports relative to the current commit only, and are typically used to generate post-commit mails.
The latter generate reports relative to a list of commits, e.g. an RSS feed or a Web page showing the latest commits.
Reports can be restricted to certain criteria, specified by a list of regular expressions. The format of the reports can be defined with a template.
<<lessSvnReporter is intended to be called from the post-commit hook. Two types of reports are supported: single-event and event list reports.
The former generate reports relative to the current commit only, and are typically used to generate post-commit mails.
The latter generate reports relative to a list of commits, e.g. an RSS feed or a Web page showing the latest commits.
Reports can be restricted to certain criteria, specified by a list of regular expressions. The format of the reports can be defined with a template.
Download (0.028MB)
Added: 2005-12-05 License: GPL (GNU General Public License) Price:
1418 downloads
Hook::Scope 0.04
Hook::Scope is a Perl extension for adding hooks for exiting a scope. more>>
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 { print "bar"}; # can have multiple POSTs, last added, first run
PRE { print "this runs first" };
}
ABSTRACT
This module allows you to register subroutines to be executed when the scope they were registered in, has been left.
POST
POST takes a reference to a subroutine or a subroutine name and will register that subroutine to be executed when the scope is left. Note that even if the scope is left using die(), the subroutine will be executed.
<<lessSYNOPSIS
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 { print "bar"}; # can have multiple POSTs, last added, first run
PRE { print "this runs first" };
}
ABSTRACT
This module allows you to register subroutines to be executed when the scope they were registered in, has been left.
POST
POST takes a reference to a subroutine or a subroutine name and will register that subroutine to be executed when the scope is left. Note that even if the scope is left using die(), the subroutine will be executed.
Download (0.010MB)
Added: 2007-05-23 License: Perl Artistic License Price:
884 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 to post 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