I’ve been working on a simple Weather application using HTML5-based technologies. I completed the first version recently. The source is available at Github.
Octo-found: An Octopress Theme Based on Zurb Foundation
I created a new Octopress theme, Octo-Found, which is based on Zurb Foundation!
jQuery.beeTooltip
A few days ago, I created my first jQuery plugin! It’s a simple tooltip plugin.
I did quite some research on the best practices of plugin development. The source is at github.com/rishabhsrao/jQuery-beeTooltip-plugin/blob/master/bin/development/jquery.beeTooltip-0.1.2.js.
It’s documented at rishabhsrao.github.com/jQuery-beeTooltip-plugin/app.
Chiguru 2012
A few months ago, I created an event page for Youth for Seva’s annual event - Chiguru 2012. It’s hosted on their site at: youthforseva.org/chiguru-2012 and also on Github pages. The source code is in my Github repo.
Hello Octopress
Hello from Octopress! This is my first Octopress blog post.
I wonder if I can import my Wordpress.com blog here! That’ll be great!
Mobile Developer Summit
It all began at 8am at the Indian Institute of Science with all the developers arriving at the venue. You could see some people calling their friends/colleagues and asking the “Where are you?” question. You could see some people going through the agenda and discussing with their friends about which sessions to attend. You could see some familiar faces of people you’ve seen at other conferences.
Mounting an ISO Image
Mounting an ISO image as a drive is simple:
mkdir <strong><path-to-where-you-want-to-mount></strong>
sudo mount -o loop <strong><your-image.iso></strong> <strong><path-to-where-you-want-to-mount></strong>
That’s it! Your ISO image will now be mounted and available at the above path.
OpenGraph Og:image:url Relative vs. Absolute URLs
I was creating an event page for Youth For Seva’s Annual Day ‘12 at http://rishabhsrao.github.com/yfs-ad-2012/publish/index.html and ran into a problem with Facebook’s OpenGraph’s og:image:url meta tag. It appears that it can’t take relative URLs. Bummer! Others have also asked about it here and here. It has to be absolute. I’m gonna try giving a relative URL for now - no choice. Hope it gets implemented in the future.
P.S.: Facebook Like Linter Tool said:
Object Invalid Value: Object at URL ‘http://rishabhsrao.github.com/yfs-ad-2012/publish/index.html’ of type ‘profile’ is invalid because the given value ‘img/yfs-logo-only-120.png’ for property ‘og:image:url’ could not be parsed as type ‘url’.
CrunchApp: Won’t Listen to You Sometimes
Crunch is a great app for compiling LESS CSS. But sometimes it behaves oddly and doesn’t respond to your actions. In such cases, deleting the temporary data does the trick:
Navigate to your user directory in Windows:
\Application Data\Adobe\AIR\ELS\app.Crunch
and delete all the four files:
PrivateEncryptedData
PrivateEncryptedDatai
PrivateEncryptedDatak
PrivateEncryptedDatav
Now restart Crunch and happy crunching!
Sublime Text 2: Snippet for New RequireJS Module
Here’s a small Sublime Text 2 snippet for creating a new RequireJS module: