Category: Development

  • Sublime Text 2, Fetch Settings, and Zen Coding

    I recently been using Sublime Text 2 as my text-editor (for text, code, etc.). I was using TextMate 1.5.x beforehand, but that project hasn’t been updated in a while (other than TextMate 2.0 Alpha’s of course). Anyways, Sublime Text 2 is pretty fast. I can’t wait to see what else it can do with future…

  • Use Google.com Search Instead of Country Redirect Version

    For those travelling with their laptops and have used Google search, you may have noticed that it does a country redirect based on your IP address. For example, I visited the Philippines this past month and instead of the usual google.com, it redirected and used google.com.ph. After getting back to the US, my searches would…

  • Fix Full Screen Issues by Video Embedder WordPress Plugin

    If you are having problems trying to display an embedded video(s) in your posts like me, then this might help you out. I usually embed videos from Hulu, Vimeo and YouTube mostly. But it’s been a problem trying to have the latter 2 display in fullscreen mode. For Vimeo, the fullscreen icon/grpahic displays on the…

  • Replace HTML Attribute Using jQuery

    I had a small project that asked for a URL and a pixel-image to be tracked. Another requirement was to replace a certain string in it with a timestamp of some sort.

  • Bash Completion, Along with SVN and Git Tab Completion

    Time is precious. I installed these utilities to save some of it: bash-completion svn-completion git-completion I install bash-completion via MacPorts on my Macs. sudo port install bash-completion I then saved this svn-completion script to locally, and did a sudo cp: sudo cp bash_completion /opt/local/etc/bash_completion.d/svn-completion.sh Note: “bash_completion” is the file linked on “svn-completion script“. I hope…