Thursday, October 15, 2009

What is a Blog?

By: BizStra


Blog, also called a weblog or web log is an internet web-based facility for publishing that allow a blogger to publish posts, receive comments, selling products or advertisement or get involve in online communication. A blogger is a person who maintains and runs a blog. A good blog provides its blogger with of course a post or article writing tool, and some widgets that allow a blogger to put things such as text, followers, search engine, script, and many more. All the facilities in a blog has been created automatically making it easier for a blogger running a blog, although he does not know anything about the internet world.

Not like a website that requires programming HTML or PHP to be able to show an interesting website. With a blog as it facilitated at your fingertips.

What is the difference between blogs and websites?

Basically they are the same. Just on the blog, everything has been made so easy that allow a person to write and type just like in MS Word. All programming on a blog has been created automatically and it is hidden by a blog template creator.

Is that the only ability of a blog?

No, it was only the ability or the basic functions of a blog. Depart from here, creative bloggers have started to create a blog as a principle for making money. How? It is by making a blog as a platform for advertising. We called this function as ‘monetize’ a blog. So, in addition to write a posting such as an article to put in his blog, a blogger is selling advertisements through their blogs so that they earn lot of money through their blogs.

How much of a blogger make money from monetize a blog?

More or less it depends on the efforts and creativity of a blogger. Some bloggers get USD50 a month, some get 300 dollars, some get 1000 dollars or 5000 dollars and some get even up to 500.000 dollars a year. Wow! Is it little or a lot? You know the answer.

So, I want to start a blog now and I want to create money through my blog. What should I do?

One has to have Google mail in order to create a blog using www.blogger.com facility? Is it the only platform for creating a blog? No, there are a lot of other platforms that allow you to create a blog. For example, you can use www.wordpress.com. But most of bloggers, they use www.blogger.com as their platforms. Why? Perhaps it is easier and everything is there, and it's linked with Google!

Read my post on how to create a blog step-by-step.
Read More......

Apple versus Microsoft. who will win the competition?

By Peter Burrows | Businessweek

The entire personal computer industry is gearing up for Microsoft's (MSFT) Oct. 22 release of Windows 7, by most accounts the best version of its operating system in years. Yet Apple (AAPL), Microsoft's nearest competitor, is quietly planning to capitalize on the launch, too. "It presents a very good opportunity for us," says Philip W. Schiller, Apple's senior vice-president for marketing.



The Cupertino (Calif.) company sees Windows 7 as its best chance in years to win over longtime PC users. Millions of PC owners are expected to head to stores over the next year to replace their aging machines. The surge is expected to be unusually large because Microsoft's last operating system, Vista, was so poorly reviewed that many people simply stuck with machines running the eight-year-old Windows XP system.



In the coming weeks, Apple is expected to hit those computer buyers with advertising aimed at luring them to its Macs. It will likely make the case that Macs are less susceptible to viruses and are best suited to its popular iPods and iPhones. And look for it to poke fun at Microsoft for making XP owners go through an arduous process to upgrade to Windows 7—one that includes backing up all their files to an external drive, reformatting their PC, and then reinstalling all of their old programs, assuming they still have the CDs. "Any user that reads all those steps is probably going to freak out. If you have to go through all that, why not just buy a Mac?" says Schiller.

No question, Microsoft and partners such as Hewlett-Packard (HP), Dell (DELL), and Acer will benefit from the Windows 7 debut. PC makers will be rolling out a raft of eye-catching new models—from $300 netbooks to sleek desktop computers with touch-sensitive screens. Microsoft downplays the hassles of upgrading to the new operating system and says most people are going to buy new PCs anyway, which means they won't install the software themselves. "For the vast majority of people that get Windows 7, most will move to new hardware," says Parri Munsell, Microsoft's director for consumer product management.

PC makers are likely to benefit from their machines being much cheaper than Apple's, especially given the soft economy. The average price of a Windows PC is $537, compared with $1,434 for a Mac, says analyst Stephen Baker of researcher PC Data. "I just don't think you're going to have a huge influx of people who have perfectly good XP machines deciding they need to buy an all-new Mac," he says.

