Thursday, July 17, 2014
Indian Mobile scene and future ....
Wednesday, July 03, 2013
Google Page Test, CloudFlare and W3 total Cache
Friday, July 01, 2011
Page Speed - Web site broken
Friday, April 23, 2010
McAfee antivirus program freezes PCs
After starting my office laptop it goes for freeze within 5 minutes. I was very worried what went wrong; my current laptop is cranky and that is why ordered a new one which was delivered yesterday. The new laptop is getting build by the IT Team as I write this post. But i was worried that I will lost all my data like a horror movie where every thing you do goes wrong. Any way after trying Ctrl+Del+Shift many times I just pulled the power and removed the battery with a quick prayer. Well my Outlook In-box was corrupted as a result but it was fixed post reboot and I am back in action. I saw a small pop-up about McAfee when it was frozen but could not make out what went wrong. But then I saw this news looks like I am not the only one who had this problem.
One thing for sure some how Microsoft delivered Winows-XP as robust desktop platform compared to those Win'98 and win-2k and that is a reason such small hitch are totally unexpected as a end user.Sunday, September 27, 2009
New widget with Media RSS
It was a long time I played with new technology and changed any the way the this blog looks to you. Liked few themes and tried to put them in my own taste before I found the current one. But some how those themes really did not looks so cool to and attractive to me at the end. So I went with the current one and did not did not did much changes.
I was looking for a widget on on the sidebar for photo stream (the most used on the net is the flickr one). I am not very happy with their account policy so do have a a pro account. as i was looking around I found that the coolest solution for my need. I used Coolaris with Media RSS to stream photo on the sidebar. Gallery2 does not come with Media RSS by default but as I am running Gallery3 Beta for a while I am using the same. This means I did changes any major scripts and got this cool widget.
At last I got sifr for titles does not they looks right ?
Friday, May 08, 2009
Gallerry 3 sneak peak
Gallery 3 is going to a big change from current gallery 2 and initial alpha release did not have any migration path from gallery2. It was pushed to Beta release after 2 alpha releases. but to my surprise I found it was implemented in alpha 4 and here is the test result of a new neat code. I am really liking the new compact code making gallery 3 faster and lean compared to its predecessor. Similar, to WordPress new theme development is easy no more smarty - thank God I never really mastered those PERL look alike. Now it is simple PHP and CSS. Another core feature is Akismet which does a fantastic job of filtering spam comments. I was able to import 3000+ images in 200+ albums without any problem. There are few things which needs to be ironed before I can put the same in production.
Wednesday, August 13, 2008
ZoneAlarm Patch Tuesday Promotion
Get yourself a free copy of Zone Alarm Firewall completely free for one year. The offer is valid for one PC per e-mail id. The offer just started at 6AM PST and will be there for next 24 hours. So do not waste your time and rush to get a free copy. If you are not sure what Zone Alarm is and why you need one copy or a similar product for your PC I am sure there are zillion of web pages to guide you.
Thursday, August 07, 2008
Rejuvenating old I-Pod
Tuesday, July 15, 2008
Wordpress 2.6
Wednesday, February 13, 2008
Free Theme
I just found out d-atmosphere.com is holding a competition where they are offering a free wordpress theme called WP Remix. It’s a very nice theme with loads of features.
The rule is simple - just write about the competition in your blog and post your link back in the comments on the contest page.
The winner will be announced on March 1st.
Monday, November 12, 2007
Got G(oogle)-Phone
Well downloaded G-Phone application from Google. on my Blackberry. All I needed was data access enabled phone to download G-phone. The speculation was running high about a new hardware from Google in lots of web sites. Lets see how these applications (Gmail, Google maps, Google news, Google search, Gtalk, Google calender) will work on a normal phone where the display is not as big as Blackberry and you do not have full keyboard or track wheel. Any feedback on that, have you tried already ?
Friday, May 25, 2007
Skittlish Theme with Silk Icons for Wordpress
Trying to jazz up skittlish theme of wordpress with silk icon sets from famfamfam.com. In recent time there is new version of skittlish supporting widgets so I thought it might be a god starting ground. Best part - for few colors (red, orange, green & blue) there are icons available for tag, user (author). But for rest there is none. As I am not a graphic person not sure how should I go forward. Any expert out there to help me ;). Plan to release my best by next week.
Tuesday, April 10, 2007
Wordpress Bleeding 2.2 and TAG
Just upgraded to the latest beta trunk of wordpress 2.2(bleeding) and found myself with unrecoverable errors. Realized wordpress incorporated tagging within the core but the old faithful Ultimate Tag Warrior does not work any more :(
Found another bug-hunt has started and hope for tag import from (UTW) till then …… have to live with out tags Sigh!
Sunday, January 21, 2007
Micro$oft Launch @ Mumbai
Tuesday, January 16, 2007
Zooomr Pro
Saturday, January 13, 2007
Another weekend
Thursday, May 18, 2006
load cpu & memory shell script c program for quick and dirty benchmark
a good way to test your cpu check for different monitoring tool
while :
> do :
> done
/home/sanmisra>more memory.c
main ()
{
while ( 1 ) {
malloc (10240) ;
}
}
Thursday, May 04, 2006
add new administrator and management post for smartdashboard firewall-1
- 1.Add the user in the system password file for *nix it will be in /etc/passwd and /etc/shadow
- 2. Add his host(PC) to /etc/hosts
- 3. Use cpconfig ( /opt/CPshrd-53/bin/) in case of Solaris
Rest is menu driven
Sunday, January 15, 2006
Home Network ADSL-Network-Phone
Friday, November 25, 2005
create typewriter effect with ming php for flash (swf) movie
setBackground(0x00,0x00,0x00);// SM - This is very important as it set sets the speed of the movie// SM - Higher the number faster the typing will appear$movie->setRate(3);// SM - This one will depends upon you$movie->setDimension(600,40);$movie->setFrames(31);$movie->nextFrame();// Define your String here $str = 'Miing Typewriter Effect'; /* SM - As you note The space between character if not fixed SM - due to font width so you have to figure out your own SM - Now we split our string and make an array with the same */ $chars = preg_split('//', $str, -1, PREG_SPLIT_NO_EMPTY);// print_r($chars);$inc = 0 ;for($i=0;$isetFont($myFont); $myText->setColor(255,255,255); $myText->SetHeight(30); $myText->addString($chars[$i]); echo ("$chars[$i] \n") ; $firstText=$movie->add($myText); $firstText->moveTo($inc,30); $inc = $inc + 18; // SM - this is very critical as you need to add this extra frame to make this effect of some typewriter $movie->nextframe(); // SM - This helps to determine the width of the movie // SM - turn only if you need the same // echo "inc is $inc \n" ; } // SM - we do not want to loop this movie// $movie->add(new SWFAction("stop();")); // SM - Save the movie $movie->save("/tmp/banner.swf",9);?>


