Archive

Archive for the ‘Technology’ Category

Ajax & Javascript Resources for Professional Programming

March 18th, 2009

I found a great article detailing some really good looking ajax and javascript apps. Check it out here!

admin Technology, Web Design & Development , ,

New Tweetdeck Out Tomorrow, Here’s What It Will Include

February 12th, 2009

If you’ve never used Tweetdeck, it’s the most powerful application available for sending and receiving Twitter messages. It’s about to become even more awesome!

Check it out!

admin Social Networking, Technology ,

Windows 7, is it any good?

February 12th, 2009

Here are some screenshots. You tell me.






admin Technology

Disable / Turn Off OpenID in Drupal

February 3rd, 2009

 

OpenID

OpenID

I was working on NorcalBands.com today and I wasn’t sure how to disable OpenID. Turns out that the OpenID login is a module. Problem was solved by disabling it under the modules section… and the world continues to turn.

admin Technology, Web Design & Development ,

Web Design, Branding, Development Company That I Like!

December 12th, 2008

Hydra Studio - Developed InternshipRatings.com. Might prove useful for helping me develop MapRatings.com, an idea that’s been floating around in my head for a few years now.

admin Business, Technology, Web Design & Development ,

Twitter Stats for Twitter Addicts

December 11th, 2008

Came across TweetStats. Perticularly liked the trends page. Twitter is quickly becoming my favorite website. It’s up there with Google.com - Check it out.

admin Social Networking , ,

TweetDeck, For Those Who Use Twitter

December 8th, 2008

Browsing some more, found a cool app called tweet deck. I don’t usually try new software but this was worth it. Visit TweetDeck

admin Social Networking, Technology ,

Install Magento in 5 Minutes

September 29th, 2008

So you’ve heard all about Magento Commerce and now you’ve decided to give it a try. Unfortunately, you realize that installation and configuration is proving a bit more difficult that you’d first imagined. If your web host supports SSH, your life is about to get a whole lot easier.

wget http://www.magentocommerce.com/downloads/assets/1.1.6/magento-1.1.6.tar.gz
wget http://www.magentocommerce.com/downloads/assets/1.1.2/magento-sample-data-1.1.2.tar.gz
tar -zxvf magento-1.1.6.tar.gz
tar -zxvf magento-sample-data-1.1.2.tar.gz
mv magento-sample-data-1.1.2/media/* magento/media/
mv magento-sample-data-1.1.2/magento_sample_data_for_1.1.2.sql magento/data.sql
mv magento/* magento/.htaccess .
chmod o+w var var/.htaccess app/etc
chmod -R o+w media
mysql -h DBHOST -u DBUSER -pDBPASS DBNAME < data.sql
./pear mage-setup .
./pear install -f magento-core/Mage_All_Latest-stable
rm -rf downloader/pearlib/cache/* downloader/pearlib/download/*
rm -rf magento/ magento-sample-data-1.1.2/
rm -rf magento-1.1.6.tar.gz magento-sample-data-1.1.2.tar.gz data.sql

Just change the DBHOST, DBUSER, DBPASS, and DBNAME settings in the code snippet above and run it in your httpdocs (or equivalent) directory! Bam, in less than 5 minutes you’re all ready to go! Enjoy Magento!

admin Technology, Web Design & Development ,