Mobile Boilerplate is a professional front-end template that helps you build fast and robust mobile web applications. Spend more time developing and less time reinventing the wheel. Features Mobile browser optimizations. CSS normalizations and common bug fixes. A custom Modernizr build for feature detection and a polyfill for CSS Media Queries. Home page icon for […]
Category: Technology
Running Firefox os apps in Ubuntu linux
iOS Feel – WordPress theme

Simple iOS look-a-like wordpress theme Sales page -> http://cloud.issani.in/simple-ios-look-wordpress-theme/ Live demo -> http://design.issani.in/wordpress/native/
Perl Expect bindings – Simple example
Hello World file (hello.pl) #!/usr/bin/perl use strict; use warnings; use diagnostics; print “———–\n”, “Hello World\n”, “———–\n”; Test Perl file with expect bindings (test.pl) #!/usr/bin/perl use strict; use warnings; use diagnostics; use Expect; my $timeout=5; foreach my $i (1..20) { my $exp = Expect->spawn(“./hello.pl”) or die “Unexpected error : $!\n”; $exp->expect($timeout); }
Continuous Delivery : A Mini Hurdle
The first hurdle to overcome with Continuous Delivery I think is not getting your product’s code onto the machine itself, but managing the actual machine and it’s software… and in talking to people. It is the subtle nuances between machines due to people tweaking things on the fly that lead to the worst [most annoying] […]
Status Quo : Review Of Some Testing Practices
Download link : Status Quo Review of Existing Testing Practices Status Quo Review Of Existing Testing Practices Existing Methodology When reviewing the status quo, companies implementing SAP need to assess what software methodology or approach guides the work products and deliverables of the SAP resources, including the SAP testing team. Large SAP system integrators such […]
How To Disable Google Analytics
You don´t like Google Analytics? Go to http://tools.google.com/dlpage/gaoptout and install a browser plugin to disable Google Analytics.
Ipad is a … ?
OpenSSL – Public Certificate and Private key
privatekey -> openssl genrsa [-out filename] [-passout arg] [-des] [-des3] [-idea] [-f4] [-3] [-rand file(s)] [numbits] public certificate -> $ openssl req -new -x509 -nodes -sha1 -days 365 -key host.key > host.cert
SVN – revision control – slides – pdf
SVN – revision control Download pdf : Coordinating projects ● Problem: How to coordinate and synchronize code between multiple developers on a project? – Work on the same computer, take turns coding Nah… – Send files by e-mail or put them online. Lots of manual work. – Put files on a […]