temporary website

An SEM issue: Black hat SEO (instead of White hat SEO)

Here’s an interesting article by Jill Whalen on White hat and Black hat SEO. Simply put, White hat is ethical and black hat is unethical.

Though fact it's common to find people to step towards the latter because it could prove to be more effective, in the short term at least, but at the same time you end up taking a risk with getting blacklisted by search engines.

Also check out another one by Alan Perkins of Silverdisc on SEO hats which includes a nice table for comparison beween black hat as opposed to white hat SEO.

Date: 27 Feb 2007 | Categories: SEO | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

Yayy! Google search for the visually impaired

Google search for the visually impaired by Google Labs.

Date: 26 Feb 2007 | Categories: Accessibility | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

The Opera Mini Simulator- See how your website looks on the handset

The Opera Mini Simulator functions exactly like it would when installed on a handset.

See how your website looks on the Opera Mini. I checked my blog on it and it works fine on it. Another one of the benefits to creating an accessible website!

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

Business to Customer relationships: before and after

An funny however bang on the spot post by Kathy Sierra on Business to customer relationships: Before and after the customer buys a product

Date: 25 Feb 2007 | Categories: Humor | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

Verticaly centering any element using CSS

Here’s how to vertically align a container to the center of the screen using CSS.
Date: 24 Feb 2007 | Categories: CSS, XHTML, Front end development | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

A Protex viral film: Daddu ki Amaanat

Check out the Protex viral film: Daddu ki Amaanat. “Daddu ki Amaanat” means “Grand dad’s possesion”. Great storyline and pretty good execution. Check it out.

Date: 21 Feb 2007 | Categories: Humor, Viral marketing | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

Why does money have value?

Money doesn’t have any inherent value. It is simply pieces of paper or numbers in a ledger. A car has value because it can help you get where you need to go. Water has a value because it has a use; if you don’t drink enough of it you will die. Unless you enjoy looking at pictures of deceased national heroes, money has no more use than any other piece of paper.

It didn’t always work this way. In the past money was in the form of coins, generally composed of precious metals such as gold and silver. The value of the coins was roughly based on the value of the metals they contained, because you could always melt the coins down and use the metal for other purposes. Until a few decades ago paper money in different countries was based on the gold standard or silver standard or some combination of the two.

This meant that you could take some paper money to the government, who would exchange it for some gold or some silver based on an exchange rate set by the government. The gold standard lasted until 1971 when President Nixon announced that the United States would no longer exchange dollars for gold. This ended the Bretton Woods system. Now the United States is on a system of fiat money, which is not tied to any other commodity. So these pieces of paper in your pocket are nothing but pieces of paper.

The Value of Money

So why does a five-dollar bill have value and some other pieces of paper do not? It’s simple: Money is a good with a limited supply and there is a demand for it because people want it. The reason I want money is because I know other people want money, so I can use my money to others to get goods and services from them in return. They can then use that money to purchase goods and services that they want. Goods and services are what ultimately matter in the economy, and money is a way that allows people to give up goods and services which are less desirable to them, and get ones that are more so. People sell their labor (work) to acquire money now to purchase goods and services in the future. If I believe that money will have a value in the future, I will work towards acquiring some.

Our system of money operates on a mutual set of beliefs; so long as enough of us believe in the future value of money the system will work.

What could cause us to lose that belief? It is unlikely that money will be replaced in the near future, because the inefficiencies of a dual coincidence of wants system are well known. If one currency is to be replaced by another, there will be a period in which you can switch your old currency for new currency. This is what happened in Europe when countries switched over to the Euro. So our currencies are not going to disappear.

The Curse of Inflation

Then why else might we think that our money might not be of value to others in the future? Well, what if we believed our money wouldn’t be nearly as valuable in the future as it is today? This inflation of the currency causes people to want to get rid of their money as quickly as possible. Inflation, and the rational way citizens react to it, causes great misery for an economy. People will not sign into profitable deals which involve future payments because they’ll be unsure what the value of money will be when they get paid. Business activity sharply declines because of this. Inflation causes all sorts of other inefficiencies, from the café changing its prices every few minutes, to the homemaker taking a wheelbarrow full of money to the bakery in order to buy a loaf of bread.

