WareSeeker Search Software

cc


Sponsored Links
Collapse All
Software Name Software Type Category Price
1

CC Guestbook


script CGI Perl Free
View Detail
Download CC GuestbookDownload CC Guestbook
CC Guestbook is a simple guestbook program that is very easy to configure and install. It features a notification facility which sends an email alert to the guestbook owner whenever new entries are made. It may also be used as a post-it board to allow visitors to a web site to just post messages.
Tags:
2

CC Newslet


script PHP Free
View Detail
Download CC NewsletDownload CC Newslet
CC Newslet is a small utility that displays news or events for your website. Using PHP and MYSQL, it is easily adaptable to your own sites needs. Simple to configure and customize, this is a great script for PHP beginners. The administration panel has all the functions to perform tasks like adding and deleting articles, editing, and user maintenance. A css stylesheet controls the look and feel of the articles, and there are two ways to display the results: 1.) Blog-style or 2.) Headlines. Articles may contain html tags so you can easily add links, images, paragraphs, line breaks, etc to each newsbit.
Tags:
3

CC Log


script CGI Perl Free
View Detail
Download CC LogDownload CC Log
CC Log is a very simple logging script which logs the hits to a single web page. This script is typically useful for logging the hits to the main index page. It collect information like date and time of the hit, browser agent used by the visitor, host IP addresses, and HTTP referrer whenever available. The script logs everything on to an HTML log file which the user can easily view under any browser. This script requires SSI.
Tags:
4

CC Trashmail 1.0


windows Email Tools->Anti SPAM Tools Free
View Detail
Download CC Trashmail 1.0Download CC Trashmail 1.0
610KB

Eine Webseite möchte Ihre Mailadresse erfahren? Um dies durchzusetzen sendet die Webseite einen Freischaltcode per Mail ... Aber möglicherweise danach auch massenhaft Newsletter, Spam und sonstige "besonders wertvolle" Informationen. Legen Sie statt dessen eine Wegwerfadresse z.B. bei Trashmail.net an. Trashmail.net leitet nur die erste auf dieser Adresse erhaltene Mail an Sie weiter - alle folgenden Mails werden gesperrt - Ihr Postfach entlastet...

CC Trashmail v1.0 release is New Release.


Tags:
5

CC Calendar 5.4


mac Multimedia Design->Graphics Free
View Detail
Download CC Calendar 5.4Download CC Calendar 5.4
395 KB
If you need a great looking Daily/Monthly Calendar, this solution may be just what you are looking for! This calendar acts like a window a related database of appointments, though you could replace this appointments database with any date-sensitive database from your own solution.

CC Calendar lets you add sophisticated calendar scheduling to your solutions. Easy to modify, clearly written and well documented.

CC Calendar is completely unlocked so that you can modify it to suit your needs. The calendar displays a single database of appointments which you may filter by user (the person the appointment is "for").

Appointments are visible on a Daily View as well as on a Monthly View; both views respect the filter-by-user feature. CC Calendar is multi-user ready and easy to modify. Enhanced versions with filtering and color-coding are available for sale at the Cleveland Consulting web site.



Tags:
6

CC File Transfer 3.1


windows Network Internet->File Sharing $30.0
View Detail
Download CC File Transfer 3.1Download CC File Transfer 3.1
530KB

CC File Transfer, web based PC to PC...

CC File Transfer v3.1 release is Major Update.


Tags:
7

CC Navigation 2.2


mac Utilities->System Utilities Free
View Detail
Download CC Navigation 2.2Download CC Navigation 2.2
930 KB
Let users feel more comfortable with your software by providing an easy to use system map. Using dynamic navigation scripts, this map follows users around and always shows their current location (even when they dont use the map to navigate, such as when they click on a record in a list view).

Navigation settings also let you control the status bar and restrict basic commands (new, list, etc.) based on the layout (requires that users log in with "editing only" access).

Here are some key features of "CC Navigation":

