submitting url to msn
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1212
TinyURL 1.3
TinyURL is a Konversation script that makes a TinyURL (http://tinyurl.com) from a given URL. more>>
TinyURL is a Konversation script that makes a TinyURL (http://tinyurl.com) from a given URL.
Just copy it to /usr/share/apps/konversation/scripts/ (system wide) or to ~/.kde/share/apps/konversation/scripts/ (for just your user).
<<lessJust copy it to /usr/share/apps/konversation/scripts/ (system wide) or to ~/.kde/share/apps/konversation/scripts/ (for just your user).
Download (0.002MB)
Added: 2007-06-27 License: GPL (GNU General Public License) Price:
851 downloads
IRC to MSN gateway 0.1
This is the IRC gateway for Microsoft(tm) Messenger. more>>
This is the IRC gateway for Microsoft(tm) Messenger.
You probably wonder what this is and why I wrote this. Some more information can be found in the DESIGN document that is included in this package.
This software is written by Johannes Verelst and is licensed through the GPL license (http://www.gnu.org/licenses/gpl.html).
Note that this is pre-alpha code, it probably does a bit that you want, but dont email me bugreports or feature requests. It is under heavy development.
If this program doesnt run try to install corectly all required perl modules yourself.
The idea for this program came when I was getting annoyed by the fact that I had to use different programs for both IRC and MSN. Since I dont know of any good MSN clients that can do IRC too (on unix, ofcourse), I started thinking about the other way around: an IRC client that can do MSN.
When I saw a piece of software written by Adam Swann that allows easy connectivity to MSN with perl, I decided to write an IRC server in perl that would connect to MSN for you. This is the result.
<<lessYou probably wonder what this is and why I wrote this. Some more information can be found in the DESIGN document that is included in this package.
This software is written by Johannes Verelst and is licensed through the GPL license (http://www.gnu.org/licenses/gpl.html).
Note that this is pre-alpha code, it probably does a bit that you want, but dont email me bugreports or feature requests. It is under heavy development.
If this program doesnt run try to install corectly all required perl modules yourself.
The idea for this program came when I was getting annoyed by the fact that I had to use different programs for both IRC and MSN. Since I dont know of any good MSN clients that can do IRC too (on unix, ofcourse), I started thinking about the other way around: an IRC client that can do MSN.
When I saw a piece of software written by Adam Swann that allows easy connectivity to MSN with perl, I decided to write an IRC server in perl that would connect to MSN for you. This is the result.
Download (0.009MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1229 downloads
W3T URL Shrinker 0.2
w3t.org URL Shrinker is a small url generator via right-click. more>>
w3t.org URL Shrinker is a small url generator via right-click. When you want to share a long URL (like on many news articles), just right-click on the page you want to link to and choose "Shorten this URL"; and youll get a super-short URL to use that forwards to the longer one.
The site now includes the ability to use custom URL "tags" like "ff" as in http://w3t.org/?c=ff The next version of the extension should include this new site feature.
<<lessThe site now includes the ability to use custom URL "tags" like "ff" as in http://w3t.org/?c=ff The next version of the extension should include this new site feature.
Download (0.038MB)
Added: 2007-05-09 License: MPL (Mozilla Public License) Price:
905 downloads
Short URL Script 1.0
Short URL Script lets you have a URL shortening service under your own domain. more>>
Short URL Script allows you to have a URL shortening service under your own domain.
Short URL Script script can create shorter URLs that do not break in e-mails. As a site owner you can use the script for managing downloads, masking URLs and keeping track of how many times a link has been clicked.
Main features:
- Visitors can enter a URL and create a short URL that redirects to the original URL
- Visitors can enter an individual ID instead of the randomly created string
- Admin area for deactivating, activating, deleting and searching URLs
- Completely template driven
- Installation routine
<<lessShort URL Script script can create shorter URLs that do not break in e-mails. As a site owner you can use the script for managing downloads, masking URLs and keeping track of how many times a link has been clicked.
Main features:
- Visitors can enter a URL and create a short URL that redirects to the original URL
- Visitors can enter an individual ID instead of the randomly created string
- Admin area for deactivating, activating, deleting and searching URLs
- Completely template driven
- Installation routine
Download (0.31MB)
Added: 2006-08-17 License: Free for non-commercial use Price:
720 downloads
URL Rewriter 1.1
URL Rewriter is a tool for rewriting URL in Servlet. more>>
URL Rewriter is a tool for rewriting URL in Servlet. It is similar to mod_rewrite. This project is written in Java and it is licensed under LGPL.
< span style=color:blue >< b >Main features:< /b >< /span >< br/ >
- Easy installation
- Easy extension. You can easily write new tags.
- Maven support.
< b >Installing Rewriter< /b >
If you are not using Maven you need to add this two jars to classpath (eg. WEB-INF/lib/): softeu-rewriter-1.1.jar and xom-1.1.jar.
If you are using Maven add dependency to pom.xml:
< !-- url rewriter -- >
< dependency >
< groupId >cz.softeu< /groupId >
< artifactId >softeu-rewriter< /artifactId >
< version >1.1< /version >
< scope >runtime< /scope >
< /dependency >
this library is not yet in main Maven repository, so add SoftEU repository to pom.xml:
< repositories >
< repository >
< id >softeu-repo< /id >
< url >http://maven.softeu.cz/< /url >
< /repository >
< /repositories >
Add to web.xml:
< !-- url rewriter -- >
< filter >
< filter-name >RewriterFilter< /filter-name >
< filter-class >cz.softeu.rewriter.RewriterFilter< /filter-class >
< /filter >
< filter-mapping >
< filter-name >RewriterFilter< /filter-name >
< url-pattern >/*< /url-pattern >
< /filter-mapping >
Create WEB-INF/rewriter-config.xml:
< rewriter-config xmlns:b="http://rewriter.softeu.cz/basic/" >
< b:regex >
< from >^/news/(.*)$< /from >
< to >/news.jsf?id=$1< /to >
< /b:regex >
< /rewriter-config >
<<less< span style=color:blue >< b >Main features:< /b >< /span >< br/ >
- Easy installation
- Easy extension. You can easily write new tags.
- Maven support.
< b >Installing Rewriter< /b >
If you are not using Maven you need to add this two jars to classpath (eg. WEB-INF/lib/): softeu-rewriter-1.1.jar and xom-1.1.jar.
If you are using Maven add dependency to pom.xml:
< !-- url rewriter -- >
< dependency >
< groupId >cz.softeu< /groupId >
< artifactId >softeu-rewriter< /artifactId >
< version >1.1< /version >
< scope >runtime< /scope >
< /dependency >
this library is not yet in main Maven repository, so add SoftEU repository to pom.xml:
< repositories >
< repository >
< id >softeu-repo< /id >
< url >http://maven.softeu.cz/< /url >
< /repository >
< /repositories >
Add to web.xml:
< !-- url rewriter -- >
< filter >
< filter-name >RewriterFilter< /filter-name >
< filter-class >cz.softeu.rewriter.RewriterFilter< /filter-class >
< /filter >
< filter-mapping >
< filter-name >RewriterFilter< /filter-name >
< url-pattern >/*< /url-pattern >
< /filter-mapping >
Create WEB-INF/rewriter-config.xml:
< rewriter-config xmlns:b="http://rewriter.softeu.cz/basic/" >
< b:regex >
< from >^/news/(.*)$< /from >
< to >/news.jsf?id=$1< /to >
< /b:regex >
< /rewriter-config >
Download (0.017MB)
Added: 2007-01-25 License: GPL (GNU General Public License) Price:
1002 downloads
showposition 0.5
showposition is a Web-based tool that shows (using Google Maps) the position provided in the URL. more>>
showposition is a Web-based tool that shows (using Google Maps) the position provided in the URL, with a comment provided in the URL.
showposition is useful if you want to explain to somebody (e.g. on Usenet) where something is.
<<lessshowposition is useful if you want to explain to somebody (e.g. on Usenet) where something is.
Download (0.003MB)
Added: 2006-06-14 License: GPL (GNU General Public License) Price:
1228 downloads
Tab URL Copier 1.1.8.20061010
Tab URL Copier is an extension which copies the URLs of all open tabs. more>>
Tab URL Copier is an extension which copies the URLs of all open tabs.
Copies the URLs of all open tabs. Puts Copy Tab URLs item in right click menu of tabs and Edit main menu.
Useful for bibliographies, quickly sending someone a list of pages to view etc.
Can now open tabs from previously copied list.
<<lessCopies the URLs of all open tabs. Puts Copy Tab URLs item in right click menu of tabs and Edit main menu.
Useful for bibliographies, quickly sending someone a list of pages to view etc.
Can now open tabs from previously copied list.
Download (0.009MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
928 downloads
morigin email classifier 0.93
morigin email classifier is a filter that classifies and tags email messages. more>>
morigin email classifier is a filter that classifies and tags email messages based on the DNS information of the system submitting the mail to your organization.
morigin email classifier can then be used to improve upon existing spam filters such as SpamAssassin.
<<lessmorigin email classifier can then be used to improve upon existing spam filters such as SpamAssassin.
Download (0.088MB)
Added: 2005-11-25 License: GPL (GNU General Public License) Price:
1428 downloads
Text::Emoticon::MSN 0.04
Text::Emoticon::MSN is a Perl module with emoticon filter of MSN Messenger. more>>
Text::Emoticon::MSN is a Perl module with emoticon filter of MSN Messenger.
SYNOPSIS
use Text::Emoticon::MSN;
my $emoticon = Text::Emoticon::MSN->new(
imgbase => "http://example.com/emo",
);
my $text = "Yet Another Perl Hacker ;-)";
print $emoticon->filter($text);
# it prints
# Yet Another Perl Hacker
Text::Emoticon::MSN is a text filter that replaces text emoticons like ":-)", ";-P", etc. to the icons of MSN Messenger, detailed in http://messenger.msn.com/Resource/Emoticons.aspx
METHODS
new
$emoticon = Text::Emoticon::MSN->new(
imgbase => "http://yourhost.example.com/images/emoticons",
xhtml => 1,
class => "emoticon",
);
Constructs new Text::Emoticon::MSN object. It accepts two options:
imgbase
Base URL where icon gif files are located. It defaults to "http://messenger.msn.com/Resource/emoticons" (the MSN site) but I dont recommend that, as theres a possibility MSN will ban your site.
xhtml
Whether it uses XHTML style img tags. It defaults to 1.
class
CSS class used in img tags. It defaults to nothing.
$emoticon = Text::Emoticon::MSN->new(class => "emo");
will print:
< img src="blah.gif" class="emo" / >
strict
Whether it will disable smileys with space in them. defaults to 0.
filter
$filtered_text = $emoticon->filter($text);
Filters emoticons in text and returns img tagged text (HTML).
<<lessSYNOPSIS
use Text::Emoticon::MSN;
my $emoticon = Text::Emoticon::MSN->new(
imgbase => "http://example.com/emo",
);
my $text = "Yet Another Perl Hacker ;-)";
print $emoticon->filter($text);
# it prints
# Yet Another Perl Hacker
Text::Emoticon::MSN is a text filter that replaces text emoticons like ":-)", ";-P", etc. to the icons of MSN Messenger, detailed in http://messenger.msn.com/Resource/Emoticons.aspx
METHODS
new
$emoticon = Text::Emoticon::MSN->new(
imgbase => "http://yourhost.example.com/images/emoticons",
xhtml => 1,
class => "emoticon",
);
Constructs new Text::Emoticon::MSN object. It accepts two options:
imgbase
Base URL where icon gif files are located. It defaults to "http://messenger.msn.com/Resource/emoticons" (the MSN site) but I dont recommend that, as theres a possibility MSN will ban your site.
xhtml
Whether it uses XHTML style img tags. It defaults to 1.
class
CSS class used in img tags. It defaults to nothing.
$emoticon = Text::Emoticon::MSN->new(class => "emo");
will print:
< img src="blah.gif" class="emo" / >
strict
Whether it will disable smileys with space in them. defaults to 0.
filter
$filtered_text = $emoticon->filter($text);
Filters emoticons in text and returns img tagged text (HTML).
Download (0.003MB)
Added: 2006-12-18 License: Perl Artistic License Price:
1047 downloads
Copy URL 1.0
Copy URL is an extension which adds an entry to the popup menu. more>>
Copy URL is an extension which adds an entry to the popup menu.
This extension adds an entry to the popup menu "Copy URL of this page". When selected, the URL of the current page will be copied to the system clipboard. The URL address should be in the clipboard for the use of other applications as well.
<<lessThis extension adds an entry to the popup menu "Copy URL of this page". When selected, the URL of the current page will be copied to the system clipboard. The URL address should be in the clipboard for the use of other applications as well.
Download (0.002MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
934 downloads
REMITT 0.3.3
REMITT is Electronic Medical Information Translation and Transmission. more>>
REMITT is Electronic Medical Information Translation and Transmission.
REMITT is a revolutionary medical information translation and transmission system, which is primarily used for preparing and submitting medical billing data.
REMITT works independent of any specific electronic medical record (EMR) or practice management (PM) system, and can interface with any EMR or PM system which implements its application programming interface (API). The first system to do so has been FreeMED.
Currently Supported Formats
- HCFA-1500/CRM-1500
- ANSI NSF X12 837 Professional
Currently Supported Output Types
- PDF Document (with optional overlaying)
- PRN File
- X12 Message
- FreeClaims.com Direct Submission
- GatewayEDI.com Direct Submission
The name REMITT is a recursive acronym.
<<lessREMITT is a revolutionary medical information translation and transmission system, which is primarily used for preparing and submitting medical billing data.
REMITT works independent of any specific electronic medical record (EMR) or practice management (PM) system, and can interface with any EMR or PM system which implements its application programming interface (API). The first system to do so has been FreeMED.
Currently Supported Formats
- HCFA-1500/CRM-1500
- ANSI NSF X12 837 Professional
Currently Supported Output Types
- PDF Document (with optional overlaying)
- PRN File
- X12 Message
- FreeClaims.com Direct Submission
- GatewayEDI.com Direct Submission
The name REMITT is a recursive acronym.
Download (0.52MB)
Added: 2007-05-19 License: MPL (Mozilla Public License) Price:
889 downloads
MezzengerKlient 0.1
MezzengerKlient (MZK) is a simple PHP class for making MSN Messenger bots. more>>
MezzengerKlient (MZK) is a simple PHP class for making MSN Messenger bots. It uses object oriented programming, with the use of Events, for handling and processing the actions made in the Notification Session and SwitchBoard sessions. The project uses the MSNP9 protocol.
<<less Download (MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
910 downloads
Sethi Search Utility 0.8.7
Sethi Search Utility provides a simple command line utility to submit a search to Google, Yahoo!, or MSN. more>>
Sethi Search Utility provides a simple command line utility to submit a search to Google, Yahoo!, or MSN.
Sethi Search Utility is a simple command line utility to submit a search to Google, Yahoo!, or MSN and show the (text) results on standard output. Support for several search engines is included.
Its currently in serious need of a re-write, especially to avoid scraping and become a good engine using the search APIs provided.
Enhancements:
- The Google configuration was updated.
<<lessSethi Search Utility is a simple command line utility to submit a search to Google, Yahoo!, or MSN and show the (text) results on standard output. Support for several search engines is included.
Its currently in serious need of a re-write, especially to avoid scraping and become a good engine using the search APIs provided.
Enhancements:
- The Google configuration was updated.
Download (MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
558 downloads
url-sniff 1.0
url-sniff provides the ability to sniff HTML 1.1 GET request that goes throught our server. more>>
url-sniff script provides the ability to sniff HTML 1.1 GET request that goes throught our server.
<<less Download (0.006MB)
Added: 2006-05-08 License: GPL (GNU General Public License) Price:
1273 downloads
Tiny.pl 0.3.1
Tiny.pl is a Firefox extension that allows to shorten a current page URL or any Link on a webpage with a single click. more>>
Tiny.pl is a Firefox extension that allows to shorten a current page URL or any Link on a webpage by right clicking and choosing an option from pop-up menu.
<<less Download (0.005MB)
Added: 2007-05-10 License: MPL (Mozilla Public License) Price:
899 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 submitting url to msn 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