Schiller won't say if Apple is planning to cut prices, which would certainly attract a flock of new buyers. He points out that the company already has programs for helping PC users switch; people who pay $99 a year for its One to One training program can bring their PCs to an Apple Store and have all their files transferred.

Schiller says the success of Apple's operating system is indicative of the changing fortunes in the tech industry. While less than 20% of Windows users have moved to the three-year-old Vista, more than 70% of Mac users have upgraded to the Apple operating system introduced at about the same time. He has similar hopes for Apple's four-month-old Snow Leopard OS. Says Schiller: "I expect Snow Leopard will have an amazing upgrade rate, and Windows 7 won't."

That's Apple—calm, cool, and confident that the tech world is marching in its direction. "We've been through these transitions before, and no matter how you look at it—it's still Windows," says Schiller. "When all is said and done, the Mac picks up share a bit at a time."

Burrows is a senior writer for BusinessWeek, based in Silicon Valley.

Read More......

Tuesday, October 13, 2009

Making a Rotating Banner for a Blog


When we have a lot of banners to be put on our blog, sometimes it creates a problem for us because a lot of banner will consume a lot of space of our blog. This will make our blogs seemed not comfortable for the readers. This happen especially when we want to put a lot of ads for example. This is a dilemma. On one hand we want a lot of ads appears on the blog, but on the other hand we want our blog looks neat. Therefore, one of many solutions for this is making a rotating banner. Our banners will automatically appear alternately in the same place.

To make it you only need to enter the following script in the gadget's HTML code:

<script type="text/javascript">
var imgs3 = new Array("URL of Image1","URL of Image2","URL of Image3");
var lnks3 = new Array("URL Link1","URL Link2","URL Link3");
var alt3 = new Array("titleimage1","titleimage2","titleimage3");
var currentAd3 = 0;
var imgCt3 = 3;
function cycle3() {
if (currentAd3 == imgCt3) {
currentAd3 = 0;
}
var banner3 = document.getElementById('adBanner3');
var link3 = document.getElementById('adLink3');
banner3.src=imgs3[currentAd3]
banner3.alt=alt3[currentAd3]
document.getElementById('adLink3').href=lnks3[currentAd3]
currentAd3++;
}
window.setInterval("cycle3()",10000);
</script>
<a href="URL Link1" id="adLink3" target="_top">
<img src="URL of Image1" id="adBanner3" border="0" width="468" height="60"></a>

The above script is for 3 images. You can modify the script if you want to put more or less images. Don't forget to change URL link and URL image accordingly.

Example of rotating banners using 3 images size 125x125 pixels:




When you click the above rotating banners, it will bring you to a link that you defined in the above script. Three different images will bring you to three different links you define in the script. Now I think you already understand the benefit of the rotating banners, don't you?

For instruction in BAHASA, visit the following link:
Banner Rotasi 2 by Masdoyok
Read More......

Monday, October 12, 2009

Making a Text Area at a Blog

Text Area is a box containing the text. Usually for a script or information provided to be copied. Here is discussed how to make a brief text area.

To create a text area, you should use the following code. This code you type in the position of "edit HTML" in your city or a new post in your HTML widget.


<p align="center"><textarea name="code" rows="6" cols="20"> "Write your text or script here</textarea></p>

To make the entire contents of the text can be copied using the button "Highlight All", you have to replace the above code by using the following code:

<div><form name="copy"><div align="center"><input onclick="javascript:this.form.txt.focus();this.form.txt.select();" type="button" value="Highlight All"> </div><div align="center"></div><p align="center"><textarea style="WIDTH: 300px; HEIGHT: 144px" name="txt" rows="100" wrap="VIRTUAL" cols="55">Put your text or script here</textarea></p></div></form>

That's it! Try it!

Example text box:



