Skip to main content

Personal Website vs. Blogsite

Blogging has become phenomenal these days. A lot of blog sites have been created. Contents in a blog site is similar to the contents of a personal website, but how do we decide which one to choose? Do we create a personal website or do we just create an account in a blog site? Here are some points that may help:

Personal Website:
A number of people create personal websites to put their personal thoughts into. Some place in their personal information. People pay a minimal amount for a domain name and hosting. Although there are some sites that allow individuals to place in their personal pages like Geocities, coms.ph, and other, many still prefer having their own domain name. Here are some advantages of owning a personal site:
  • Personal Domain Name (e.g. www..com) - this adds to your own prestige.
  • Site Customization - you can arbitrarily place html pages as you please.
  • File upload - you can upload files to your site for its readers to download.
  • SEO / Search Engine Optimization - you can modify your site to be more Search Engine friendly, and thus easily located by people who might have peripheral interest on your site.
  • Express yourself

Blog Site
People create or sign up for blog sites to provide commentary or news on a particular subject. There is a lot of similarities with the purpose of creating a personal website and a blog site. Here are some advantages of signing up for a blog site:
  • Free - you don't have to pay any.
  • Site Customization - you can still customize the appearance of your blog site through CSS.
  • Express yourself

The Decision
As we can see, there are many differences to both. Being in both the IT and business industry, I have a few factors to consider before having any of both. Here are some questions that might help:
  • For what purpose are you creating your site?
    • What contents are you going to put? Are those contents just commentaries or will they provide specific information of a particular subject?
  • Do you need many audience for that site?
    • Do you need many people accessing your site? If you create a personal website, do you have a marketing plan to make your site known? Will you be optimizing your site for major search engines?
  • How often will you be updating your site?
    • Are you that enthusiastic in posting contents to your site or will you just leave your site idle for a long time?
  • Will your site provide cash inflow or outflow?
    • Will your website give or take away your financial resources?

Comments

Popular posts from this blog

How to register a business name

Attending business summits and conferences is a big help to those who belong to the quite "techy" (technological or technical) industry. Being a graduate of one, I had less knowledge in the field of entrepreneurship. Enrolling myself in business administration gave me quite the knowledge to be a part of the business world and thus improve my entrepreneurial skills. I now would like to share this information that I got familiar with (and I managed to get a copy of the entire process from the 6th Mindanao ICT Congress): How to Register a Business Name (in the Philippines) ----------------------------------------------------------------------------------------------- SINGLE PROPRIETORSHIP Applicant must secure 2 copies of registration form and pay Php 300.00 (rate may change) for single proprietorship registration processing fee. The registration shall be valid for five (5) years. A surcharge of Php 100.00 is imposed if renewal is filed beyond the three (3) month grace period, c

Adding a Footer to the DataGridView component

I have been searching for sites and forums that would give me a any hint on having a footer on the .net DataGridView control. It was frustrating. I found some, but not what I was looking for. I use windows forms. It would have been easier if I was into web. I decided to create one for myself. It's not complete, but it works with me. It needs improvement and I hope that some programmers who might pass through this blog will help me with it :D. Limitations: Cannot set Footer values during design time. Can sometimes hide a row when scrolled to the last item in the grid. What I did was just create a user control that inherits the DataGridView control and add a StatusStrip to act as the footer. public partial class MyDataGridView : DataGridView { public StatusStrip Footer { get { return (StatusStrip)this.Controls["Footer"]; } } private bool _footerVisible; [Browsable(false)] /// /// Sets or Gets the va

Using Firebird with ASP.net

In my previous post , I was able to connect a firebird 2.0 database to asp.net using controls. The next goal was to connect to a firebird database using the firebird.net engine and using the repeater control. I however, was able to use the firebird.net engine to connect to the firebird database but not to the repeater control. I used the html table tag. I've created a simple asp.net demo displaying the contents of a firebird database on page load. Here are the steps: 1. Things Needed: Firebird 2.0 Server Firebird 2.0 Client Visual Web Developer 2. In Visual Web Developer, create a new ASP.net Website (using C# as the programming language). The project will have a default page named Default.aspx. Make sure that the code is separate from the page (ex. Default.aspx.cs is separate from Default.aspx) 3. On the Website menu, click on Add Reference. 4. Select the Firebird - ADO.net 2.0 Data Provider and click Ok. 5. Add using FirebirdSql.Data.FirebirdClient; to the "using" sec