All Your Tweet @allyourtweet now has it’s own user directory. When you sign up for the site you specify the tags under which your twitter user info will appear. Joining the directory is optional when you sign up for AYT. Tags are like categories where you define your own categories. One nifty feature of the site is that all Twitter Pages tag entry text boxes are auto-complete enabled. What this means is that as you type, the other keywords people have put in are displayed as a drop down menu for you to select from. This should make selecting tags easier.

Comments No Comments »

We added a new follow feature to Tweet Rooster. If you specify your Twitter user name then the tweeting user has the option to follow you as well as post a tweet.

Comments No Comments »

This last week we found some time to implement a nifty Twitter Bot called @myspeak. We’re rolling the service into our All Your Tweet framework.

The way it works is you follow myspeak and it will auto-follow you back. Then you send it a private direct message in the format "<source lang> <dest lang> message" and it will use Google Translate to Translate your message from the source language to the destination language. The response will be a return direct message with the new translated text.

Comments No Comments »

Apple approved our iPhone app called Commodities. We’ll keep you posted on what’s going on with the app.

Comments No Comments »

AllYourTweet.com is going well. We’ve made a number of bug fixes and improvements. We added a Twitter Access page which shows you your friends’ updates, replies, and favorites. It also allows you to reply to someone, favorite and un-favorite, and delete status updates. You can also follow allyourtweet.com developments from our twitter account @allyourtweet

Twitter has seen some tremendous growth the last few months. We’re quite happy to be a part of the phenomenon. The lesson: get into technology early because you’ll grow as it grows.

Here is an interesting blog post on Branding in the age of Social Media.

We are still working on getting our first iPhone App out the door and hope it’ll be accepted in this round. This development is leading the way for clients who want iPhone apps. If you have an idea for an iPhone app please let us work with you in its development. There are a long series of steps to be taken to get to the end goal and we understand those steps. You can email us at goglobalgadget@gmail.com to start the conversation.

Comments No Comments »

AllYourTweet.com provides single login access and analytics to all your twitter accounts. Those of you who have multiple twitter accounts know how difficult it is to keep track of them all. AllYourTweet.com gives you the heads up on every account. It’ll give you the weekly and daily change along with graphs of your number of followers, friends, favorites, and status updates.

The analytics aren’t terribly sophisticated yet but stay tuned.

Comments No Comments »

Playing off our work with xSkyDesk, we created an online version of the sky that we’re calling the Cyber Planetarium. Once you plug in your geolocation (your latitude and longitude) it’ll show you the stars as they currently are in your sky. It’ll also give you constellations and the moon.

Comments No Comments »

GCP now has a 24 hour graph to go along with the dot.

Comments 1 Comment »

We just added the ability for tweet rooster to remember individual users. It’s now a check box in the tweet rooster window.

Comments No Comments »

We’ve published a new tool for all you website owners and blog operators.  Tweet Roosters is a little button that enables your users and readers to post to their Twitter account directly from your website or blog.  Why would someone put this tool on their website?  It takes only a little bit of space and opens up in a box directly on your website but primarily it helps your website or blog get more exposure on Twitter.

Tweet Rooster

There is even a WordPress Widget Plugin for Tweet Rooster.

Comments No Comments »

There is a new place for checking out the new DVD releases:

New DVD Board

The DVDs coming out this week and next are displayed with the most popular discs

Comments No Comments »

The basic premise is that if you do a straight “./configure”, “make”, “make install” for your Xserve then the binaries will end up being 32 bit. Apple’s installation is 64 bit but if you want anything custom about Apache or PHP, you’ll need to compile it yourself and you’ll need to know what your doing to make the architecture match. What do you do to make that happen? This post is for Intel Xeon Xserves only. You can modify a few things to get the 64 bit PowerPC version of your software running.

This is not for the faint of heart. If you know at least a little about building and installing packages then you’ll be much better off.

First, you need to execute this command before running any “./configure”

export CFLAGS=”-arch x86_64 -arch i386″

The reason is that when you run configure it embeds these environment variables into your Makefile. This will create both a 32 bit and a 64 bit version of any software you build.

The next thing you need to know is that some packages, especially those that you build into PHP won’t compile multiple architectures “out of the box”. For example, Freetype, GD, and mhash will complain about multiple architectures. So you need to add this to your ./configure options:

./configure –disable-dependency-tracking …(all other options)

The “–disable-dependency-tracking” option will enable you to create multiple architectures. Dependency tracking is apparently not needed to make everything work.

The next step is PHP. This is our php configure list. It’s long but dutiful.

./configure –prefix=/usr –mandir=/usr/share/man –infodir=/usr/share/info –disable-dependency-tracking –with-apxs2=/usr/sbin/apxs –with-ldap=/usr –with-kerberos=/usr –enable-cli –with-zlib-dir=/usr –enable-trans-sid –with-xml –enable-exif –enable-ftp –enable-mbstring –enable-mbregex –enable-dbx –with-iodbc=/usr –with-curl=/usr –with-config-file-path=/etc –sysconfdir=/private/etc –with-mysql-sock=/var/mysql –with-mysqli=/usr/bin/mysql_config –with-mysql=/usr –with-pdo-mysql=/usr –with-openssl –with-xsl=/usr –with-gd –with-jpeg-dir=/usr –with-mhash –enable-memory-limit –with-freetype-dir=/usr –with-ttf=/usr

Some of these options require external libraries. I will let you figure that out ;) The same rules apply to building those projects for 64 bit and 32 bit. PDO is needed because we use PRADO extensively.

One problem we’ve run into is certain libraries not being 64 bit. Specifically libmysqlclient.dylib and libmygcc.a. This was a tough one to figure out. But eventually we got it working by downloading the 386 and the x86_64 bit version of mysql.tar.gz. These packages come with their respective versions of libmysqlclient.dylib and libmygcc.a. In fact, there are 6 dylibs that we wanted to make into multiple architectures:

  • libmysqlclient.15.0.0.dylib
  • libmysqlclient.15.dylib
  • libmysqlclient.dylib
  • libmysqlclient_r.15.0.0.dylib
  • libmysqlclient_r.15.dylib
  • libmysqlclient_r.dylib

You need to use the “lipo” command to put these binaries together for multiple architectures. Before replacing any libraries in your system you should back them up!

Once you’ve backed up your existing libraries you can do your “lipo”:

lipo -create mysql-5.0.67-osx10.5-x86/lib/libmysqlclient.dylib mysql-5.0.67-osx10.5-x86_64/lib/libmysqlclient.dylib -output libmysqlclient/libmysqlclient.dylib

This will stick the two versions of the dylib together into one dylib. As you can see we have a directory called libmysqlclient and that’s where we are storing the new binaries. Then they can be copied to where they need to go. (Usually they go in /usr/lib/ and would replace what goes in there.)

If you’re only recompiling PHP into your Xserve and not apache then you should be able to do that with all the above. We highly recommend you stick with the Apple Apache build.

If you’re more adventurous and would like to recompile Apache too then you can use these configuration flags.

./configure –prefix=/usr –enable-mods-shared=all –enable-deflate –enable-so –with-ssl –enable-proxy –enable-proxy-balancer –enable-proxy-http –enable-dav –sysconfdir=/etc/apache2 –enable-dav-fs –with-z –libexecdir=/usr/libexec/apache2 –enable-cgi –bindir=/usr/sbin –with-apr=/usr –with-apr-util=/usr
make
make install

The standard Apple Apache installation puts the files in /usr/sbin so this is going to replace the Apple installation.

Comments No Comments »

We’ve put together a small project that shows the light map and the night lights of the earth. It can be found at Earth Light Map.

Here is a small sample:

Comments No Comments »

eBay has written about Twibler on their developer community blog:

Effortless Web 2.0 Marketing with Twibler

Special thanks to Laurel Kline.

Comments No Comments »

It’s been done and there are many sites that do this but we wanted to add our two cents to the market. We wanted to make it simple and easy. Check out

The Online Link Checker

What’s great about this tool is that it will crawl your entire website for one low price…. FREE. Reports are generated via email so all you need to do is enter the website to crawl and your email address. It’s even optimized not to pull down data files like Word Documents and PDFs so as to save bandwidth though the links are still checked.

Comments No Comments »