Example of text box with "Highlight All" button:



For Bahasa Indonesia, visit this link:
Membuat Text Area by Masdoyok
Read More......

Sunday, October 11, 2009

America's Best Young Entrepreneurs 2009

By Nick Leiber | Businessweek

Who is more likely to start a business: A college student or a worker with a few decades of experience? Yep, you guessed it: the experienced worker.


It turns out it's boomers, not twentysomethings, who start the most businesses in the U.S. Over the past decade or so, the highest rate of entrepreneurial activity belongs to the 55-64 age group. The 20-34 age bracket, by contrast, had the lowest rate. That's according to a recent report by Dane Stangler, a senior analyst with the Kauffman Foundation, based on data collected from 1996 to 2007. It echoes research by entrepreneur-turned-academic Vivek Wadhwa, who found that twice as many tech entrepreneurs create ventures in their 50s as do those in their early 20s.

So not only are these entrepreneurs navigating the toughest economy many of us have ever lived through, they're also vastly outnumbered by older, more experienced competitors, who usually have more contacts and capital. That's even more reason to continue to give young entrepreneurs the encouragement, respect, and awe that they've received since becoming cultural icons during the dot-com boom.

Stangler says he's not suggesting young people aren't entrepreneurial or won't be. "The cachet of large, established companies has taken a hit. Job tenure has been falling for a long time. Employment is not going to recover in the very near future. People across all age groups are going to take the future into their own hands."

Dorm Room Beginnings

Brian Ruby, 25, is just one entrepreneur who is following through on Stangler's prediction. He founded molecular imaging equipment maker Carbon Nanoprobes in 2003 in his Columbia University dorm room and has since raised about $4 million from institutional and private investors. After six years doing research, Carbon Nanoprobes is now transitioning to equipment sales, and Ruby expects about $1 million in revenue in 2010. The nine-person company based in Pike Malvern, Pa., sells its equipment to universities, semiconductor firms, and material sciences companies.

Husband-and-wife team Eric Koger, 25, and Susan Koger, 24, launched indie clothing e-tailer ModCloth in 2002, near the end of their freshman year at Carnegie Mellon University. They've managed to raise a little over $3 million from angels such as StubHub co-founder Jeff Fluhr and venture capital firms First Round Capital and Maples Investments. Eric says the 104-employee, Pittsburgh-based company is profitable, with around $1 million in monthly sales, and forecasts more than $15 million total in 2009.

Logan Green, 25, and John Zimmer, 25, started Zimride in 2007 to allow carpoolers to connect online. Its 35 clients are mostly colleges but include corporate customers such as Cigna and Wal-Mart. Universities pay about $10,000 per year to use the platform, although pricing varies. Zimmer says the Palo Alto (Calif.) firm, with six employees, expects revenue of $400,000 this year and is now profitable.

Record Numbers


These are just a few of our finalists defying the odds. To assemble the group, as in previous years, we asked BusinessWeek readers to nominate candidates aged 25 and under who were running their own companies that showed potential for growth. Given the severity of the recession, we were pleased to receive a record number of nominations this year—more than 600. After the call for nominations ended in mid-August, our staff sifted through the nominees looking for the most impressive.

Not surprisingly, the majority were Web-based businesses, where barriers to entry continue to fall. There were a smattering of more traditional companies, including an aircraft seller, a specialty mushroom grower, and a machinery lubricant vendor. Compared with last year, more women were nominated, more businesses were profitable, and more had secured equity capital.

You can flip through this slide show for profiles of each of the 25 finalists, then vote for the business you feel holds the most promise. We'll announce the top vote-getters on Nov. 9. Then check out our slide show on where last year's finalists are now. For more elements of the special report, including a feature on selling to universities and a video interview with a standout alum, visit the related items box at upper right side of this overview.


--------------------------------
Leiber is Small Business editor for BusinessWeek.com
Source: Businessweek Read More......
Related Posts with Thumbnails
Quote of the Day

Today's Birthday

free counters