Well, there you have it: My Perl integration library is indexed into CPAN:
http://search.cpan.org/~jonatayah/Captcha-AreYouAHuman-0.00003/lib/Captcha/AreYouAHuman.pm
Search “CAPTCHA”.
Well, there you have it: My Perl integration library is indexed into CPAN:
http://search.cpan.org/~jonatayah/Captcha-AreYouAHuman-0.00003/lib/Captcha/AreYouAHuman.pm
Search “CAPTCHA”.
Another component reaches the public:
http://www.asahikaseiplastics.com/data-sheets.html
http://www.asahikaseiplastics.com/data-sheets/msds-forms.html
We developed a component for the AK Plastics division to manage datasheets and MSDS forms, giving them internal control and more flexibility. It also tracks potential customers for follow up.
Launching our Joomla redesign of Michigan Alliance for Environmental and Outdoor Education:
www.michiganenvironmentaled.org
One of the key things to see: Conference registration. We have a component that handles their elaborate registration form, delivers it into a convenient admin interface for browsing or download, and can be configured all sorts of ways. For a laundry list: membership types; membership registration; workshops in different tracks; collision detection preventing simultaneous conflicting registrations; closed workshops; seat counts; tickets; add-ons; late-fees; PayPal integration now, but others could be added.
It also includes our “PayPal IPN” component, which allows you to register (subscriber pattern) your other Joomla components and use one PayPal Website Payment Standard without having to integrate through a shopping cart.
Here’s something that I ran into:
Let’s say you need to write out some tables to a PDF that you are dynamically building. You grab the multicell command, everything looks good, and then you get an automatic page break. Suddenly, your PDF looks like puke on a plate: the cells overwrite each other, rows are on top of rows, rows stretch awkwardly across the page break.
Here’s a way to make MultiCell page breaks look good. I tried this in TCPDF 5 — the use of the current page function was not working for me. (You’re not writing in iTextSharp anymore!)
protected function writeMulticells($cell_array) {
$this->pdf->setAutoPageBreak(false);
$this->pdf->startTransaction();
foreach ($cell_array as $row) {
$this->pdf->MultiCell($row[0], $row[1],
$row[2], $row[3],
$row[4], $row[5],
$row[6]);
}
$this->pdf->ln();
if ($this->pdf->getY() > $this->pdf->getPageHeight() - 30) {
$this->pdf->rollbackTransaction(true);
$this->pdf->AddPage();
foreach ($cell_array as $row) {
$this->pdf->MultiCell($row[0], $row[1], $row[2],
$row[3], $row[4], $row[5], $row[6]);
}
$this->pdf->ln();
}
$this->pdf->commitTransaction();
$this->pdf->setAutoPageBreak(true, 30);
}
(I just happened to have this inside a CodeIgniter model, hence the protected function.)
What we do is the following:
All of the examples I could find suggested using the getPage function, but that didn’t work all of the time in my particular application. Your mileage may vary, of course, but here’s an alternative option.
Just an update – Over at AssociationVoting.com, we’re getting some great activity this voting season, and we hope that you also stop by if you are looking for a solution for your online elections needs.
To quote one of our most recent customers: This is so easy — it’s how online voting should be!
Simple, easy, straightforward, secure, professional – have it all with your online election through AssocationVoting.com.
It is a season for new websites:
Global Wireless Solutions has launched ExactChargeBack.com, highlighting its novel approach to wireless expense management for medium and large companies.
Achieve wireless accountability and cost savings across your enterprise with the ECB solution!
And the video walk-through isn’t half bad, either.
Check out the new site: www.associationvoting.com
Greg, Kim, Nicole, and the whole gang have been hard at work on the updates.
While you are there, don’t miss the menu of new services on tap for 2011, designed to make association management life easier: https://www.associationvoting.com/associationnewservices.html
If you are looking for online elections, proxy elections, weighted voting — or whatever — give AV a try. You can view a live demo on the site or sign up for a free no-obligation trial.
Here was a frustrating situation: After setting up a key for my dev box, I couldn’t connect. Putty and TortoiseSVN would die on an error of too many authentication failures. There was no additional information on the server other than this error, and, if I connected from another system, things worked fine.
The secret here: I had six active keys in pageant. I removed all but the key for my dev box, and now it works like a top.
It certainly is gratifying to see the announcement from ERE expo: get your analytics!
Although the names have been removed to protect the guilty and innocent, I received this:
Hi,
My name is Amy and I’ve been using your page: … to do research for a presentation I’m putting together. As a prelaw major, it was very helpful to me.
Sorry to take any more of your time, but I wanted to let you know of a link (…) on the page above that doesn’t work. And as a thank you, I thought I’d suggest a replacement/additional resource for it. I’ve been using this other page: … and it has a lot of information on the brain (i.e. functions, disorders, injuries, etc) that might be useful to you.
Thanks Again,
So, just a polite email telling me I have a broken link, until I saw this:
Hi Lisa,
My name is Beverly and I wanted to provide feedback on your page: … I was using it to do research for a lesson plan on earthquakes and as an Earth Science teacher, I’ve found it to be a tremendous help, thank you.
I figured I’d take a minute to return the favor. I noticed you have a broken link here: (…), so I thought I’d recommend another page for you. I’ve been using this page: … and it’s a great source for plate tectonics offering good information and extensive academic links which I really appreciated and wanted to pass along.
Thanks again,
It is at least a clever scam: Identify websites with high page rank (the site I got this on is very authoritative as it’s had a very long life, with the webmaster being especially sharp at keeping continuity on the site organization over multiple iterations to ensure good search engine ranking on relevant terms), find broken external links, and get them to change your bad link to their good link and give them link authority.