· Completely Unlocked, Multi-User, Built in Users Guide.
· Navigate Between Files and layouts using a Single, Dynamic Map.
· Control Layout Access as System Map Attributes (Ie Oustide FMPro s Built in Security).
· Create Admin Only Layouts & Functions.



Tags:
8

B::CC 5.8.8


linux Programming->Libraries Free
View Detail
Download B::CC 5.8.8Download B::CC 5.8.8
12.2 MB
B::CC is Perl compilers optimized C translation backend.

SYNOPSIS

perl -MO=CC[,OPTIONS] foo.pl

This compiler backend takes Perl source and generates C source code corresponding to the flow of your program. In other words, this backend is somewhat a "real" compiler in the sense that many people think about compilers. Note however that, currently, it is a very poor compiler in that although it generates (mostly, or at least sometimes) correct code, it performs relatively few optimisations. This will change as the compiler develops. The result is that running an executable compiled with this backend may start up more quickly than running the original Perl program (a feature shared by the C compiler backend--see B::C) and may also execute slightly faster. This is by no means a good optimising compiler--yet.

OPTIONS

If there are any non-option arguments, they are taken to be names of objects to be saved (probably doesnt work properly yet). Without extra arguments, it saves the main program.

-ofilename

Output to filename instead of STDOUT

-v

Verbose compilation (currently gives a few compilation statistics).

--

Force end of options

-uPackname

Force apparently unused subs from package Packname to be compiled. This allows programs to use eval "foo()" even when sub foo is never seen to be used at compile time. The down side is that any subs which really are never used also have code generated. This option is necessary, for example, if you have a signal handler foo which you initialise with $SIG{BAR} = "foo". A better fix, though, is just to change it to $SIG{BAR} = &foo. You can have multiple -u options. The compiler tries to figure out which packages may possibly have subs in which need compiling but the current version doesnt do it very well. In particular, it is confused by nested packages (i.e. of the form A::B) where package A does not contain any subs.

-mModulename

Instead of generating source for a runnable executable, generate source for an XSUB module. The boot_Modulename function (which DynaLoader can look for) does the appropriate initialisation and runs the main part of the Perl source that is being compiled.

-D

Debug options (concatenated or separate flags like perl -D).

-Dr

Writes debugging output to STDERR just as its about to write to the programs runtime (otherwise writes debugging info as comments in its C output).

-DO

Outputs each OP as its compiled

-Ds

Outputs the contents of the shadow stack at each OP

-Dp

Outputs the contents of the shadow pad of lexicals as its loaded for each sub or the main program.

-Dq

Outputs the name of each fake PP function in the queue as its about to process it.

-Dl

Output the filename and line number of each original line of Perl code as its processed (pp_nextstate).

-Dt

Outputs timing information of compilation stages.

-f

Force optimisations on or off one at a time.

-ffreetmps-each-bblock

Delays FREETMPS from the end of each statement to the end of the each basic block.

-ffreetmps-each-loop

Delays FREETMPS from the end of each statement to the end of the group of basic blocks forming a loop. At most one of the freetmps-each-* options can be used.

-fomit-taint

Omits generating code for handling perls tainting mechanism.

-On

Optimisation level (n = 0, 1, 2, ...). -O means -O1. Currently, -O1 sets -ffreetmps-each-bblock and -O2 sets -ffreetmps-each-loop.


Tags:
9

CC All (Entourage) 1.0


mac Utilities->Internet Utilities Free
View Detail
Download CC All (Entourage) 1.0Download CC All (Entourage) 1.0
20 KB
CC All (Entourage) is an Entourage AppleScript opens up a new draft message window based on the selected received message, sent by original sender to several recipients, so you can "reply to all" with only the original sender in the To: field, and all original To recipients (except yourself) and original CC recipients, now in the CC: field.


Tags:
10

Dreamstation.cc News 1.01


