B-Factor


Vysr, Web 2.0 startup Launched RoamAbout with a Bang

Posted in Applications, Blog, Internet, Tech Snippets, Tech Trends by Bala on the April 23, 2008

IE6 and IE7 CSS hack

Posted in Applications, Tech Snippets, Tech Trends, WEB2.0 by Bala on the March 2, 2008

My previous IE and FF CSS hack post was decent enough to solve IE and Firefox CSS issues, but from the day one since IE7 was launched, developers have been facing many problems with it. For a particular style IE 6 and IE 7 will behave differently, it be with size, dimension, position or alignment. If you have one of these problems, then this post is for you.

CSS Hack for IE6 and IE7

Photoshop Re-touchin

Posted in Applications, Blog, Chennai by Bala on the January 11, 2008
Tags: ,

I love photography and re-touching, after a long time, I actually spent a lump some time in Photoshop. Many of us would have seen this Dove Ad. For those who haven’t here it is

Just wanted to give it a shot. I stared with this pic, which I happened to get when I was searching for something else. Tried certain filtering, brushing, leveling and  certain layering tricks and finally landed up here.

photo-pswork.jpg

after_retouch.jpg

So how does this looks? :)

Outlook Mails without Subject - How to alert ?

Posted in Applications, Blog, Microsoft, Tech Snippets by Bala on the January 3, 2008

For people who uses Outlook, this is a real big problem. Sometimes we send mails without subject, this happened to me once, I sent a mail to one of our clients without any subject, but thank god he didn’t raise that as a big issue, but in some places they do raise. There are few plug - ins available for Outlook which performs this checking, but it is not free.

Recently I came across a hot fix for this, but this is again a HOT FIX, this is valid for only the current session of Outlook.

  • Just open the Visual Basic editor - Alt + F11.
  • Expand the Project and inside that select “ThisOutLookSession
  • Open up the code editor (Just a double click)

And paste the following

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)

    Dim strSubject As String

    strSubject = Item.Subject

    If Len(Trim(strSubject)) = 0 Then

        Prompt$ = “Subject is Empty. Are you sure you want to send the Mail?”

        If MsgBox(Prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, “Check for Subject”) = vbNo Then

                Cancel = True

        End If

    End If

  End Sub

Yep, you are done with it. But this is only for this session. May be we can put this as a script file and add it to outlook.exe, so that it will get executed every time when a outlook session starts.

My First Android: Hello World

Posted in Applications, Gadgets, Google, Internet, Tech Trends, WEB2.0 by Bala on the November 13, 2007

b-factor_logo_android.gifI couldn’t wait to test drive Google’s Android. Today I did it finally with subbu , as always Google is simple and cool.

Android SDK is available, even an eclipse Plug-in is also available which makes our life much simpler. Just install the SDK + plugin and play around. The SDK comes with some samples, which will be a help a lot in kick starting.

Android API is packed with widgets, something similar to GWT, but a lot more(obviously).

There are four building blocks to an Android application:

  • Activity
  • Intent Receiver
  • Service
  • Content Provider

I went through Scobleizer,  he has posted a crappy post about Android, where he has listed out the certain short comings(which he thinks so), just for the sake. He couldn’t think beyond iphone, we cannot compare both. Open Source always has one advantage, it always grows.Still a lot to go, this time, I am not gona stop with my Hello World Application. Planing to Explor(d)e.   :)

Update: Scobleizer has repented for doing so after a good number of commenters
said that he was wrong.Its Good,that atleast he realized now ;)

Yahoo Kickstart

Posted in Applications, Blog, Chennai, Internet, People, Relationships, Social by Bala on the November 5, 2007

Yahoo has launched its new social network Kickstart, but this Social networking site is aimed at students/alumni/professional. But the saddest part is, the dashboard is a mix of Orkut and facebook. It is more of a orkut clone with LinkedIn concept. The entry point of sign in through college and naturally everyone is grouped so, but one more flaw what i found while signing in is that, there is not restriction of college names, say for eg my college is M.N.M. Jain, but it is not necessary for other students to login with the same name, they can give MNMJEC or the full version etc etc. In this case the basic purpose is getting a blow.

And it is more of a job oriented Social networking, where alumni can recruit etc, the profile category itself is classified as “Looking for Job”, “In a company”,”Hiring status” and other stuffs like Here for people and alumni. So it is more of a Job oriented stuff.

The Dashboard UI, as i mentioned is similar to Orkut, same pane split etc. It mite be a LinkedIn killer, but to surpass Orkut, sorry Yahoo, you have a long way to go.

Google Analytics - Taking a new form

Posted in Applications, Google, Internet, SEO by Bala on the October 17, 2007

Google Analytics announced some new features and upgrades last night at the eMetrics. The new Google Analytics update includes so many new features like Site Search details, outbound link analysis, improved UI reports etc. For more on this, read allaboutseo

Next Page »