The belief in money and the steady value of the currency are not innocuous things. If citizens lose faith in the money supply and believe that money will be worth less in the future economic activity can grind to a halt.

Money is essentially a good, so as such is ruled by the axioms of supply and demand. The value of any good is determined by its supply and demand and the supply and demand for other goods in the economy. A price for any good is the amount of money it takes to get that good.

Inflation occurs when the price of goods increases; in other words when money becomes less valuable relative to those other goods. This can occur when:

  • The supply of money goes up.
  • The supply of other goods goes down.
  • Demand for money goes down.
  • Demand for other goods goes up.

The key cause of inflation is increases in the supply of money. Inflation can occur for other reasons. If a natural disaster destroyed stores but left banks intact, we’d expect to see an immediate rise in prices, as goods are now scarce relative to money. These kinds of situations are rare. For the most part inflation is caused when the money supply rises faster than the supply of other goods and services.

Date: 20 Feb 2007 | Categories: Finance | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

CSS 2 and CSS 3 compatibility with IE 7 javascript library

IE7 is not only the newest version of Microsoft’s internet browser which is irritating since Microsoft is all out to shove it down your throat, like it or not, but is also the JavaScript library that loads and parses all style sheets into a form that Explorer can understand. This lets you use most CSS2/CSS3 selectors without having to resort to CSS hacks. The one downside is it’s file size… 22kb.

IE7 javascript library

  • Supports the following CSS selectors:
    • namespace|selector
    • parent > child
    • adjacent + sibling
    • adjacent ~ sibling
    • [attr], [attr="value"], [attr~="value"] etc
    • .multiple.classes (fixes bug)
    • :hover, :active, :focus (for all elements)
    • :first-child, :last-child, only-child, nth-child, nth-last-child
    • :check, :disabled, :enabled
    • :root, :empty, :contains(), :not()
    • :before/:after/content:
    • :lang()
  • works with both HTML and XML documents
  • supports imported style sheets
  • preserves the cascade of the style sheet
  • does not alter the document structure
  • does not repeatedly query the DOM tree using JavaScript
  • uses pure CSS to enforce style sheet rules
  • supports the W3C box model in both standards and quirks mode
  • supports fixed positioning (flicker free)
  • supports overflow:visible
  • supports min/max-width/height
  • fixes broken (X)HTML elements (abbr, object)
  • standardies forms behavior
  • supports PNG alpha transparency
  • completely modular (add/remove fixes)
  • works for Microsoft Internet Explorer 5+ (Windows only)
Date: 19 Feb 2007 | Categories: CSS, XHTML, Front end development, Libraries | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

How to answer interview questions

Here’s a funny one I got in my mail that you can actually use!

A lot of people know how to write a resume but getting past the interview can be a toughie. While these are really not the questions I ask when interviewing potential creative hires for Sapient, below are some tips on approaching tough questions that interviewers throw at you... according to the mail:

1. Why did you leave your last job?
Real answer: It sucked.
What you should say: I felt my talents and abilities were underutilized.

2. What are your biggest weaknesses?
Real answer: I can’t concentrate for more than five minutes, hate all forms of authority and tend to fall asleep at my desk.
What you should say: I’m a workaholic. I just don’t know when to put down my work.

3. You don’t seem to hold on to a job long. Why should we think you’ll stay here any longer than you’ve stayed elsewhere?
Real answer: My employers have always had a hang-up about keeping only competent employees..
What you should say: I’m at a point in my career where I am tired of moving around. I really want to feel part of a team, a long-term enterprise, where I can make a contribution.

4. How do you handle change?
Real answer: I deal with it everyday, unless I’m out of clean underwear.
What you should say: I think everyone knows that today the only constant is change. I thrive on it.

5. How do you get along with others?
Real answer: Fine, as long as they stay out of my face.
What you should say: I think the interpersonal dynamics of the workplace can be among the most satisfying aspects of any job.

6. What does the word success mean to you?
Real answer: It means that I don’t have to drag my sorry ass out of bed to kiss yours.
What you should say: Success, for me, would be knowing I am making a difference working with a team of people to make a more profitable enterprise.

7. What does the word failure mean to you?
Real answer: It means I continue to collect unemployment insurance.
What you should say: Failure? I’m sorry, I don’t know what you mean. That word is not in my vocabulary.

