28 tháng 6 2009

TweetVN Marketing

Trong 1 tuần vừa qua mình đã thử quảng cáo TweetVN trên 1 vài mạng xã hội và nhận được vài phản ứng khác nhau. Tuy nhiên lượng người đăng ký sử dụng quá ít, có vẻ như mọi người còn xa lạ với cách này hoặc là nó không phù hợp chăng.
Mình sẽ cố gắng quảng cáo trên các diễn đàn nữa thử xem. Người tiêu dùng Việt Nam thật là khó tính

25 tháng 6 2009

Một thoáng băng khoăng

Đang làm việc bỗng dưng dừng lại suy nghĩ. Liệu hết tháng 7 mình còn có thể duy trì tiếp income và mục tiêu cho công ty mình không?

Một ngày mệt mỏi

Hôm qua là 1 ngày rất là mệt vì phải chạy ngoài đường suốt.
Sáng 10h phải chạy qua Bạch Đằng phỏng vấn, đây là 1 công ty chuyên về Marketing Online, khách hàng chủ yếu của họ là những công ty lớn nhất nhì Việt Nam như Sheraton, Mai Linh. Mình gặp anh giám đốc, một người giản dị và có hoài bão lớn. Sau 1h nói chuyện mình rất thích cách thức xây dựng công ty này. Tuy nhiên thích là 1 chuyện, còn được nhận hay ko lại là chuyện khác. Ha ha ha
Đến 1h30 thì phải chạy qua làm bài test bên quận 7. Đầu tiên là tìm không ra công ty mặc dù đã đến đúng đường ( ac ac ). Móc điện thoại ra gọi tốn 1 khoản tiền điện thoại ( hic hic đang thất nghiệp mà ). Sau khi vào được công ty thấy cũng thích vì nó bự, mát mẻ, thoáng. Nhưng hởi ôi bài test, họ đưa mình cái source của trang họ đang phát triển kiu mình sửa vài thứ. Đọc vào code thì acac 1 đống tùm lum tè le, cái code này mà viết thêm chừng vài tháng chắc chắn bỏ làm lại =)).
Làm bài test 20p xong, đi zìa ghé qua em reception hỏi "Sếp em có coi CV của anh trước khi gọi không em". Tại sao mình hỏi vậy? Vì mình thấy trình độ bài test này quá thấp so với skill của mình :D
Thôi làm biếng viết tiếp òi.

23 tháng 6 2009

Mua domain

Hôm nay Dreamteks chính thức mua domain TweetVN.com nhằm sử dụng cho dịch vụ nhắn tin SMS đến Twitter

SMS Twitter VN: Đặt tên cho ứng dụng

Sao 1 thời gian nghiên cứu ( 1 giờ ) mình quyết định tên của dịch vụ nhắn tin Twitter sẽ là TWEETVN. Mọi người ủng hộ nha.

22 tháng 6 2009

SMS Twitter VN: Version 1.0 đã hoàn thành

Version 1.0 của SMS Twitter VN đã được launch vào ngày hôm nay. Dreamteks đã cố gắng rất nhiều trong việc hỗ trợ beckerbao hoàn thành version này. Cám ơn dreamteks rất nhiều.

16 tháng 6 2009

14 tháng 6 2009

Cách thức Optimize Wordpress 2.8

Introduction

Having a blog that’s snappy & responsive is just one of the many factors that makes a great blog. Even with the best content in the world, a slow blog will frustrate readers & potentially force them elsewhere. In this post we’ll focus on optimising Wordpress, a popular free open source blogging platform that runs on PHP.

Test your Current Speed

In order to figure out if any of the changes we’re about to make have an effect it’s important to benchmark current performance. There’s a number of tools & a small piece of code that allows us to do this.

Pingdom

Pingdom does a quick visual benchmark of all the elements on your Blog. You can instantly get a snapshot of elements that may be taking longer to load than they should & other problem areas. Here’s the benchmark for the StoreCrowd Blog (Around 9s load time & 924kb).

Pingdom

YSlow

YSlow is a firefox plugin that plugs into Firebug (possibly the best web development tool in the history of man). It analyses 22 factors that can slow down the performance of your blog & scores you out of 100. The StoreCrowd Blog gets 59/100 & a grade E.

YSlow

Some of the things we’ve been alerted to clean up:

  1. Make Fewever HTTP Requests (Grade F)
  2. Use a CDN (41 Static Components not on a CDN)
  3. Add Expires Headers (36 Static Components without an Expiration Date)
  4. Compress Components with GZIP (There’s 9 Text Components that could be Gzipped)
  5. Minify Javascript & CSS (There’s 10 Javascript Components that could be minified)
  6. Configure Entity Tags
  7. Reduce Cookie Size

Show Number of Queries & Load Time

It’s possible using this small piece of PHP code in your website footer to show the number of Queries & Load time publically:

1.echo get_num_queries(); ?> queries in seconds.

A quick test on the Homepage & I get: 17 queries in 1.058 seconds.

Web Hosting

Believe it or not your Web Hosting is critical to the speed at which Wordpress performs.

Without going into too much detail on which host you should pick here’s a very simple but quick overview:

  • Shared Hosting – On average you’ll be sharing one single server with up to 100 other people.
  • VPS – You may be sharing a single server with up to 20 other people.
  • Dedicated – You’ll have a whole server to yourself.

You can get an idea of the load on your server by logging in via ssh & using the command: top

My rule of thumb is that anything over 1.00 is worrying & could impact performance.

This isn’t to say that you can’t get Wordpress running snappily on a Shared Web Host. But just remember that you’ll always get better performance from higher end web hosts. For the record this blog is hosted on a Hybrid VPS at Wired Tree & our main site is hosted on a Xen VPS at Linode. We do also ProxyPass requests from one server to the other to reduce load if the blog gets busy.

Location of your server is also important, think about your target market. If it’s the whole USA you’ll want a server that’s located in the middle of the country, if it’s New York then a server on the East Coast. You get the idea.

Server Setup & Configuration

Making sure your server is tuned to handle the load & queries you’re throwing at it depends largely on your hardware (RAM & CPU). Wordpress is built with PHP & it runs on an Apache http server normally. There have been some good experiments using other http servers such as Nginx or Lighttpd, I’ll leave this for another post though.

Few quick things to do first:

Remove Services to free up RAM

The more RAM you have available the higher you’ll be able to tweak MYSQL & Apache for performance.

  • Remove Clamd
  • Change SpamD to only spawn 1 child process
  • Remove Mailman, unless you’re running a mail server (I just use Gmail for domains)

MYSQL Query Cache

Since Wordpress communicates quite heavily with a Database you’ll need to ensure that your my.cnf configuration suits your Hardware setup. There’s a few quick tweaks to speed things up.

The Query Cache does exactly what it says, its Caches queries. This means that the first time the query is run it’ll get cached so the second time it runs there’ll be a significant speed improvement.

Add these lines to your my.cnf:

1.query_cache_type = 1
2.query_cache_limit = 2M
3.query_cache_size = 20M

Remember you’ll need to restart MYSQL for these changes to take effect.

Compiler Cache: XCache or Eaccelerator?

The Compiler cache increases the performance of compiled scripts on your server by caching them, this can have a dramatic effects on the execution time of PHP scripts.

I personally recommend playing around with both here, however I’ve found a slight performance increase from Xcache over Eaccelerator on Wordpress. About 5%.

Increase your max Apache Connections

Increasing the max connections in your httpd.conf can increase performance & server more connection simultaneously. However you may end up running out of RAM, so test a few configurations first.

150 connections is a good start:

1.max_connections = 150

Then increase in 50 connection intervals until you’re satisfied. Here’s a fantastic tutorial on Optimising your VPS Server which goes into great detail.

Remember to restart apache every time you make a change.

Optimise Code & Graphics

Once your server is humming along you can now start playing with the Core Wordpress code & also the coding of your Theme.

Disable Hotlinking

Whenever you server images on your server you’re essentially using resources & queries. Quite often people will borrow you images & hotlink them on their own server. This not only uses up your bandwidth, but it also puts necessary strain on your server.

You’ll need to add the following code to your .htaccess file & replace example.com with your domain:

1.
2.RewriteEngine on
3.RewriteCond %{HTTP_REFERER} !^$
4.RewriteCond %{HTTP_REFERER} !^http://(www\.)?example\.com/.*$ [NC]
5.RewriteRule .*\.(gif|jpg|png|ico)$ - [F,L]
6.

Use Image Hosting

Hosting images externally can reduce resources & server load considerably. In the example below you can see the decrease in memory usage a Wordpress Blogger saw when moving static images off his server:

Read more about the steps taken to move images to Amazon S3.

Compress Javascript

Compressing Javascript is quite simple, since this is loaded on every pageview you can reduce the size of Javascript by removing all of the White Space. There’s a simple tool to do this for you called JavaScript Compressor.

Javascript at Bottom of Page

Often your site can run incredibly slowly or stall because another site that you call Javascript from is down or offline (i.e. Digg badges, Tweetmeme etc). Move anything that you can to the end of your page to avoid this, you can also include the Javascript that can’t be moved to the end of the page in an iFrame.

Use Browser Cache

The Browser Cache itself won’t actually make your blog load faster however it will help reduce strain on the server by caching objects that are getting loaded often (like images & styles)

Test the following code in your .htaccess file:

1.FileETag MTime Size
2.
3. "\.(jpg|gif|png|css|js)$">
4. ExpiresActive on
5. ExpiresDefault "access plus 1 year"
6.
7.

Compress Static Data

