My Blogs
Movable Type 4.0 introduces a whole new dashboard with the focal point being tracking the activity across your blogs. For my personal MT install, however, this isn't terribly useful (being the only author, I know my - albeit dismal - entry posting frequency, and I receive email notifications for all comments).
I much preferred Movable Type 3's dashboard which provided a list of all blogs in the installation with a few quick links. My Blogs adds a widget to your dashboard which allows just this.

Joe Siegler
August 14, 2007 6:33 PM | Reply
Arvind, you rock. This makes things a lot better for me and the way I maintain my sites. Thank you for this.
I need to get off my duff and donate - you make some seriously cool stuff.
Gautam Patel
August 19, 2008 10:07 PM | Reply
There's an apparent conflict between two excellent dashboard widget plugins for MT: DashOff and MyBlogs. They don't play well together--if you use one, the other won't show up.
The conflict is in their respective perl files, MyBlogs.pl and DashOff.pl, which are bundled with the plugins.
Both of them use variable with the same name: my @blogs / $blogs, and my $perms / $perms
Assuming that you want to use both of them at once (who wouldn't?), you need to change the names of these two parameters (perhaps only the first, but I haven't bothered to test that) in one of the two files.
Therefore, in DashOff.pl for instance, you should change every occurrence of $blogs to something else, like $blogset, change my @blogs to my @blogset; and similarly change my $perms / $perms to my $perms2 / $perms2
Once you've done that, both work together.
Arvind Satyanarayan
August 19, 2008 11:47 PM | Reply
Actually, this is not the reason for the conflict. The conflict occurs because DashOff has a bug whereby it specifies the same unique identifying key for the widget it provides as MyBlogs. To resolve:
my_blogs => {about line 37 on DashOff.pldashoff => {Beau Smith
August 20, 2008 9:09 AM | Reply
DashOff v1.1 released.
Mihan
September 4, 2008 9:32 AM | Reply
thanks nice information! mr Arvind Satyanarayan
Dwiki Setiyawan
March 14, 2010 10:04 PM | Reply
Thanks for sharing Sir.