Posted on: November 4, 2013 Posted by: JJ Comments: 0

ATT to T-mobile + port over Google Voice

Finally I threw in the towel. Moving away from ATT to T-mobile for the whole family. Even my google voice number is being ported over. Can’t beat $100 for 4 lines. I’ll update once the porting is completed. So far T-mobile support has been super. It took a while, but …

Posted on: October 15, 2013 Posted by: JJ Comments: 0

Zend Certification

Finally, I’ve stepped up and taken the Zend’s PHP 5.5 certification exam and got certified. 🙂 Zend Certified PHP Engineer

Posted on: March 27, 2013 Posted by: JJ Comments: 0

Consolidation

I’ve been meaning to clean up my contact info forever. Finally did it. Disconnected all lines except one. Forwarded all emails to one email account. Life’s simple, if you organize it.

Posted on: January 25, 2013 Posted by: JJ Comments: 0

Hide folders from Finder

Very simple. chflags hidden [folder location] Manual says… The chflags utility modifies the file flags of the listed files as specified by the flags operand. Option hidden: hidden set the hidden flag [Hide item from GUI] There you have it.

Posted on: June 1, 2012 Posted by: JJ Comments: 0

jQuery Widget Factory

Links about jQuery widget factory: http://wiki.jqueryui.com/w/page/12138135/Widget%20factory http://blog.nemikor.com/tag/widget-factory/ http://docs.jquery.com/Plugins/Authoring

Posted on: February 15, 2012 Posted by: JJ Comments: 0

Omniture API

Omniture API can be daunting, but little pointers will ease your mind. Omniture’s developer site is at https://developer.omniture.com Currently they provide you with 10,000 tokens per month. Some reports will require two or more tokens. Site Catalyst API https://developer.omniture.com/en_US/documentation/sitecatalyst-reporting/ Use GetStatus to check the report status without consuming a token …

Posted on: January 25, 2012 Posted by: JJ Comments: 0

PDF for Codeigniter

There is no default PDF library for Codeigniter. Pick and choose what’s the best. Anyone have a favorite? fPDF mPDF mPDF with Codeigniter PDF generation using dompdf fpdf CIed

Posted on: November 8, 2011 Posted by: JJ Comments: 0

Dump database structure

How do you get a full database structure from Microsoft SQL Server? [sql] select * from INFORMATION_SCHEMA.COLUMNS [/sql]