8. Do you get along with your current boss?
Real answer: I get along fine, considering what kind of a malicious person he is.
What you should say: I don’t think I’d call him a boss; he’s been more of a mentor to me. (Awrite! haha)

9. Do you ever get angry with co-workers?
Real answer: I don’t get angry, I get even.
What you should say: Nothing angers me more than to see a co-worker not pulling his weight, goofing off or stealing. Yes, sometimes I do get angry with co-workers.

10. Can I contact your references?
Real answer: Sure, but they won’t know who I am.
What you should say: Some of them are out of the country right now. Maybe I can arrange to have them contact you. (This answer really woulnd't work!)

Date: 18 Feb 2007 | Categories: Humor, Jobs | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

Alternate color for list items

Andy Brudthkuhl and TJ show how to color alternate list items using JavaScript.

Create a list with alternate colored items using JavaScript

Date: 16 Feb 2007 | Categories: CSS, XHTML, JavaScript, Front end development | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

The Ergopod 500

New Model 500 height adjustable workstation

The Ergopod 500… height adjustable workstation: ideal for standing, seated or supine work positions… cool!

Date: 16 Feb 2007 | Categories: Cool shit, Industrial Design | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

George Bush’s Record

This is probably why many people think Bush is an idiot.

Date: 11 Feb 2007 | Categories: Humor | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

Visio Tips- 2: Use Shortcuts (download this sheet)

Use shortcuts to increase productivity.

Here’s a link to download Visio shortcuts from the Microsoft website. Print it out and stick it near your work station.

Date: 09 Feb 2007 | Categories: Information Architecture, Visio | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

Viso Tips- 1: Use these life saving Visio Macros to increase productivity

While you can create macros, make sure download these really useful Visio macros at www.welie.com. The Macros include basic functionality most of which should have been included as default in Visio.

The macros include:
  • Duplicating a page (oh yeh!)
  • Fixing the print settings of all pages
  • Setting the zoom factor of all pages to ‘fit to page’
  • Past as Unformatted Txt
  • Copy Page to other document

If you’d like to contribute some macros of your own that you think are really helpful, email Martijn and do so. Else, you could leave a link or upload by dropping a comment here.

Date: 07 Feb 2007 | Categories: Information Architecture, Visio | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

On not creating cross browser websites

Anyone who slaps a ‘this page is best viewed with Browser X’ label on a Web page appears to be yearning for the bad old days, before the Web, when you had very little chance of reading a document written on another computer, another word processor, or another network.

Tim Berners Lee, Inventor of the World Wide Web, Director of the W3C.

Date: 04 Feb 2007 | Categories: Accessibility, Usability, Front end development | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

Solution to IE dropdown width issue

Peter Frueh of AjaxProgrammer shows how to solve the IE dropdown width issue by dynamically managing the IE dropdown width.

Problem is that it changes the width of the whole dropdown box rather than just the selected menu item, so it’s not very usable as it could and in most cases would screw up the layout.

Heard of a good solution that manages the IE dropdown the way Firefox and other browsers do? In case yes, drop a comment and let me know

Date: 02 Feb 2007 | Categories: XHTML, JavaScript, Front end development | 2 comments

Comments

  • You’re correct in that it does change the width of the entire select element, but it uses absolute positioning so that the expanded box does not affect page layout. Give it a try — but do let me know if you run into any quirks.

    Pete Frueh — 02 Feb 2007 at 03:10

  • That’s nice to know Pete. But would it work for centered layouts as well though, without messing with the rest of the layout? Do let me know. Also I’d suggest adding you comment to your post for other readers as well. Nice work.

    Inverse [Member] — 03 Feb 2007 at 02:55

Leave a comment


Options:<> (Line breaks become <br />)

When cigarettes get expensive

A one frame funny showing a guy inhaling a cigarette, another sucking out the smoke out of his ass, followed by another and the last one exhaling it out...when cigarettes get expensive
Date: 01 Feb 2007 | Categories: Humor | Leave a comment

Comments

No Comments for this post yet...

Leave a comment


Options:<> (Line breaks become <br />)

Skin + Content © copyright unless stated 2007 Inversarium | Powered by  b2evolution | blog soft | affordable hosting | adsense