Clint Liang's

I share my successful stories and things I learned about life, coding, startup and entrepreneurship

About Me

Here are some things that you should know about me.

Clint Liang

Software Engineer & Architect. Tech Entrepreneur
Tech entrepreneur with computer science background interested in building technologies to connect people, things and places. Founder of @Tinflur and @Lopif.

Blog

My thoughts.

How to Fix Blue Screen and Non Stop Reboot Problem After iOS 8.0.2 Update

I did an update from iOS 8.0.1 to iOS 8.0.2 on my iPhone 5s this morning. After installing the update, my iPhone started constantly rebooting and showing blue screen. It sucks, isn’t it? Luckily I made a backup before the update, so I was able to restore my phone in recovery mode. Here’s what I did to […]

VMWare NAT Problem Fix: How to Set Up Host-only Virtual Network on Ubuntu

Purpose: I only have one IP address assigned to my server and I have multiple virtual machines hosted on the server. In order to make those virtual machines access the Internet, I set up the VMWare network to be NAT. However, once a while the vmware NAT process runs 100% CPU and crashed the whole […]

How to Set Up Your Own Private Git Server on Ubuntu

This tutorial assumes that you have openssh-server installed on your server so that you can ssh on to it. You should have a local repository on your development machine ready to go. Set up your sever 1. Install git on your server sudo apt-get install git-core 2. Create a git ssh user on your server […]

Yii Blog Markdown Syntax Code Block Fix

A couple of days ago, I decided to write something on my blog based on Yii. By using Markdown syntax I was able to format my tutorials. However, the code block in my tutorial could not be displayed properly. If you have the same problem as mine, here’s a solution I figured out. Make sure […]

How to add weather indicator on Ubuntu 11.04 (Natty Narwhal)

Upgrading from Ubuntu 10.10 to 11.04, I enjoy the new unity launcher and other new features. However, I found one of the useful application indicator-weather is missing. After searching on the Internet, I found the solution and I am a happy Ubuntu user again:) Here’s how: The weather indicator on Ubuntu 11.04 is not installed […]

Set Up Trac On Ubuntu

1. Install dependencies: $ sudo /etc/init.d/apache2 stop $ sudo apt-get install libapache2-mod-python $ sudo apt-get install apache2 libapache2-svn $ sudo apt-get install python-setuptools $ sudo apt-get install python-pgsql $ sudo /etc/init.d/apache2 start 2. Create postgres user account “tracuser” and database “trac” $ sudo su postgres postgres@mapsys-dev-00: createuser -U postgres -E -P tracuser postgres@mapsys-dev-00: createdb -U […]