You can reduce the size of your pages by letting the browser compress & uncompress the data. This will reduce the bandwidth & amount needed to download.

Test the following in your .htaccess file:

1.AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css application/x-javascript
2.BrowserMatch ^Mozilla/4 gzip-only-text/html
3.BrowserMatch ^Mozilla/4.0[678] no-gzip
4.BrowserMatch bMSIE !no-gzip !gzip-only-text/html

Use a CDN or Subdomain for Static Files

Serving all your images from the same domain can means that your browser is waiting to download all the items one after the other. Lets say you have 12 items, if you split these out across 3 subdomains then they can be downloaded concurrently (as there’s 3 sources), instead of the browser waiting to download them from one source.

A good way to experiment here is to have your css & javascript files on files.yoursite.com & your templates/images on static.yourserver.com

A CDN or Content Delivery Network works in much the same way. It allows you to host your static files on a subdomain which is linked to a wide network of servers all over the world. This means that your static content is not only downloaded in parallel but it’s more than likely pushed to a server that’s closer to the intended recipient making it load MUCH faster.

Wordpress

The following includes tweaks that you can make to Wordpress itself to improve performance.

Upgrade to the latest version

Keeping up to date with the latest Version is paramount, not only does it fix security vulnerabilities but they are constant trying to improve performance. For example Wordpress 2.8 has significant database performance improvements.

Remove & Disable Post Revisions

In Wordpress 2.6 & later revisions of your posts are kept every time they are autosaved. This can clog up the database & increase its size unnecessary.

To disable post revisions add this line to wp-config.php:

1.define('WP_POST_REVISIONS', false);

You can also run the following query in PHPmyadmin to delete all current revisions:

1.DELETE a,b,c
2.FROM wp_posts a
3.LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
4.LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
5.WHERE a.post_type = 'revision'

Reduce Queries

A query happens anytime in your theme when you use PHP. So for example this is a query:

1."Content-Type" content="; charset=" />

Which we can change to:

1."Content-Type" content="text/html; charset=UTF-8" />

All of a sudden we’ve removed two queries from the template. Pretty simple?

Wordpress Plugins

There’s a number of plugins that can improve performance. Once everything above has been completed this is where you’ll notice most of the performance gain.

WP Super Cache

Possibly one of the best plugins you’ll ever install. WP Super Cache creates a static HTML version of each page & loads that instead of querying the database every time. This increases the speed at which pages load (upwards of 45%) & reduces strain on the server.

PHP Speedy WP

This plugin takes care of one of the other issues we talked about earlier in the post & that’s removing the white spaces in CSS files & Javascript. This plugin however is not compatible with WP Super Cache currently.

Optimize DB

This plugin allows you to optimize the tables of your MYSQL database & reduce their overhead without actually going into PHPmyadmin.

12 tháng 6 2009

Chiều nay đi phỏng vấn

Chiều nay mình được hẹn đi phỏng vấn. Đây là lần thứ 2 mình phỏng vấn ở công ty XXX, lần thứ thì đã được offer rồi nhưng mình không qua. Lần này có lẽ mình sẽ qua đây :D

Một buổi sáng đầy nắng

Sáng nay đi tập thể dục trể hơn bình thường vì lý do làm biếng :D. Chụp vài tấm hình post lên.



SMS Twitter cho Việt Nam ( giai đoạn 2 )

Tối nay đã hoàn thành giai đoạn đăng ký thành viên, chỉnh sửa thông tin thành viên. Tuy nhiên vẫn còn 1 vấn đề đó là mã hóa password của Twitter.
Đây là 1 vấn đề khá quan trọng bởi vì người dùng không bao giờ muốn tiết lộ mật khẩu của mình cho người khác biết.

11 tháng 6 2009

Sáng nay đi tập thể dục


Sáng nay tập thể dục chụp được vài tấm hình. Upload chơi




























SMS Twitter cho Việt Nam

Hôm qua đã làm phần cơ bản nhất. Đã test với account twitter của mình, tất cả đều hoạt động tốt. Hôm nay sẽ làm đến phần đăng ký để mọi người vào sử dụng cho zui.

Yahoo 360plus như shit

1 dịch vụ với số lượng sử dụng đông như vậy mà là có những lỗi ngớ ngẩn quá chịu không nổi. Từ hôm nay tôi tuyên bố ko sử dụng Yahoo 360 plus.

10 tháng 6 2009

Tập thể dục buổi sáng





Sáng này là ngày thứ 2 mình đi tập thể dục. Thật là thỏa mái khi mỗi sáng không còn vướng bận việc tới công ty đúng giờ nữa. Mình cứ thư thả đi bộ và nghe nhạc, thật là thú vị phải ko nào.

Chán Yahoo Blog

Tính lên đăng bài trên Yahoo Blog ai ngờ nó chết queo. Ghét chuyển qua đây luôn.