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 Crystal Reports 10 with C#.net and Firebird

C# express doesn't include a report designer or viewer. Reports however, is very much needed when creating a business software. Since C# express doesn't include a report designer, we need to find other means. One is to use a free report such as MyNeoReport. This however may not work under many circumstances. The other alternative would be to use a proven report engine and designer-Crystal Report. Crystal Report has been used by many developers (in our city). However, using a free programming language and IDE, and a free database is very limiting. Not much information can be gathered on the net either (with regards to reporting as of this writing). Here's a way to use Crystal Reports using Firebird database and C# Express as software development IDE: Pre-requisites: C# Express 2005 EMS SQL Manager 2005 for InterBase & Firebird Lite Crystal Reports 10 Create the following database: Name: TestDB1 Tables: TESTTABLE1 Columns:  ID - PK, INTEGER,AUTOINCREMENT DES...