Skip to content

Category Archives: Uncategorized

Listing Google groups and memberships from api via PHP

I recently was tasked with pulling a listing of all my organizations Google Groups along with their membership for an internal application. My programming language of choice is PHP. Thankfully, Google has provided a nice PHP library for accessing their api’s. There appears to be very few examples currently available for doing what I needed, […]

PHP Quartile function

So I recently had to write some code for a ranking system based on quartiles. After an initial Google search, I was not able to find any code that reliably produced the results based on Method 1 from the Wikipedia page. I am sure this is due to the fact that there are many different […]

PHP implementation of cron

I recently needed to create an application that creates recurring calendar events. After thinking about this for a while, I decided that doing something similar to unix cron was the solution. This is the unix cron format: * * * * * command to be executed – – – – – | | | | […]