by Mr Me
on March 23, 2012
in html, html5, webworld
Created a small html5 page today to check which audio format your browser support in HTML5. It is using a Javascript code to detect browsers audio status dynamically and show the result. I also added 5 different audio format sample using html5 audio node, and using this you can test whether any particular format is [...]
by Mr Me
on January 23, 2012
in general, webworld
From February 2012 onwards, Facebook stops App profile pages. But you can still move all your page likes and users to new page (till Feb). The new Facebook app creation flow is really confusing. For developers, to add a app as a tab to another page, you need to user the following URL: https://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&next=YOUR_URL next [...]
by Mr Me
on January 5, 2012
in php, php source code, webworld
Those who use their on hosting inside an iframe for Facebook Fan page, there is a mechanism to pass additional parameters to your iframe page if you need to create a deep URL. A normal Fan page of Facebook would like this: https://www.facebook.com/apps/application.php?id=xxxxxxxxxx&sk=app_XXXXXX This Url will call your domain, say example.com inside the iframe to [...]
by Mr Me
on December 14, 2011
in Downloads, Flash, general, html, php, php source code, webworld
Two months ago, I published a jQuery plugin to record audio from browser (without any Media server) called jRecorder I got many responses and requests to maintain the code with new enhancements and some bug fixes. Based on that, a new version (1.1) is released which has the capability to preview the recorded audio before [...]
by Mr Me
on December 13, 2011
in External, PhoneGap, quick-tips, webworld
Buzitweet is a blogging platform where anyone can register using a Facebook account and can post your articles. No matter what topic it is, it can be programming, videos, quotes, images, pictures or any thing. I use that platform for writing quick programming tips, and which I feel really interesting. Here are my recent 4 [...]
by Mr Me
on October 31, 2011
in html, quicktips, webworld
Just another time pass. Today I tried Angry Birds Welcome Screen in HTML5. Use Latest Safari for HTML5 with Sounds. In my Mozilla Animation works but no sound. (If you are viewing this post via Email, click the link to see the animation) Click for FULLSCREEN Share
by Mr Me
on October 26, 2011
in general, html, webworld
I tried new Adobe Edge yesterday, wow it is cool and it took only 10 minutes for me to develop the following animation in HTML 5. You can simply do animation, movements, rotation, resizing, font changes etc as you do in Flash layers . You can also write actions in javascript, if reached here, or [...]
by Mr Me
on June 11, 2010
in php, php source code, webworld
In PHP coding, we spend most of the time for debugging. Either we use echo, print_r or var_dump to check variable values or check whether a particular function is executing or not. These all things are outputting something to browser. This is not applicable in case of redirection, or image processing (GD) or sometimes with [...]
by Mr Me
on May 18, 2010
in html, webworld
If you are using https pages or some of the pages (payment pages etc) in your website, keep the following in your mind. In some browsers especially IE shows warning of non-secured content in secured page. This cause user the feeling that the website is not secured. Use relative url always. Relative URL means those [...]
alert, Browser, featured, http, https, https warning, ie, non-secure content, protocol, safety, security, warning
by Mr Me
on May 13, 2010
in html, webworld
You can create iPhone style flip using jQuery. Visit: http://lab.smashup.it/flip/ for more details Share
by Mr Me
on May 7, 2010
in webworld
This is just an information for those who wanted to record on screen tutorial videos or capture images. I use Jing. A free version for software is available. It is for both Mac and Windows. It is very easy to make screen capture videos Go to: http://www.jingproject.com/ Share
capture screen, capture video, jing, print continuous, print screen, record screen, record video, screen activity, screen capture, screen cast, screenshot, videos
by Mr Me
on March 3, 2010
in general, webworld
In 2008, after Steve Jobs released a Software Development Kit (SDK)for developing iPhone application, the iPhone OS platform became open for all to development their own application. Xcode is the development environment for iPhone development. Later a lot of frameworks were introduced over this platform. The following are new platforms for developing iPhone applications. iPhone [...]
by Mr Me
on December 27, 2009
in Downloads, php, webworld
Flash messages or notification messages are very essential part of every update/edit or delete operations. We either use ajax update messages like “You account has been updated” or “Your photo has been successfully deleted” Here, a new plugin of jQuery can be used to display the flash messages like twitter. (see twitter’s settings page) I [...]
ajax, delete, display, edit, error, flash, information, jbar, jquery, message, notification, plugin, update, warning
by Mr Me
on June 3, 2009
in html, webworld
Start jquery for manipulating html file and execute javascript just like sql queries. Simply pointer the dom object with a $ and manipulate with different built in function. For example $(“p.neat”).addClass(“ohmy”).show(“slow”); Don’t need to write javascript inside each node. It is like prototyping. Insted of adding an onClick=”function()” inside the node, jquery define the onclick [...]
by Mr Me
on June 2, 2009
in php, webworld
V/S I have developed more than 7 web projects using Symfony framework. Mobshare.in, Amvizone.com, Campaignmanger.in , Movieonline.in etc are some of the websites. But for the past 5 months my developement is in Codeigniter. It is very very lighter than Symfony and has almost all the features of Symfony. Both are MVC [...]