windows Windows Widgets->News Free
View Detail
Download Dreamstation.cc News 1.01Download Dreamstation.cc News 1.01
99.4 KB
Dreamstation News Feed for the latest video game news from www.dreamstation.cc.


Dreamstation.cc News widget displays, right on your desktop, the latest news and feeds from this website.

Now you can stay up-to-date with the latest content and news from the gamers world.


Tags:
11

CC Contacts (OE) 1.2


mac Utilities->Internet Utilities Free
View Detail
Download CC Contacts (OE) 1.2Download CC Contacts (OE) 1.2
9 KB
With CC Contacts (OE) you can select contacts or groups in your Address Book to enter them as CC recipients of a new mail message, or a reply, forward or resend.

Whats New in This Release:

· Works in non-English-language systems, and from the Address Book either in its own window or displayed in the main Outlook Express window.
· If you include a contact [or a group] with no email address, instead of failing to enter any CC contacts as before, all valid email contacts are entered and you are alerted to the ones omitted.
· Displays the contact icon, rather than the yellow @ sign, in the CC field.



Tags:
12

oAzium cc Authorize 2.6.11


mac Utilities->Others $19
View Detail
Download oAzium cc Authorize 2.6.11Download oAzium cc Authorize 2.6.11
0.654 MB
oAzium cc Authorize is a FileMaker Pro plug-in that turns your FileMaker Pro application into a secure credit card authorization solution that uses your existing internet connection instead of a modem.

Tags:
13

CC File Transfer 2.0


windows Network Internet->File Sharing $29
View Detail
Download CC File Transfer 2.0Download CC File Transfer 2.0
534 KB
CC File Transfer is a web based file transfer software built for people that need transfer file pc to pc regularly. it features in ease of use, speed, reliability, and security.

CC File Transfer will eliminate the hassles of FTP or limitations of E-mail. This program is designed to help you transfer file quickly and easily from PC to PC. The simple interface makes transfering file as easy as dragging and dropping.

Best of all, CC File Transfer can transfer file over the Internet or home network using TCP/IP.

CC File Transfer even lets you perform Windows-to-Linux transfers. If you need file transfer, you need CC File Transfer.

Here are some key features of "CC File Transfer":

· Transfer file between computers running any version of Windows.
· Transfer file over the Internet or home network using TCP/I P.
· Even transfer file between Windows and Linux.
· Without client software installation.
· Password protect.
· Support multithread downloading.
· Send large file and receive large file via the Internet Without the hassle of FTP or the limitations of E-mail!


Limitations:

· 15 day trial

Tags:
14

CC File Transfer 1.4


windows Network Internet->File Sharing $29.95
View Detail
Download CC File Transfer 1.4Download CC File Transfer 1.4
492 KB
is a web based file transfer software built for people that need transfer file pc to pc regularly. It features in ease of use, speed, reliability, and security. CC File Transfer eliminates the hassles of FTP and limitations of Email.
Tags:
15

CC Print Monitor 1.6


windows System->System Miscellaneous $19.95
View Detail
Download CC Print Monitor 1.6Download CC Print Monitor 1.6
1.87 MB
CC Print Monitor description
CC Print Monitor. It is a small program for track printer activity CC Print Monitor is a small application to track printer activity. Intercepts and stop all document until authorization.

It can be launched automatically.
It reports about printed documents date and time, user, size, pages, status and more.

CC Print Monitor support a white list (for users and/or computers) whos have direct pass to print.

Limitations:

· Unregistered version is limited to 40 days test time and only one printer can be monitored at time. Both limitations are retired at soon the licence number is entered.

Tags:
16

CC Time Tracking 2.6


mac Business Finance->Business $299
View Detail
Download CC Time Tracking 2.6Download CC Time Tracking 2.6
280 KB
CC Time Tracking can log time against clients and projects while categorizing time according to your own in-house cost centers and your client s billing categories. CC Time also lets you analyze your time with flexible pie charts. (A single-user license of the Charts Plugin is included in the Pro Versions.)

