Jul
07
Filed Under (Technology) by Thejesh GN on 07-07-2009

Recently I have seen number of users reading my feed on outlook. Its been increasing month by month. So I thought there could be many more users who will be interested in reading feeds in outlook. The recent version of outlook, i.e outlook 2007 has feed reader built into it. Using which you can read the posts just like mails.
Reading feeds or posts inside outlook
This is useful as most of us, corporate users have outlook installed by default. You don’t have to fight with your IS/ITS department for a new software or you don’t have to keep your browser always open.
Your browser should recognize outlook 2007 as a feed reader when you access a feed. You can easily subscribe from there. Read the rest of this entry »



Nov
26
Filed Under (Technology) by Thejesh GN on 26-11-2008

I am attending FOSS.IN/2008 virtually through twitter (unfortunately I could not attend due to work pressure). Here is my contribution to the FOSS world as part of FOSS.IN/2008.

Go to jFotoNotes project page

jFotoNotes is java implementation of famous FotoNotes in php. A variation of FotoNotes is also used by flickr. Fotonotes is a standard, specification, and collection of scripts for annotating images. In jFotoNotes I have used the same JavaScript libraries but I have completely rewritten the server side components in Java.
jFotoNotes



Sep
02
Filed Under (Technology) by Thejesh GN on 02-09-2008

Yet another browser to code for? I guess it will obey ECMA-262 rev3 so don’t worry too much about incompatibilities as of now. Lets see the positive side

  1. Its an open source, you get to participate and allows you to write plug-ins
  2. Each tab is a separate process.so the effect of one tab is not seen in another tab.
  3. Within each tab you have separate thread for JavaScript. So your JavaScript execution will be fast.
  4. JavaScript now runs inside a virtual machine called V8. The JavaScript is compiled to machine code before running. Now that’s an advantage for heavy JavaScript applications like Gmail. Where most of the JS resides on client side and simply gets the JSON from server to show the data. You don’t have to re-interpret the JS every time. Compile once and keep running again and again. Your apps will be super fast now. Now GWT developers don’t have worry about JS performance.
  5. Rendering is by webkit which is again open source.
  6. Looks like they have better garbage collection algorithm for garbage collection. Which will again makes my work simple.
  7. Gears is part of browser now. Your offline apps will have better performance now. Think -> Gears API is loaded as soon as browser is loaded, JavaScript is compiled to m/c code, runs in separate process and thread. What more you want? Your offline application might be as fast as any native application if not faster.

Anything else you want to add.



Jul
18
Filed Under (Technology) by Thejesh GN on 18-07-2008

coffee project of the monthI use hell lot of open source projects. Most of them are written by individual developers or a small team of enthusiastic developers. They usually are not paid to do the job (some companies do pay to code for Open Source projects). They don’t get anything in return other than fun of coding and *high* that so many are using it.

I was thinking about appreciating their work. I am not very rich as you would know. But I should be able to buy a beer/coffee to my developer friend in any part of the world. In most part of the world you will get a beer or coffee for $5. Not very heavy on my wallet. I have sent few beers to Zooomr and phpmyadmin before. But now I want to make it a custom to send *somebody* every month.I am starting this month’s Coffee Project of The Month with PhpMinAdmin.

phpMinAdmin is a MySQL management tool written in PHP. Conversely to phpMyAdmin, it consist of a single file ready to deploy to the target server. Its so simple and elegant that you can maintain your mySql database from your mobile phone. I use it on my mobile with OperaMini. It just rocks. It can perform everything that you want to do with your database. Try out the demo application to experience the simplicity. All you need is to download a single php file and upload it to your server. phpMinAdmin is one of the finalists in Sourceforge Community Choice Awards-2008. Jakub Vrána is the project admin and sole developer of phpMinAdmin. Thanks for such a great piece of code Jakub. All the very best for awards.

You too can send some beer/coffee to him at his sourceforge page. I am sure he will love it.



Jun
24
Filed Under (Technology) by Thejesh GN on 24-06-2008

VLC is a player but also can be used to record a screen cast ( capture the screen as video).Here is the small how to do that. This works with portable VLC too. Start the VLC By going to the installation folder and running the command

>> vlc screen://

It will open the VLC and shows the screen exactly. It actually is streaming the screen


Read the rest of this entry »