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

Number to Text in Excel

I was asked today by one of my classmates about converting numeric values to literal values in excel. I thought there was a function for this but I found none. Well I was curious so I looked it up on the web . I've done a little modification here to make it more or less generic (specially when writing in checks). Here's how it's done: Click Tools->Macro->Visual Basic Editor Insert a module Paste the following code: Option Explicit '**************** ' Main Function * '**************** Function SpellNumber(ByVal MyNumber) Dim Temp, WholeNumberText, DecimalText Dim DecimalPlace, Count ReDim Place(9) As String Place(2) = " Thousand " Place(3) = " Million " Place(4) = " Billion " Place(5) = " Trillion " ' String representation of amount. MyNumber = Trim(Str(MyNumber)) ' Position of decimal pl...

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...

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...