Blog

Embedding QRCode Barcodes in Intuit QuickBase

Added by on July 27th, 2010, filed under API, QuickBase, Tutorials

Title: Embedding QRCode Barcodes in Intuit QuickBase This post will describe how you can use the Google Charts API to embed to dynamically create QRCodes for contacts in a QuickBase online database application. QR Codes are a 2D barcode that can store a bit more data than standard barcodes, such as a complete person’s contact [...]

2 Comments ~ Add your thoughts | Continue Reading

Website For Mushroom Pictures, Identification and Mycology

Added by on July 22nd, 2010, filed under Mycology

Over the past few months, I’ve taken up the hobby of mushroom hunting and identification. This has caused quite the few people to scratch their heads, not excluding my neighbor who recently inquired about the “indoor greenhouse” I had setup in my basement to look like a lab of some sort. Once I explained to [...]

No Comments ~ Add your thoughts | Continue Reading

Easy Cross-Browser @font-face Solution

Added by on July 9th, 2010, filed under CSS, Web Development

So you want to use a custom font on your website and you want it to be search-engine friendly, support multiple browsers (including IE6), and you want to use a pure CSS solution because you’re tired of the work involved with sIFR and cufón. Well, @font-face to the rescue. Convert Your Fonts: Different browsers require [...]

No Comments ~ Add your thoughts | Continue Reading

Inroduction to Writing PHP Command-Line (CLI) Scripts

Added by on July 9th, 2010, filed under PHP, Web Development

In this tutorial, I will show you how to get started with writing command-line interface (CLI) scripts using PHP. Here are a few reasons why you might want to write a CLI application in PHP: You want to write a tool for admin-ing your server, but you’re more comfortable using PHP You don’t need to [...]

2 Comments ~ Add your thoughts | Continue Reading

My Thoughts on Healthcare Reform

Added by on August 11th, 2009, filed under Politics

Here’s basically what i think about healthcare reform in a nutshell. It should be fairly straightforward and hopefully fair. First: I’m extremely satisfied with my healthcare situation today. I (and my daughter) have great coverage at an affordable price. True, my company pays a lot of my insurance, but i assume they do so because [...]

No Comments ~ Add your thoughts | Continue Reading

QuickBase Questions, FAQ’s, and API Support

Added by on July 9th, 2009, filed under QuickBase

If you have a question about QuickBase, the use of the api in particular, please ask in the comments of this post. I will update this blog post to include your question and my answer so that others who come across my site can see it. Many of you have been emailing me GREAT questions [...]

3 Comments ~ Add your thoughts | Continue Reading

link: is, in many ways, useless for competitive analysis

Added by on July 6th, 2009, filed under SEO

so i was doing some seo today and i noticed that in google webmaster tools, the “backlink” report was reporting thousands more links than what google was reporting in a link: search. so, i went and i posted a question in the webmaster tools forum here. ultimately, the answer i was given was that yes [...]

No Comments ~ Add your thoughts | Continue Reading

QuickBase PHP API Examples

Added by on April 23rd, 2009, filed under API, PHP, QuickBase, Web Development, XML

i’ve had a few requests for examples of how to use the quickbase php api wrapper. so here goes: setup the quickbase object with login info include the library and setup the object by passing in username, password, true/false (xml/http), and dbID of the db/table you’ll be transacting with. 12include_once(’../includes/qb.php’); $quickbase = new QuickBase(’username’,'password’, true, [...]

40 Comments ~ Add your thoughts | Continue Reading

WebEx API PHP Wrapper

Added by on April 1st, 2009, filed under Open Source, PHP, Web Development

I did some work this week with integrating webex into the quickbase website. As a result, i ended up putting together a wrapper for the WebEx XML API in order to speed up development time. If you’re going to be using webex with PHP, check it out. It doesn’t have full support for all API methods [...]

No Comments ~ Add your thoughts | Continue Reading

View Realtime Requests Per Second From Log

Added by on January 28th, 2009, filed under Apache, PHP

so you want to view the number of requests to your webserver per second. here’s a quick and easy php script that you can run from command line. 1234while(true){     echo exec(’cat /var/log/httpd/access_log | wc -l’) . "n";     sleep(1);   } it isn’t perfect, but it will work for doing some basic [...]

No Comments ~ Add your thoughts | Continue Reading