Home Featured Top 40 Software Reviews Link To Us Advertise




buy arcade traffic

  • free games download
  • recover zip online
  • 3d engine
  • assets
  • image hosting
  • Useful Resources:

    C: \ Web Development \ Java & JavaScript \ Http 2.9 \ Author


    Opens in new window

    Http 2.9 - Author Info Page

    Description: HTTP GET/POST/HEAD/PROBE/CHASE java class library for http: or https:.. (more)


    Author Info for Http 2.9

    Author/Company Name: Canadian Mind Products

    Country: Canada

    Web Site: http://mindprod.com

    Programs listed: 86

    Share |


    Other listings by this author

    Ini iconIni 1.4   (Downloads: 459)
    Windows *.ini file verifier, tidier and sorter. Windows *.ini file verifier, tidier and sorter.

    Tidies and sorts windows *.ini files, ones that look like this:
    [section]
    ; a comment
    item=value;

    To use:

    java.exe -jar ini.jar C:\somedir\somefile.ini UTF-8

    Where UTF-8 in the encoding.
    Opera uses UTF-8. You can leave it to the default for most others.
    The original is named somefile.ini.old when you are done.

    Don't run ini ...

    Comparators iconComparators 1.4   (Downloads: 282)
    Comparator classes to include in your Java programs. Java classes to include in your programs. Includes:
    HTMLArrayComparator.java: Compares two arrays of Strings of HTML, ignoring embedded tags.
    HTMLComparator.java: Compares two Strings of HTML, ignoring embedded tags.
    StringComparator.java: Compares two Strings, case sensitive.
    StringComparatorIgnoreCase.java: Compares two Strings, case insensitive.

    Not useful on its own, though you can run the debugging harness with:

    ...

    SortedArrayList iconSortedArrayList 1.3   (Downloads: 193)
    Sort and Merge ArrayLists efficiently. This is a pair of library classes to include in your own
    code for manipulating ArrayLists.

    It consist of two classes: SortedArrayList and Merge.

    SortedArrayList is an ArrayList that remembers how it is
    sorted, so that if you ask it to sort, it can sometimes
    bypass the work when it is already in order. You declare the
    order you want and it keeps the list sorted, You just call
    sort whenever you need the list to ...

    ShellSort iconShellSort 1.4   (Downloads: 204)
    ShellSort is a simple sort suitable for 2000 or less elements. ShellSort is a simple sort suitable for 2000 or less
    elements. It sorts using a comparision routine you provide
    to compare two elements to be sorted.

    You can test it with:

    java.exe com.mindprod.shellsort.TestShellSort...

    CSV iconCSV 6.5   (Downloads: 947)
    Java to read, write, align, sort, reshape, pack... comma, tab-separated files. Java classes you can use standalone or embed in your own programs to
    Read, write, align, sort and pack comma, tab and semicolon-
    separated variable files, commonly known as CSV files.

    It consists of a 23 Java classes/utilities CSVReader, CSVWriter, CSVAlign, CSVChangeCase, CSVCondense, CSVDeDup, CSVDeDupField, CSVDeEntify, CSVDump, CSVEntify, CSVPack, CSVPatch, CSVReshape, CSVSort, CSVSortField, CSVTabToComma, CSVTemplate, CSVToHTML, CSVToS...

    Batik iconBatik 2.2   (Downloads: 449)
    Java to let you create a custom utility to find and delete all junk files. Java classes to let you create a custom utility to find and
    delete all junk files on your machine. Use one of the three
    scripts supplied as an example, to create your own XXX.java
    source code file then compile and use to rapidly clean your
    drive of junk.

    This program requires some elementary Java programming skill.

    To compile

    E:
    cd \com\mindprod\batik
    javac *.java

    to run, make s...

    SiteMap iconSiteMap 1.9   (Downloads: 293)
    Prepare Spidering Sitemap for Google and other search engines. You use a sitemap to encourage Google or other search
    engines to more frequently and efficiently index your
    website.

    For overview information about Google sitemaps see:
    mindprod.com/jgloss/google.html#SITEMAPS

    For overview information about this utility see:
    mindprod.com/jgloss/google.html#SITEMAPUTILITY.

    You use this sitemap utility because it is so quick you can
    use it before every upload so that...

    CMOSSave iconCMOSSave 4.6   (Downloads: 294)
    Check CMOS for corruption and automatically restore it. CMOSSave CMOSRest CMOSChk restore corrupted CMOS from
    backup and check that CMOS has not been tampered with.

    Naive users sometimes meddle with CMOS settings. We need a
    fast way to put the scores of subtle CMOS configuration
    settings back the way they were.

    Power surges can corrupt CMOS. We need a way for a naive
    user to quickly restore all the CMOS settings.

    If the battery fails, the contents will be los...

    Untouch iconUntouch 2.4   (Downloads: 393)
    Reverts files dates back if the files have not really changed. Documentation on the original student project outline
    mindprod.com/projects/untouchproj.html
    This explains how it works and some of its uses.

    Untouch supports the following command line switches which appear
    before the directories.
    -c or -clear = clear history first and take current file times as the new revert-to point.
    -f or -force = revert files back to previous dates whether they have changed or not.
    -h or -help =...

    Accumulate iconAccumulate 1.3   (Downloads: 169)
    Used to accumulate values by category. Used to accumulate values by category. It might be useful
    for example in a billing program to accumulate hours by
    various categories.

    It could be used to count how many times various words
    occurred in a document.

    All you need is:

    buckets.accumulate( "somecategory", someamount );

    And Accumulate looks after creating the buckets to
    accumulate new categories for you.

    e....

    LinkedList iconLinkedList 1.6   (Downloads: 169)
    LinkedList is replacement for Java Vector class. Classical doubly linked list. LinkedList is replacement for Java Vector class. Classical
    doubly linked list. Faster that Vector for insert/delete, but slower
    for indexed access. The interface is modeled on java.util.Vector, so
    you can try it both ways and pick which is faster for your needs.
    Heavily commented Java source included. copyright (c) 1997-2008 Canadian Mind
    Products. May be freely distributed and and used for any purpose
    except military.
    ...

    Mouse iconMouse 1.4   (Downloads: 229)
    In Java, allows you to find out where the mouse in on the screen In Java, allows you to find out where the mouse in on the
    screen, even when it is not over one of your apps. This has
    similar function to MouseInfo.getPointerInfo in Java 1.5+.
    This class will work in any version of Java.

    It uses JNI and a DLL, so it only works on Windows.

    You must install the nativemouse.dll somewhere on the path.

    Then your programs can find out the x and y position of the
    mouse, [(0,0...

    Password iconPassword 1.7   (Downloads: 502)
    Generates random passwords that are hard to guess. Generates random passwords that are hard to guess. It uses a crytographic quality random number generator. The passwords are generated locally in a Java Applet. They are never transmitted over the Internet, even in encrypted form.
    You can also run it as a standalone program, invoking it with
    java com.mindprod.password.Password
    or
    password.jar

    You can also run it online at the mindprod.com website without installing it....

    Primes iconPrimes 1.4   (Downloads: 455)
    calculates the prime numbers 1..N, tells you if N is prime etc. calculates the prime numbers 1..N, tells you if N is prime etc.

    Prints tables of primes.

    Computes the prime just below or above N.

    It is useful in computing optimal Hashtable sizes.

    Java source included....

    Echoserver iconEchoserver 1.3   (Downloads: 216)
    See what browsers and programs are sending to an HTTP Server. See what browsers and programs are sending to an HTTP Server.

    Simple server just dumps whatever it receives on the console.

    Echoserver is misnamed because it does not actually echo what it receives
    back to the browser....

    Pentium iconPentium 1.5   (Downloads: 237)
    Java code to tell you facts about the Pentium and AMD CPU. Pentium works on Windows and Intel Pentium class and AMD
    CPUs to determine the CPUID information such as the vendor,
    brand/model, step, model, instruction set family, cpu serial
    number, and the RDTSC Time stamp register for high
    resolution timing measured in CPU cycles since the last
    boot. It is designed to be incorporated in your own Java
    progams.

    You can also use it as a standalone utility with:

    java.ex...

    Masker iconMasker 1.9   (Downloads: 263)
    Hides email addresses from spammers as PNG image files. Produces PNG files (image files similar to GIFs, but
    smaller) that contain your email address. When you post them
    on your website, it is harder for spammer to harvest them.

    You can include the generated image files in the HTML on
    your website with: code like this:

    [a href="../image/mailto/roedy.png"]email me[/a]

    (pretend [] are angle brackets)

    or

    [mg src="image/mailto/r...






    All Programs:

    0 1 2 3 4 5 6 7 8 9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z # . ! @


    All Authors:

    0 1 2 3 4 5 6 7 8 9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z # . ! @


    RSS Feeds:
    (Current Category)

    RSS Feed for New Releases and Updates New releases & updates

    RSS Feed for New Shareware Releases New shareware releases

    RSS Feed for New Freeware Releases New freeware releases

    RSS Feed for Most Popular Software Most popular software

    RSS Feed for Top Rated Software Top rated software

    Feeds List in OPML Feeds list in OPML


    Useful Resources:

    Domain Quester iconDomain Quester 6.02: Search for domains by unlimited number of keywords

    Audio DVD Maker iconAudio DVD Maker 1.0: Audio DVD Maker is an innovative utility for you to personalize your own DVD

    AbleFTP iconAbleFTP 11.10: AbleFtp - FTP client designed to automate and run 1000+ FTP tasks a day.

    Domain Quester Pro iconDomain Quester Pro 6.02: Search for domains by unlimited number of keywords

    Home | Featured | Submit | Link To Us | Contact Us | FAQ | About Us