You can also format a found set of time into a single text string that can easily be pasted into other applications or invoices. All versions of CC Time are completely unlocked.

To make integration with your existing systems as simple as possible, the Pro Versions let you log time by "Remote Control" where you can simply send CC Time instructions from your own file(s), enter your time in a small mini-window, and then quickly return to your solution.

Tags:
17

CC Startup Master 1.2


windows System->System Miscellaneous $9.95
View Detail
Download CC Startup Master 1.2Download CC Startup Master 1.2
1.62 MB
CC Startup Master description
CC Startup Master is a simple software that will helpp you manage your startup process CC Startup Master is a simple software that will helpp you manage your startup process. Remove or add a process from Windows startup.

Limitations:

·
Easy to find and remove system startup items
· Beatiful UI
· reboot option after changed
· Just easy to add items to startup group
· Show details about startup items


Limitations:

· nag screen

Tags:
18

CC Contacts (Entourage) 1.2


mac Utilities->Internet Utilities Free
View Detail
Download CC Contacts (Entourage) 1.2Download CC Contacts (Entourage) 1.2
11 KB
Although Entourage has that wonderful mini-Address Book in new message windows and forwards which makes it simple to drag a contact to the CC field, it can still be tedious to do CCs since you first have to click to get a CC area to open, and especially to do several at once, or if you don t have the mini-Address Book enabled.

CC Contacts (Entourage) derived from its equivalent script for Outlook Express, is still very useful. You can run it from either the Address Book s own window, the Address Book as displayed in the main Entourage window, or the mini-Address Book window of the message itself.

Whats New in This Release:

· Fixes a bug which made the script unusable
· lets you run it from the mini-Address Book
· works with non-English-language systems with the main Address Book.
· It works now with groups, too, and displays contacts and groups in the CC field with their icon instead of the yellow @ sign.
· If you include a contact with no email address, instead of incorrectly entering the contact as before, which would then stop Entourage when you tried to send the message, only valid email contacts are entered, and you are alerted to the faulty one(s) omitted.



Tags:
19

CC checker 1.0.1


windows Business Finance->Business Cards Free
View Detail
Download CC checker 1.0.1Download CC checker 1.0.1
4.95 MB
CC checker description
A software utility that allows you to check credit card number for validity. Credit Card Checker (CC Checker) is a software utility that allows you to check the validity of your credit card number. It can verify Visa, MasterCard, Diners Club, Carte Blanche, American Express (AMEX), Discover, card numbers. It uses LUHN10 algorithm as well as first digits verification.

Tags:
20

CC PDF Converter 0.7


windows Business Finance->PDF Tools Free
View Detail
Download CC PDF Converter 0.7Download CC PDF Converter 0.7
7.13 MB
CC PDF Converter description
This software allows you to easily embed a creative commons license in your PDF file. The CC PDF converter (beta) is a free (open source) application that enables you to create PDF documents from almost any application (Word, Excel, Internet Explorer and more).

The CC PDF Converter also allows you to easily embed a creative commons license in your PDF file.

If you want the contents of your PDF document to remain a secret, then a creative commons license is a bad idea. This is because publishing your PDF under a Creative Commons license allows colleagues, bloggers, social
media sites and even newspapers to republish your work and create new content based on it as long as they clearly state that you are the creator.

Thus, your projects get spread around much faster and you still retain the credit for it.

If you want to be able to profit from your PDF content and still use the Internets amazing ability to spread free-content, you can publish your work under a Non-Commercial Creative Commons license.

This way, when your work becomes popular and commercial entities want to use it, they have to get your permission (and hopefully pay for it).
Source code for the CC PDF Converter is available as a zip file here, or browse through it here.

The code is written in C++, and includes project files for Microsoft Visual Studio 6. Additional source files for libraries used to compile the source are needed from different locations; the links to those sites are detailed in the Building.txt file that can be found in the archive.

Tags:

My Software


You have not saved any software. Click "Save" next to each software to save it to your software basket