« prev next »

Privacy of Blogging

Related Categories
  Blogging
  Friends
  Life
  Me
  Misc
  This Site
  Wendy
  Yifan
  Backstage
  Blog Tips
  Hosting
  Map
  MovableType
  Other Sites
  Spam
  Webcam

Yesterday night, we discussed about what to blog and what not to.

I found many bloggers treat blog as a private diary and wrote something that they will never tell anybody into the blog. I don't think it is a good approach.

Blogging is NOT a private diary. Here are some suggestions on blogging:

1. Treat blog as a TOOL. Don't do something you won't do because of the tool, and don't stop doing something you have already be doing because of blog.

2. Blog has to be useful. Useful blog for someone himself/herself may not be helpful to others. It is very common and I encourage people to blog even if it is not so helpful to others if it is helpful to himself. To be helpful to others may not always be helpful to himself. It is also common. In both cases, blogging has some value. If you found it neither helpful to yourself, nor helpful to others, it means the blog doesn't have too much value, and I recommend you to give up and stop wasting time.

3. Blogging just for blogging? It is good to try new things by starting a blog. It is good. But if you don't feel it fits your need in some way, the solution is simple: quit blogging, although it may seems cool, hip, fashionable for others.

4. Protect other's privacy. Privacy is defined (by some source) as the right of not to be known. People can choose whatever he/she want to write about his/her own life, but don't involve other people's life. The rule of thumb I use is, ask for permission if you reveals the information for other persons. To tell people what you eat for last dinner is no problem - you can share whatever about yourself, but to share what the other person ate last night seems violating this person's privacy.

BTW, exposing too much private life without any meaningful impact also does not make too much sense. Just my 2 cents on blogging.

P.S. Technical changes

I hate to fix technical problems now, but I spent about one hour to fulfill my commitment to my friends by fixing the problems they faced. I hosted blogs for other people, including mvm, my Chinese site, claire, elfe, and wendy. Due to the server move, I only successfully moved my Chinese site and mvm to home.wangjianshuo.com and have to leave claire, elfe, and wendy on the old server. So to keep the URL unchanged, I did the following:

Under their folder at home.wangjianshuo.com, upload file as blow:

name:

.htaccess

content:
RewriteEngine On
RewriteRule (^.*) mirror.php

name: mirror.php
content:

<?php

$BLOG_MAIN_SITE = "http://wangjianshuo.com";
$BLOG_MIRROR_SITE = "http://home.wangjianshuo.com";

$entryfile = $_SERVER['REQUEST_URI'];

$file = fopen ("$BLOG_MAIN_SITE$entryfile", "r");

if (!$file) {
echo "

Unable to open remote file.\n";
exit;
}
while (!feof ($file)) {
$line = fgets ($file, 1024);

echo $line;
}
fclose($file);
?>

Job is done.

Posted by Jian Shuo Wang at February 12, 2006 9:44 PM
Copyright: You are free to redistribute this work, as long as you keep this disclaimer and this link: http://home.wangjianshuo.com/archives/20060212_privacy_of_blogging.htm

Related Entries: Blog Tips
  1. Write Articles, Not Blog Postings July 25, 2007
  2. Lulu.com to Turn Blog into Book March 26, 2007
  3. How to Start a Blog? March 25, 2007
  4. Too Many Entries in a Blog July 30, 2006
  5. A Blog is All About a Person February 17, 2006
  6. Privacy of Blogging February 12, 2006
  7. Topics Selection Guidelines November 4, 2005
  8. When Nothing to Blog September 3, 2005
  9. To Focus or Not? July 23, 2004
Comments

I write blog to record myself, I don't know whether it is useful.

Posted by: Feigo (external link) on February 12, 2006 10:43 PM

You can set Apache Rewrite destination to a remote address. That would save some I/O.

Posted by: Livid (external link) on February 13, 2006 2:21 AM

Good point. :-)

Posted by: Jian Shuo Wang (external link) on February 13, 2006 5:28 PM

why must be useful? it's too utilitarian

Posted by: 1 on February 23, 2006 12:55 PM
Post a comment
Name:

Email Address: (will not show)

URL: (optional)

Comments:


It may take up to 30 seconds before the server returns a result. IP address recorded.
Remember my information?

<-- Please click POST only once
© 2001 - 2008 Jian Shuo Wang. All right reserved.