Tags : Browse Projects

Select a tag to browse associated projects and drill deeper into the tag cloud.

Feed Launch .NET

Compare

  Analyzed about 1 year ago

Feed Launch .NET is an open-source feed creator for both RSS 2.0 and ATOM 1.0 Feeds. A clean gui interface makes feed creation intuitive. Preview your Feeds or save them on your hard disk. Upload feature via FTP is integrated directly into the application.

6.97K lines of code

0 current contributors

over 12 years since last commit

1 users on Open Hub

Activity Not Available
5.0
 
I Use This

Java EE Cache Filter

Compare

  Analyzed about 1 year ago

Java EE Cache Filter provides a collection of common Servlet filters for Java web applications allowing you to transparently set HTTP cache headers in order to enable browser caching. Why does cache matter? Web page designs are getting richer and richer, which means more scripts, stylesheets ... [More] , images, and Flash in the page. A first-time visitor to your page may have to make several HTTP requests, but by using the Expires header you make those components cacheable. This avoids unnecessary HTTP requests on subsequent page views. Browsers (and proxies) use a cache to reduce the number and size of HTTP requests, making web pages load faster. [Less]

305 lines of code

0 current contributors

about 10 years since last commit

1 users on Open Hub

Activity Not Available
0.0
 
I Use This

Double Choco Latte

Compare

  No analysis available

Double Choco Latte is a project to create a solution for managing some IT departments including software development and call center activity.

0 lines of code

0 current contributors

0 since last commit

1 users on Open Hub

Activity Not Available
0.0
 
I Use This
Mostly written in language not available
Licenses: gpl

proxytunnel

Compare

  Analyzed about 1 year ago

Proxytunnel is a program that connects stdin and stdout to an origin server somewhere in the Internet through an industry standard HTTPS proxy.This will allow you for example to access SSH servers when you normally only have http(s) access.

2.69K lines of code

1 current contributors

about 1 year since last commit

1 users on Open Hub

Activity Not Available
5.0
 
I Use This
Licenses: No declared licenses

Angie

Compare

  Analyzed about 1 year ago

Angie is an efficient, powerful and scalable web server, that was forked from nginx by some of its former core devs, with intention to extend functionality far beyond original version. Angie is a drop-in replacement for nginx, so you can use existing nginx configuration without major changes.

261K lines of code

0 current contributors

about 1 year since last commit

1 users on Open Hub

Activity Not Available
5.0
 
I Use This

ExpressoBrowser

Compare

  No analysis available

ExpressoBrowser is designed to be a simple fast web browser using WebKit Cairo and JavaScriptCore rendering engine with a C# wrapper. The project aims to eventually support Windows, Mac and Linux using native user interface calls (Win.Forms/Aero, Cocoa# and GTK#)

0 lines of code

0 current contributors

0 since last commit

1 users on Open Hub

Activity Not Available
0.0
 
I Use This
Mostly written in language not available
Licenses: bsd, gpl

Net::Curl::Simple

Compare

  Analyzed about 1 year ago

simplified Net::Curl interface

2.23K lines of code

0 current contributors

over 12 years since last commit

1 users on Open Hub

Activity Not Available
0.0
 
I Use This

Madcow

Compare

  Analyzed about 1 year ago

Test automation for the rest of us. Madcow is aimed at development and system-integration organisations that have a need to develop robust, automated, regression test suites. The Madcow philosophy lends itself to an agile, collaborative, development environment, where the development team are ... [More] continuously delivering builds to the test team to test. If the test team use Madcow to assist them in covering integration, system and acceptance testing in an automated way, they can be freed up to conduct explorative, destructive, ad-hoc and useability testing - thus better utilising their time and expertise. Madcow provides: Automated Developer Functional Testing Automated System / Functional Scenario Testing Acceptance Testing [Less]

15.9K lines of code

1 current contributors

over 5 years since last commit

1 users on Open Hub

Activity Not Available
0.0
 
I Use This

Platinum C++ Framework

Compare

  Analyzed about 1 year ago

Platinum (Pt) is a portable, modular and modern C++ class framework.

1.79M lines of code

0 current contributors

about 1 year since last commit

1 users on Open Hub

Activity Not Available
0.0
 
I Use This

pacparser

Compare

  Analyzed about 1 year ago

pacparser is a library to parse proxy auto-config (PAC) files. Proxy auto-config files are a vastly used proxy configuration method these days. Web browsers can use a PAC file to determine which proxy server to use or whether to go direct for a given URL. PAC files are written in JavaScript and can ... [More] be programmed to return different proxy methods (e.g. "PROXY proxy1:port; DIRECT") depending upon URL, source IP address, protocol, time of the day etc. PAC files introduce a lot of possibilities. Look at the wikipedia link above to find out more about them. Needless to say, PAC files are now a widely accepted method for proxy configuration management and companies all over are using them in corporate environment. Almost all popular web browsers support PAC files. The idea behind pacparser is to make it easy to add this PAC file parsing capability to any program (C and python supported right now). It comes as a shared C library and a python module which can be used to make any C or python program PAC scripts intelligent. Some very useful targets could be popular web software like wget, curl and python-urllib. Please look at the README and other links for more information. Usage ExamplesUsing it with python: >>> import pacparser >>> pacparser.init() >>> pacparser.parse_pac('examples/wpad.dat') >>> pacparser.find_proxy('http://www.google.com', 'www.google.com') 'PROXY proxy1.manugarg.com:3128; PROXY proxy2.manugarg.com:3128; DIRECT' >>> pacparser.find_proxy('http://www2.manugarg.com', 'www2.manugarg.com') 'DIRECT' >>> pacparser.cleanup() >>>Using it in C: manugarg@hobbiton:~$ cat pactest.c #include int pacparser_init(); int pacparser_parse_pac(char* pacfile); char *pacparser_find_proxy(char *url, char *host); void pacparser_cleanup(); int main(int argc, char* argv[]) { char *proxy; pacparser_init(); pacparser_parse_pac(argv[1]); proxy = pacparser_find_proxy(argv[2], argv[3]); printf("%s\n", proxy); pacparser_cleanup(); } manugarg@hobbiton:~$ gcc -o pactest pactest.c -lpacparser manugarg@hobbiton:~$ ./pactest wpad.dat http://www.google.com www.google.com PROXY proxy1.manugarg.com:3128; PROXY proxy2.manugarg.com:3128; DIRECT [Less]

83.4K lines of code

0 current contributors

about 1 year since last commit

1 users on Open Hub

Activity Not Available
0.0
 
I Use This