<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[Nerd]]></title><description><![CDATA[All nerd stuffs]]></description><link>https://nerd.hellopeera.com/</link><generator>Ghost 0.7</generator><lastBuildDate>Sat, 12 Jan 2019 15:55:30 GMT</lastBuildDate><atom:link href="https://nerd.hellopeera.com/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[How to Setup a Private Git Server]]></title><description><![CDATA[<p>There are many to get a private repository. One of which is, of course, to get a paid plan with GitHub. With a minimum monthly pay, you will be able to create 5 private repositories. However, even you pay to get private repositories, they are private to people on the</p>]]></description><link>https://nerd.hellopeera.com/how-to-setup-a-private-git-server/</link><guid isPermaLink="false">c167a7e2-a141-485f-853d-0dc6b8e6e4f4</guid><category><![CDATA[git]]></category><category><![CDATA[centos]]></category><dc:creator><![CDATA[hlpr]]></dc:creator><pubDate>Sun, 14 Feb 2016 04:59:52 GMT</pubDate><content:encoded><![CDATA[<p>There are many to get a private repository. One of which is, of course, to get a paid plan with GitHub. With a minimum monthly pay, you will be able to create 5 private repositories. However, even you pay to get private repositories, they are private to people on the Internet but are not literally private to GitHub though. Another way that you can get a private repository is setting up your own Git server.</p>

<p>This post will show you how to set up a Git server with SSH key authentication on CentOS 7. For other Linux distributions, it should be done in a similar manner as well.</p>

<p>Please note that those commands in a block with green background should be performed in your laptop or local computer, while those in blue blocks should be run at your server.</p>

<h3>Create the SSH Key Pair</h3>

<p>For Mac and Linux users, you can generate a SSH key pair with '<a href="http://linux.die.net/man/1/ssh-keygen" target="_blank">ssh-keygen</a>' command. However, if you are using Windows, you might generate one with <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" target="_blank">PuTTYgen</a>. This part is supposed to be done in your laptop or local computer. If you already have your own SSH key pair, you may skip this part.</p>

<p>By default, it will generate a 2048-bit RSA key pair which is generally considered sufficiently secure for today. But if you need to have it more secure, you can specify the larger number of bits like 4096 with -b option.</p>

<pre style="background-color: rgba(93, 216, 79, 0.15);">$ ssh-keygen -b 4096 -C hellopeera@nowhere.com

Generating public/private rsa key pair.  
Enter file in which to save the key (/Users/hellopeera/.ssh/id_rsa):  
Enter passphrase (empty for no passphrase):  
Enter same passphrase again:  
Your identification has been saved in /Users/hellopeera/.ssh/id_rsa.  
Your public key has been saved in /Users/hellopeera/.ssh/id_rsa.pub.  
The key fingerprint is:  
ef:7b:f6:19:63:9d:bc:58:61:62:d0:53:08:c1:4c:23 hellopeera@nowhere.com  
The key's randomart image is:  
+--[ RSA 4096]----+
|         E+=o .. |
|          .oo..  |
|           . o   |
|            . .  |
|        S    o o |
|         .  . +.o|
|          .   ++.|
|         .  o.o+.|
|          o+ oo. |
+-----------------+
</pre>

<p>It is recommended specifying a passphrase to protect your private key against someone else from using it since this private key will be used as if it is a password to access your private git repositories. Your generated private key and public key will be saved in ~/.ssh/id_rsa and ~/.ssh/id_rsa.pub respectively. Here what your public key will look like.</p>

<pre style="word-break: break-word;">ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC+NMapykjDt1kzSQKul8bXikQJ6jSN0sII2vGuKdORnPu9MQPc4lQfIpZyTIg/IIShW09lGg0ZerAjStlfE2ALeUpo3SjTxNoV51c/bOOMWrCJbGy52XxasoLgnwTzLqKwKJRpJtQASQyvSySJVwR/cNtU0vdCMiBJwftV+6Qq7crNUaNVhAq/6RSbYYg9owfQyJKaW99YgHeQ24apl0kIUZlx5Hos11gfFjDKtJ0QtIFYjRw18YaNVPuHkI2LBuEKYTVvn5dNR6lhfMxwEY3kLrSD5dZRUOSzL2jhGpQCJGu8rAP8DluoUBAqFCkU9lj+AJ7mu3sbgfsEXynlHyNx0HmBaWyep2yj+I5qGSeLNFWV8eMclgwlGhiHQg+1aNijhZKnuTsJ569BA+HkFjNJwyy1jXa3VYyKFOsNRB9Km1bPlxLQ5jniWh2L8OardifUZFv4eC4vjl389Dnvq7nD8zWJrQt56UB23ZQ+HUd2GlYafPzhsR1m8ndv5fn7FvCGRAZOqpHyGN5FmPs2hHXCN0Bv19FYycUGDuMCSFi3AVVgDgW7YefmDLHbpsLCDdbeWcm0K8HnG0gi/U8zehlgwLru5fmQt143HYFNvwoWWgvEO6KbpByPptKymP3S6/3Npnri0WkGaTmZIwXhg+qvG2XJbB4uaehyTDsrUAJ5Rw<mark> hellopeera@nowhere.com</mark></pre>

<h3>Install Git</h3>

<p>This part should be performed at the server with root privileges which can be either root login or sudo.</p>

<p>For CentOS users, we install Git with 'yum'. For other Linux distributions, you may use a different package manger based on your Linux distributions. If you really have no idea about it, Git website also provides this: <a href="https://git-scm.com/download/linux" target="_blank">https://git-scm.com/download/linux</a></p>



<pre># yum install git</pre>

<h3>Create a user to handle Git</h3>

<p>Create a new user for handling Git repositories.</p>



<pre># useradd git</pre>

<p>Disallow login to this user by typing the password. This forces you to login with the SSH private key only.</p>



<pre># passwd -d git &amp;&amp; passwd -l git</pre>

<h3>Allow yourself to access your private Git server</h3>

<p>Switch root login to login as 'git' user</p>



<pre># su - git
$ whoami
git
</pre>

<p>Now you have logged in as 'git'. We need to create an authorized_keys file for git user. This file will contain a list of public keys that are authorized to login to the git user via SSH protocol. In other words, whoever has a private key that match one of these public keys listed in this file will be able to login to this private Git server as git user. Therefore, we need to create the authorized_keys file, if it doesn't exist, and put your 'public' key in this file.</p>

<p>Create the .ssh directory and the authorized_keys file inside as well as change their permission to more secure one.</p>

<pre>$ mkdir ~/.ssh &amp;&amp; chmod 700 ~/.ssh
$ touch ~/.ssh/authorized_keys &amp;&amp; chmod 600 ~/.ssh/authorized_keys
</pre>

<p>Open the authorized_keys file with any text editor and add your public key by copying the text inside id_rsa.pub and simply pasting it into the authorized_keys file. Then save the authorized_keys file and exit the text editor.</p>

<p>If you also want to allow other people to access this, you may ask those people to send you their public key. All you have to do is appending their public keys to the authorized_keys file. That's it.</p>

<pre>$ vi ~/.ssh/authorized_keys
</pre>

<p>Now your authorized_keys file will look like this. In this case, the first line of the file is my public key and the second is the other person's public key. So the git user will be accessible to me and the other person as well.</p>

<pre style="word-break: break-word;">$ cat ~/.ssh/authorized_keys

ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC+NMapykjDt1kzSQKul8bXikQJ6jSN0sII2vGuKdORnPu9MQPc4lQfIpZyTIg/IIShW09lGg0ZerAjStlfE2ALeUpo3SjTxNoV51c/bOOMWrCJbGy52XxasoLgnwTzLqKwKJRpJtQASQyvSySJVwR/cNtU0vdCMiBJwftV+6Qq7crNUaNVhAq/6RSbYYg9owfQyJKaW99YgHeQ24apl0kIUZlx5Hos11gfFjDKtJ0QtIFYjRw18YaNVPuHkI2LBuEKYTVvn5dNR6lhfMxwEY3kLrSD5dZRUOSzL2jhGpQCJGu8rAP8DluoUBAqFCkU9lj+AJ7mu3sbgfsEXynlHyNx0HmBaWyep2yj+I5qGSeLNFWV8eMclgwlGhiHQg+1aNijhZKnuTsJ569BA+HkFjNJwyy1jXa3VYyKFOsNRB9Km1bPlxLQ5jniWh2L8OardifUZFv4eC4vjl389Dnvq7nD8zWJrQt56UB23ZQ+HUd2GlYafPzhsR1m8ndv5fn7FvCGRAZOqpHyGN5FmPs2hHXCN0Bv19FYycUGDuMCSFi3AVVgDgW7YefmDLHbpsLCDdbeWcm0K8HnG0gi/U8zehlgwLru5fmQt143HYFNvwoWWgvEO6KbpByPptKymP3S6/3Npnri0WkGaTmZIwXhg+qvG2XJbB4uaehyTDsrUAJ5Rw hellopeera@nowhere.com  
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCZY0n3YwLujqShul3e2V3CQ8UUvFjtTJq76qngBlgsS2fGZfmnXP3IWZUROUp5JN3hYCuvx6hawrrqSXG5+oJV0xVfASUePCL4Evr0PhngzNUt4JrQls6sFXCgGtQv8FZ8SsL59J9UrL0VczOdi79e0GZc6I+0LryKRcjFJ7CXuZtB4EkKwCl7gVUJ9zNZbMey/ziKdD/tNivfHqMOvS9WwsJoghaXqCYBXBFYM0p6CgT5qBVkLcGRwfWKs9+v0ZFyYRry2By8P9Hzl9MexOg0dH2FK0gMr/9aKIPDFuAhHxElpIFLwq9ioGkCBOMgF+z2NH8Zf84Esbt9+2hY7T1j the.other.person@nowhere.com  
</pre>

<p>To test that this really works, you may try to SSH to the server as git user from your local computer. If you saved your private key at the default location (~/.ssh/id_rsa), you don't necessarily specify your private key explicitly in the command line. However, if your private key is stored in a different place, you can specify its location with -i option. Suppose the server's IP address is 192.168.1.10.</p>

<pre style="background-color: rgba(93, 216, 79, 0.15);">$ ssh git@192.168.1.10</pre>

<p>If you can login to the server as git user with no password asked, you are good to go!</p>

<h3>Create a Git repository</h3>

<p>So everything has been prepared for this moment. Let's create an empty Git repository in the server and name it 'project1'.</p>



<pre>$ cd ~
$ git init --bare project1.git
$ ls -l
drwxr-x--- 7 git git 111 Nov  8 08:31 project1.git
</pre>

<p>With this command, an empty folder named project1.git will be created and used as a bare Git repository - a repository that doesn't contain working files. It is important to have a bare repository at the server, otherwise it will not be able to accept a push.</p>

<pre>$ cd project1.git
$ ls -l
drwxr-x--- 2 git git    6 Nov  8 08:31 branches
-rw-r----- 1 git git   66 Nov  8 08:31 config
-rw-r----- 1 git git   73 Nov  8 08:31 description
-rw-r----- 1 git git   23 Nov  8 08:31 HEAD
drwxr-x--- 2 git git 4096 Nov  8 08:31 hooks
drwxr-x--- 2 git git   20 Nov  8 08:31 info
drwxr-x--- 7 git git   55 Nov  8 08:33 objects
drwxr-x--- 4 git git   29 Nov  8 08:31 refs
</pre>

<p>At this point, the Git repository has been created successfully. You may use a text editor to edit the repository description in the description file.</p>

<h3>Using the Git server from your local computer</h3>

<p><strong>If you don't have a local repository</strong> in your laptop. You can clone the remote repository into a new local directory.</p>

<pre style="background-color: rgba(93, 216, 79, 0.15);">$ git clone ssh://git@192.168.1.10/~/project1.git  
Cloning into 'project1'...  
warning: You appear to have cloned an empty repository.  
Checking connectivity... done.  
$ ls -l
drwxr-xr-x  3 hellopeera  staff  102 Nov  8 22:16 project1  
</pre>

<p>A new local repository directory will be created within the current directory since no directory is explicitly given in the command line. If you wish to have it in a different local directory, you can specify it at as the command argument. Note that cloning into an existing directory is only allowed if the directory is empty.</p>

<p>For example, to clone the remote repository into the current directory, as opposed to creating a new directory within the current directory like what we did above, you can specify the current directory in the command line.</p>

<pre style="background-color: rgba(93, 216, 79, 0.15);">$ mkdir project1  
$ cd project1
$ git clone ssh://git@192.168.1.10/~/project1.git .
</pre>

<p>However, <strong>if you already have an existing local repository</strong> which is ready to be pushed to the server, you can set the Git server to be its origin and then push all the files to the server.</p>

<pre style="background-color: rgba(93, 216, 79, 0.15);">$ cd existing_project1  
$ git remote add origin ssh://git@192.168.1.10/~/project1.git
$ git push --set-upstream origin master
</pre>

<p>This is it. Now your local and remote repository are working together perfectly.</p>

<h3>GUI Client</h3>

<p>Soon after you added the Git server as the remote origin of your local repository, you can also use GitHub Desktop such as GitHub for Mac to commit and sync your local repository with the private remote one. Get it free from <a href="https://desktop.github.com/" target="_blank">https://desktop.github.com/</a></p>

<p><img class="alignnone size-full wp-image-2252" src="https://nerd.hellopeera.com/static/gui-client.png" alt="GitHub Desktop" width="900" height="392"></p>

<style>  
pre {  
  background: rgba(86,142,193,0.15);
  font-family: Consolas,Monaco,"Courier 10 Pitch",Courier,monospace;
  overflow: auto;
  line-height: 1.5;
}
</style>]]></content:encoded></item><item><title><![CDATA[My Timeline of 2015]]></title><description><![CDATA[<h2 id="january">January</h2>

<h4 id="cryingsohard">Crying so hard</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">เข้าร้านอาหารญี่ปุ่น <a href="https://twitter.com/hashtag/%E0%B8%A3%E0%B9%89%E0%B8%AD%E0%B8%87%E0%B9%84%E0%B8%AE%E0%B9%88%E0%B8%AB%E0%B8%99%E0%B8%B1%E0%B8%81%E0%B8%A1%E0%B8%B2%E0%B8%81?src=hash">#ร้องไฮ่หนักมาก</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/559927503398375426">January 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">Excuse me ป้าแกไม่หัน .. พอสุมิมะเซง ป้าแก <a href="https://twitter.com/hashtag/%E0%B8%A3%E0%B9%89%E0%B8%AD%E0%B8%87%E0%B9%84%E0%B8%AE%E0%B9%88%E0%B8%AB%E0%B8%99%E0%B8%B1%E0%B8%81%E0%B8%A1%E0%B8%B2%E0%B8%81?src=hash">#ร้องไฮ่หนักมาก</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/559930537960562688">January 27, 2015</a></blockquote> 

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">วันก่อนนั่งกินเบียร์กับเพื่อน ... พนั</p></blockquote>]]></description><link>https://nerd.hellopeera.com/my-timeline-of-2015/</link><guid isPermaLink="false">273566ba-f7a0-463c-997f-e7c2a8a48b53</guid><dc:creator><![CDATA[hlpr]]></dc:creator><pubDate>Thu, 31 Dec 2015 14:50:29 GMT</pubDate><content:encoded><![CDATA[<h2 id="january">January</h2>

<h4 id="cryingsohard">Crying so hard</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">เข้าร้านอาหารญี่ปุ่น <a href="https://twitter.com/hashtag/%E0%B8%A3%E0%B9%89%E0%B8%AD%E0%B8%87%E0%B9%84%E0%B8%AE%E0%B9%88%E0%B8%AB%E0%B8%99%E0%B8%B1%E0%B8%81%E0%B8%A1%E0%B8%B2%E0%B8%81?src=hash">#ร้องไฮ่หนักมาก</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/559927503398375426">January 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">Excuse me ป้าแกไม่หัน .. พอสุมิมะเซง ป้าแก <a href="https://twitter.com/hashtag/%E0%B8%A3%E0%B9%89%E0%B8%AD%E0%B8%87%E0%B9%84%E0%B8%AE%E0%B9%88%E0%B8%AB%E0%B8%99%E0%B8%B1%E0%B8%81%E0%B8%A1%E0%B8%B2%E0%B8%81?src=hash">#ร้องไฮ่หนักมาก</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/559930537960562688">January 27, 2015</a></blockquote> 

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">วันก่อนนั่งกินเบียร์กับเพื่อน ... พนักงานถามกินเบียร์ไร ... <a href="https://twitter.com/hashtag/%E0%B8%A3%E0%B9%89%E0%B8%AD%E0%B8%87%E0%B9%84%E0%B8%AE%E0%B9%88%E0%B8%AB%E0%B8%99%E0%B8%B1%E0%B8%81%E0%B8%A1%E0%B8%B2%E0%B8%81?src=hash">#ร้องไฮ่หนักมาก</a></p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/559930337073971203">January 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/peach_pc">@peach_pc</a> ไฮ่เน๊เก่น</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/559930948020477952">January 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> <a href="https://twitter.com/L_Capulet">@L_Capulet</a> <a href="https://twitter.com/peach_pc">@peach_pc</a> แต่บางทีก็ <a href="https://twitter.com/hashtag/%E0%B8%A3%E0%B9%89%E0%B8%AD%E0%B8%87%E0%B9%82%E0%B8%AE%E0%B9%80%E0%B8%A5%E0%B8%A2%E0%B8%99%E0%B8%B0?src=hash">#ร้องโฮเลยนะ</a></p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/559931907924697088">January 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iKaew">@iKaew</a> <a href="https://twitter.com/L_Capulet">@L_Capulet</a> <a href="https://twitter.com/peach_pc">@peach_pc</a> โฮกาเด้น</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/559931992452526081">January 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">เดินเข้าไดโซะ แคชเชียร์ก็ <a href="https://twitter.com/hashtag/%E0%B8%A3%E0%B9%89%E0%B8%AD%E0%B8%87%E0%B9%84%E0%B8%AE%E0%B9%88%E0%B8%AB%E0%B8%99%E0%B8%B1%E0%B8%81%E0%B8%A1%E0%B8%B2%E0%B8%81?src=hash">#ร้องไฮ่หนักมาก</a> นะ</p>&mdash; ⛄️◖|(´•͈ ̫ •͈`)|◗⛄️ (@L_Capulet) <a href="https://twitter.com/L_Capulet/status/559927804725178369">January 27, 2015</a></blockquote>

<h4 id="snowmageddoninnyc">Snowmageddon in NYC</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">“<a href="https://twitter.com/tweetbrk">@tweetbrk</a>: PHOTO: NYC&#39;s Times Square less than 10 minutes before 11pm vehicle ban <a href="https://twitter.com/AnthonyQuintano">@AnthonyQuintano</a> <a href="https://twitter.com/hashtag/blizzardof2015?src=hash">#blizzardof2015</a> <a href="http://t.co/zp0CD934B0">pic.twitter.com/zp0CD934B0</a>””</p>&mdash; Carly (@Heres_carly) <a href="https://twitter.com/Heres_carly/status/559968822153576449">January 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">In pics: <a href="https://twitter.com/hashtag/NewYorkBlizzard?src=hash">#NewYorkBlizzard</a> - <a href="https://twitter.com/hashtag/WinterStormJuno?src=hash">#WinterStormJuno</a> hits US East Coast <a href="https://twitter.com/hashtag/Snowmageddon2015?src=hash">#Snowmageddon2015</a> (AFP/Getty) <a href="http://t.co/K7R56YwJmi">http://t.co/K7R56YwJmi</a> <a href="http://t.co/Ihxp7SqbSY">pic.twitter.com/Ihxp7SqbSY</a></p>&mdash; Telegraph Pictures (@TelegraphPics) <a href="https://twitter.com/TelegraphPics/status/560016200068268032">January 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Here are the 40 most eye-catching moments from the <a href="https://twitter.com/hashtag/blizzardof2015?src=hash">#blizzardof2015</a> &#10;<a href="http://t.co/UV6BcihWnF">http://t.co/UV6BcihWnF</a> <a href="http://t.co/RV325boPTU">pic.twitter.com/RV325boPTU</a></p>&mdash; BuzzFeed (@BuzzFeed) <a href="https://twitter.com/BuzzFeed/status/560183309498843137">January 27, 2015</a></blockquote>

<h4 id="facebookwentdownandtheworldwentcrazy">Facebook went down and the world went crazy.</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="und" dir="ltr"><a href="https://twitter.com/hashtag/pray4facebook?src=hash">#pray4facebook</a></p>&mdash; BuzzFeed (@BuzzFeed) <a href="https://twitter.com/BuzzFeed/status/559965616501956608">January 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Instagram and Facebook are down because they can&#39;t handle your duck face anymore. <a href="https://twitter.com/hashtag/InstagramDown?src=hash">#InstagramDown</a> <a href="https://twitter.com/hashtag/FacebookDown?src=hash">#FacebookDown</a></p>&mdash; 9GAG (@9GAG) <a href="https://twitter.com/9GAG/status/559962258520817665">January 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">BREAKING: After roughly 40-minute outage, Facebook again accessible in U.S., Asia, other regions.</p>&mdash; The Associated Press (@AP) <a href="https://twitter.com/AP/status/559973215951667200">January 27, 2015</a></blockquote>

<h4 id="taylorswiftstwitteraccountgothacked">Taylor Swift's twitter account got hacked</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Cause the hackers gonna hack, hack, hack, hack, hack...</p>&mdash; Taylor Swift (@taylorswift13) <a href="https://twitter.com/taylorswift13/status/560151939296817152">January 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="und" dir="ltr">Twitter &amp; Instagram ของ TS โดนสอยร่วงแล้ว <a href="http://t.co/pc65ElBLvu">http://t.co/pc65ElBLvu</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/560303750955278336">January 28, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">มันคือข้อดีของการมี verified account ใช่ไหม โดนสอยไปก็เอากลับคืนมาได้</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/560306864663965696">January 28, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="und" dir="ltr"><a href="https://twitter.com/iKaew">@ikaew</a> authenticate ด้วยการส่ง clip ที่เต้นตามท่าทางที่ twitter inc บอก</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/560307270857150464">January 28, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">เราก็รออ่าน คิดว่าจะได้สาระบ้าง ถถถถถ</p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/560309171967361024">January 28, 2015</a></blockquote>

<h2 id="february">February</h2>

<h4 id="katyperrysleftshark">Katy Perry's left shark</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">สำหรับใครที่ยังไม่ได้ดูโชว์พักครึ่งซูเปอร์โบวล์ของ Katy Perry ตามไปดูได้ที่นี่แบบชัดๆ ► <a href="http://t.co/FSeIQaeIEr">http://t.co/FSeIQaeIEr</a> <a href="http://t.co/NLXZBRnCLn">pic.twitter.com/NLXZBRnCLn</a></p>&mdash; JokeJaith (@Joke_Jaith) <a href="https://twitter.com/Joke_Jaith/status/562146675779579904">February 2, 2015</a></blockquote>

<h4 id="valentinesday">Valentine's Day</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">A random building in LA. <a href="https://twitter.com/hashtag/HappyValentinesDay?src=hash">#HappyValentinesDay</a> <a href="http://t.co/VcfuD75QhN">pic.twitter.com/VcfuD75QhN</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/566432502143664130">February 14, 2015</a></blockquote>

<h4 id="bestofgossiper">Best of gossiper</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">ขอมอบรางวัลให้พจด ขอให้รักษาความดีงามนี้ต่อไป <a href="https://twitter.com/L_Capulet">@L_Capulet</a> <a href="https://twitter.com/iKaew">@iKaew</a> <a href="https://twitter.com/peach_pc">@peach_pc</a> <a href="http://t.co/4ad1EzMAqp">pic.twitter.com/4ad1EzMAqp</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/562426640416776193">February 3, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> <a href="https://twitter.com/iKaew">@iKaew</a> <a href="https://twitter.com/peach_pc">@peach_pc</a> ส๊าาาดดดดดดดดด</p>&mdash; ⛄️◖|(´•͈ ̫ •͈`)|◗⛄️ (@L_Capulet) <a href="https://twitter.com/L_Capulet/status/562427142911172608">February 3, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="und" dir="ltr"><a href="https://twitter.com/L_Capulet">@L_Capulet</a> <a href="https://twitter.com/hellopeera">@hellopeera</a> <a href="https://twitter.com/peach_pc">@peach_pc</a> 5555+</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/562428656924884993">February 3, 2015</a></blockquote>

<h4 id="typosgonewild">Typo's gone wild</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">เป็นกำลังใขให้เสมอครับ <a href="https://twitter.com/hashtag/%E0%B8%97%E0%B8%B5%E0%B8%A1%E0%B8%99%E0%B9%89%E0%B8%AD%E0%B8%87%E0%B9%82%E0%B8%94%E0%B8%A1?src=hash">#ทีมน้องโดม</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/562757135030050819">February 3, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">บางทีก็นึกนะ ว่าน้องบอยจะพิมพ์ว่า กำลังใจ กำลังไข่ กำไข่ กำทำไม ... คิดแล้วก็สับสน</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/562932704472481792">February 4, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iKaew">@iKaew</a> ไข่จะได้อุ่นๆ</p>&mdash; ⓚⓞⓨ (╹◡╹)~☆ (@tokoykoy) <a href="https://twitter.com/tokoykoy/status/562933091543842817">February 4, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/tokoykoy">@tokoykoy</a> กะแล้วแหล่ะ ว่าสมก้อยต้องเลือกช๊อยซ์เน้ ...</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/562933180282703872">February 4, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="und" dir="ltr"><a href="https://twitter.com/iKaew">@iKaew</a> 55555</p>&mdash; ⓚⓞⓨ (╹◡╹)~☆ (@tokoykoy) <a href="https://twitter.com/tokoykoy/status/562933346863685634">February 4, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/tokoykoy">@tokoykoy</a> <a href="https://twitter.com/iKaew">@iKaew</a> อารายกานนนนไอ้พวกหื่น</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/562933731145842688">February 4, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> <a href="https://twitter.com/iKaew">@iKaew</a> นุ้งบอยแหล่ะ ออกสื่อ</p>&mdash; ⓚⓞⓨ (╹◡╹)~☆ (@tokoykoy) <a href="https://twitter.com/tokoykoy/status/562936622275375104">February 4, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/tokoykoy">@tokoykoy</a> <a href="https://twitter.com/hellopeera">@hellopeera</a> ใช่ๆ .. บอยแหล่ะ ตัวเริมเลย</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/562936719943933954">February 4, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iKaew">@iKaew</a> <a href="https://twitter.com/tokoykoy">@tokoykoy</a> ว้อท!!!</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/562937184597344256">February 4, 2015</a></blockquote>

<h4 id="japaneseboiledeggs">Japanese Boiled Eggs</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">แยกไม่ออกระหว่างไข่ออนเซ็น กับไข่ลวกเลยจริงๆ</p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/565379765298032641">February 11, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/idomez">@idomez</a> ไข่ออนเซ็น เวลาเราจะทานให้นึกถึงผู้ชายญี่ปุ่นไปบ่อน้ำร้อนครับ</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/565402601194553344">February 11, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> แสดงว่ามีไข่สองแบบ อันนึงคือไข่ออนเซ็น อันนึงคือไข่อันเซ็นสินะ</p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/565403121669902336">February 11, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/idomez">@idomez</a> หัวไวมากครับ</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/565403231422283776">February 11, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> นี่ต้องหายาชามาทาดูล่ะ</p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/565405102102831107">February 11, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="und" dir="ltr"><a href="https://twitter.com/idomez">@idomez</a> ~_~</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/565405171598258176">February 11, 2015</a></blockquote>

<h2 id="march">March</h2>

<h4 id="30s">30s</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iKaew">@iKaew</a> ขอให้มีความสุขกับเลขสามครับ555 <a href="https://twitter.com/hashtag/%E0%B8%95%E0%B8%B2%E0%B8%A1%E0%B9%84%E0%B8%9B%E0%B8%95%E0%B8%B4%E0%B8%94%E0%B9%86?src=hash">#ตามไปติดๆ</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/578768736330493952">March 20, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> ขอบคุณคร๊าบแซ๊ดดดด ... <a href="https://twitter.com/hashtag/%E0%B8%95%E0%B8%B2%E0%B8%A1%E0%B8%A1%E0%B8%B2%E0%B9%80%E0%B8%A3%E0%B9%87%E0%B8%A7%E0%B9%86?src=hash">#ตามมาเร็วๆ</a></p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/578768896473182208">March 20, 2015</a></blockquote>

<h4 id="scammergottrolled">Scammer got Trolled</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">No One Has Trolled A Scammer As Brilliantly As This Guy Just Did <a href="http://t.co/ud1dQ8wOZE">http://t.co/ud1dQ8wOZE</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/582603998982578177">March 30, 2015</a></blockquote>

<h2 id="april">April</h2>

<h4 id="goodkood">Good Kood</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">บล็อคที่ดองไว้ เกาะกูด | Good Kood <a href="http://t.co/I10vZoDOzc">http://t.co/I10vZoDOzc</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/583499449227325440">April 2, 2015</a></blockquote>

<h4 id="puns">Puns</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">จะว่าไป .. คราวหน้า .. กับ คราวหลัง .. นี่มันใช้ต่างกันยังไง</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/583852363225538560">April 3, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iKaew">@iKaew</a> คาวหน้า คือมันพุ่งไปโดนหน้า ส่วนคาวหลังก็พุ่งไปโดนหลัง ใช่แบบนี้ป่ะ</p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/583853570077798401">April 3, 2015</a></blockquote>

<h4 id="kalesmoothies">Kale smoothies ...</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Starbucks Kale Smoothies: Real or Prank? <a href="http://t.co/hCteCPbFaU">http://t.co/hCteCPbFaU</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/583958501094850562">April 3, 2015</a></blockquote>

<h4 id="thatswhatfriendsarefor">That's what friends are for</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">ผมยังไม่ได้จีบหน่า ไม่เหมือนพวกแกล้งอยากกินข้าวด้วยแล้วมาจีบน้องสาวหรอก จีบกันปุ้บทิ้งกรูปั้บ กินข้าวคนเดียวจร้าจากนั้น</p>&mdash; Red Man (@iSarody) <a href="https://twitter.com/iSarody/status/586156071196037122">April 9, 2015</a></blockquote>

<h4 id="laquake">LA quake</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Just felt an earthquake here in downtown Los Angeles. Did you feel it from where you are?</p>&mdash; Los Angeles Times (@latimes) <a href="https://twitter.com/latimes/status/587469868305424384">April 13, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="en" dir="ltr"><a href="https://twitter.com/latimes">@latimes</a> yes around the USC</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/587472156688166912">April 13, 2015</a></blockquote>  

<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

<h4 id="categorization">Categorization</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">วันหยุดทั้งทีรู้สึกดีที่ได้ใช้เวลาว่างให้เป็นประโยชน์ เช่น จัดหนังโป๊ใส่ปกแยกหมวดหมู่ให้เรียบร้อย <a href="https://twitter.com/hashtag/%E0%B8%9C%E0%B8%B4%E0%B8%94?src=hash">#ผิด</a></p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/587470843019526145">April 13, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/idomez">@idomez</a> แยกตามอะไรอะ</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/587477985898311680">April 13, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> น้องบอยเก็บแบบไหนครับ</p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/587479270840086528">April 13, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/idomez">@idomez</a> ถ้ามีผู้หญิงก็ลบ มีแต่ผู้ชายค่อยเก็บ</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/587482713638051841">April 13, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> อ่าาา อยากกลับมาเที่ยวสีลมมั้ย เดี๋ยวพี่ไปแล้วอัดคลิปเผื่อนะ</p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/587482867170615297">April 13, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="und" dir="ltr"><a href="https://twitter.com/idomez">@idomez</a> 555</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/587482928294166528">April 13, 2015</a></blockquote>

<h4 id="napalearthquake">Napal Earthquake</h4>

<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr"><a href="https://twitter.com/hashtag/NepalEarthquake?src=hash">#NepalEarthquake</a> victims being cremated at Pashupati Aryaghat. The death toll until Sunday evening has climbed 2,500. <a href="http://t.co/iW06AIgWUa">pic.twitter.com/iW06AIgWUa</a></p>&mdash; The Kathmandu Post (@kathmandupost) <a href="https://twitter.com/kathmandupost/status/592421653881098240">April 26, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Man pulled alive from rubble Thursday, 5 days after massive Nepal earthquake, in which more than 5,500 people died.</p>&mdash; CNN Breaking News (@cnnbrk) <a href="https://twitter.com/cnnbrk/status/593670919576539137">April 30, 2015</a></blockquote>

<h4 id="responsivedesign">Responsive design</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">เว็บตลาดหลักทรัพย์ฯเป็น responsive design แล้ว</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/592582013393055744">April 27, 2015</a></blockquote>

<h4 id="laquakeagain">LA Quake again</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Magnitude 3.7 earthquake near Carson, California: <a href="http://t.co/2bgIjtwN61">http://t.co/2bgIjtwN61</a></p>&mdash; Los Angeles Times (@latimes) <a href="https://twitter.com/latimes/status/593778204407640064">April 30, 2015</a></blockquote>

<h2 id="may">May</h2>

<h4 id="whaleyouloveme">Whale you love me?</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">โอ้ย เรื่องนี้หัวเราะหนักมาก <a href="http://t.co/ccC8iurhvx">http://t.co/ccC8iurhvx</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/594388496653029378">May 2, 2015</a></blockquote>

<h4 id="laquakeagain">LA Quake again</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">แผ่นดินไหวอีกละ</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/594821807711989760">May 3, 2015</a></blockquote>

<h4 id="nepalquakeagain">Nepal quake again</h4>

<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr">A magnitude 7.4 earthquake struck Nepal, the <a href="https://twitter.com/USGS">@USGS</a> said. <a href="http://t.co/e2JlHKtbSj">http://t.co/e2JlHKtbSj</a></p>&mdash; CNN Breaking News (@cnnbrk) <a href="https://twitter.com/cnnbrk/status/598030215512772609">May 12, 2015</a></blockquote>

<h4 id="whereamiactually">Where am I actually?</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">และแล้ววันนี้ก็เพิ่งรู้ว่าเราอยู่ผิดเมืองมาโดยตลอด ...</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/600805687787008000">May 19, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">เดินๆอยู่ริมถนนมีคนตะโกนถามมาจากด้านหลังเลยหันไปคุยด้วย เค้าถามว่ารู้ไหมว่า Los Angeles อยู่ไหน .. เราเลยชี้ไปที่พื้นแล้วบอกว่านี่ไง</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/600805962195210240">May 19, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">เค้าตอบกลับมาว่า แกต้องล้อชั้นเล่นแน่ๆ... /me กุล้ออะไรเมิงงงงง</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/600806133477969920">May 19, 2015</a></blockquote>

<h4 id="sandiego">San Diego</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="und" dir="ltr">[Blog] ไปเที่ยว San Diego มาแหละ <a href="http://t.co/iSlcawX4mN">http://t.co/iSlcawX4mN</a> <a href="http://t.co/O1jVhIucY2">pic.twitter.com/O1jVhIucY2</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/600899915812737025">May 20, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> อยากไปเมืองนั้น</p>&mdash; Oat (@oating) <a href="https://twitter.com/oating/status/601058567806787585">May 20, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">อ่านบล็อก <a href="https://twitter.com/hellopeera">@hellopeera</a> ตอน San Diego <a href="http://t.co/oe0LDKqFFY">http://t.co/oe0LDKqFFY</a>&#10;รู้เลยว่าน้องมันใช้ชีวิตนักเรียนทุนได้คุ้มค่ามาก <a href="https://twitter.com/hashtag/%E0%B9%84%E0%B8%9B%E0%B8%96%E0%B8%B6%E0%B8%87%E0%B8%97%E0%B8%B8%E0%B8%81%E0%B9%80%E0%B8%A1%E0%B8%B7%E0%B8%AD%E0%B8%87?src=hash">#ไปถึงทุกเมือง</a></p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/601053200532115457">May 20, 2015</a></blockquote>

<h2 id="june">June</h2>

<h4 id="hbd">HBD</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="und" dir="ltr">Thx! ฮิ 😂 <a href="https://twitter.com/peach_pc">@peach_pc</a> <a href="https://twitter.com/iKaew">@iKaew</a> <a href="https://twitter.com/hellopeera">@hellopeera</a> <a href="http://t.co/FjtiQydlTI">pic.twitter.com/FjtiQydlTI</a></p>&mdash; ⛄️◖|(´•͈ ̫ •͈`)|◗⛄️ (@L_Capulet) <a href="https://twitter.com/L_Capulet/status/605894330222444545">June 3, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/L_Capulet">@L_Capulet</a> <a href="https://twitter.com/iKaew">@iKaew</a> <a href="https://twitter.com/peach_pc">@peach_pc</a> ตัวอัลไล</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/605910334142947328">June 3, 2015</a></blockquote>

<h4 id="mersinsouthkorea">MERS in South Korea</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Latest update on MERS in South Korea: 2 deaths, 35 cases and up to 1,369 in quarantine. <a href="http://t.co/uTBEoTKS5H">http://t.co/uTBEoTKS5H</a></p>&mdash; CNN Breaking News (@cnnbrk) <a href="https://twitter.com/cnnbrk/status/606281909677772800">June 4, 2015</a></blockquote>

<h4 id="laquakeagain">LA Quake again</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">แผ่นดินไหว</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/607410765943824384">June 7, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">JUST IN: Preliminary 3.4-magnitude earthquake strikes Gardena area, US Geological Survey says. <a href="http://t.co/mAwBhGjq8Z">http://t.co/mAwBhGjq8Z</a></p>&mdash; NBC Los Angeles (@NBCLA) <a href="https://twitter.com/NBCLA/status/607411480254889984">June 7, 2015</a></blockquote>

<h4 id="yosemitenationalpark">Yosemite National Park</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="und" dir="ltr">บน glacier point เห็นดาวเยอะมากๆ</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/609257459434164224">June 12, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="und" dir="ltr">นี่มันเหมือนใน wallpaper ของ Mac OS X <a href="http://t.co/SS29NdKvRV">pic.twitter.com/SS29NdKvRV</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/609560456571650048">June 13, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">พระอาทิตย์จะตกแล้ว แสงสีคล้ายๆกัน <a href="http://t.co/IuhGOmwvV9">pic.twitter.com/IuhGOmwvV9</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/609563694675038209">June 13, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="und" dir="ltr">ถึงเวลาของ OS X El Capitan <a href="http://t.co/pEIxjP4bNK">pic.twitter.com/pEIxjP4bNK</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/609703592035876864">June 13, 2015</a></blockquote>

<h4 id="blackjacking">Blackjacking</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">เข้าบ่อนได้กำไรมา 85% ในเวลาสองชั่วโมง</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/611412115006423040">June 18, 2015</a></blockquote>

<h4 id="adobedehaze">Adobe Dehaze</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Here&#39;s what Adobe Dehaze can do for photos taken in a blizzard: <a href="http://t.co/cDQYcsKX2d">http://t.co/cDQYcsKX2d</a> <a href="http://t.co/WAZRYZ62nd">pic.twitter.com/WAZRYZ62nd</a></p>&mdash; PetaPixel (@petapixel) <a href="https://twitter.com/petapixel/status/615935022357348352">June 30, 2015</a></blockquote>

<h2 id="july">July</h2>

<h4 id="nysehalt">NYSE halt</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">New York Stock Exchange says halt in trading at 11:32 a.m. -- 2nd time this morning -- was due to technical issue. <a href="http://t.co/bL1G2mMhOs">http://t.co/bL1G2mMhOs</a></p>&mdash; CNN Breaking News (@cnnbrk) <a href="https://twitter.com/cnnbrk/status/618810913915805696">July 8, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr">Wall Street Journal website stopped working around same time <a href="https://twitter.com/hashtag/NYSE?src=hash">#NYSE</a> suspended trading. Details: <a href="http://t.co/PcbOPUGOCC">http://t.co/PcbOPUGOCC</a></p>&mdash; CNN Breaking News (@cnnbrk) <a href="https://twitter.com/cnnbrk/status/618816512044892160">July 8, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr">Update: <a href="https://twitter.com/hashtag/NYSE?src=hash">#NYSE</a> has been down for 2 hours due to &quot;technical issue.&quot; Stocks trading on other exchanges. Dow down 180. <a href="http://t.co/PcbOPUpdL4">http://t.co/PcbOPUpdL4</a></p>&mdash; CNN Breaking News (@cnnbrk) <a href="https://twitter.com/cnnbrk/status/618837775647940608">July 8, 2015</a></blockquote>

<h4 id="whathedidtohisex">What he did to his ex</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">แฟนเก่าเคยบอกว่าหึหึ คือสุดท้ายก็จบลงที่เตียงตลอด</p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/619169144538165248">July 9, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/idomez">@idomez</a> หึหึ</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/619169681643941889">July 9, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> <a href="https://twitter.com/idomez">@idomez</a> ... สองคนนี้จะไปจบกันแล้วสินะ</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/619169854482845696">July 9, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iKaew">@iKaew</a> <a href="https://twitter.com/idomez">@idomez</a> หึหึ</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/619169990739038208">July 9, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> <a href="https://twitter.com/iKaew">@iKaew</a> <a href="https://twitter.com/idomez">@idomez</a> หึหึคืออะไร</p>&mdash; Red Man (@iSarody) <a href="https://twitter.com/iSarody/status/619170182120894464">July 9, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iSarody">@iSarody</a> <a href="https://twitter.com/iKaew">@iKaew</a> <a href="https://twitter.com/idomez">@idomez</a> แฟนเก่าเคยบอกว่า…</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/619170329462616064">July 9, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> <a href="https://twitter.com/iKaew">@iKaew</a> <a href="https://twitter.com/idomez">@idomez</a> ...สุดท้ายก็จบลงที่....</p>&mdash; Red Man (@iSarody) <a href="https://twitter.com/iSarody/status/619170506076372992">July 9, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iSarody">@iSarody</a> <a href="https://twitter.com/iKaew">@iKaew</a> <a href="https://twitter.com/idomez">@idomez</a> เครื่องเคียงตลอด</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/619170611047206912">July 9, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> <a href="https://twitter.com/iSarody">@iSarody</a> <a href="https://twitter.com/idomez">@idomez</a> ข้างเตียงตลอดดด</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/619174150687436800">July 9, 2015</a></blockquote>

<h4 id="thatnightwehadsomuchhaodong">That night we had so much Haodong</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">เวลาอยู่ในวงเหล้าไม่ควรปล่อยให้เพื่อนเอามือถือไปเล่น...&#10;เมื่อวานโดนเอาไปทวิต โพสเฟส แถมส่งข้อความไปหาเด็กเก่าด้วย T^T&#10;<a href="https://twitter.com/hashtag/%E0%B9%80%E0%B8%9E%E0%B8%B7%E0%B9%88%E0%B8%AD%E0%B8%99%E0%B9%80%E0%B8%A5%E0%B8%A7?src=hash">#เพื่อนเลว</a></p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/619356421562331136">July 10, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/idomez">@idomez</a> ไม่ทันแล้ว</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/619373501531582464">July 10, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> <a href="https://twitter.com/idomez">@idomez</a> แต่ว่า.. ทำไมพี่ถึงยังมี connection กะแฟนเก่าอยู่อ่ะ? <a href="https://twitter.com/hashtag/%E0%B9%84%E0%B8%94%E0%B9%89%E0%B9%81%E0%B8%95%E0%B9%88%E0%B8%84%E0%B8%B4%E0%B8%94%E0%B9%81%E0%B8%A5%E0%B9%89%E0%B8%A7%E0%B8%81%E0%B9%87%E0%B8%AA%E0%B8%87%E0%B8%AA%E0%B8%B1%E0%B8%A2?src=hash">#ได้แต่คิดแล้วก็สงสัย</a></p>&mdash; Stand Alone (@AwayA2u) <a href="https://twitter.com/AwayA2u/status/619375722168123392">July 10, 2015</a></blockquote>

<h4 id="pluto3">Pluto &lt;3</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Pluto sent a love note back to Earth via <a href="https://twitter.com/NASANewHorizons">@NASANewHorizons</a>. This is the last image taken before today&#39;s <a href="https://twitter.com/hashtag/PlutoFlyby?src=hash">#PlutoFlyby</a>. <a href="http://t.co/a2AE20LHcR">pic.twitter.com/a2AE20LHcR</a></p>&mdash; NASA (@NASA) <a href="https://twitter.com/NASA/status/620936275336368128">July 14, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Watch: NASA reveals new images from Pluto flyby. <a href="http://t.co/4Maef2ifnj">http://t.co/4Maef2ifnj</a>. <a href="http://t.co/TQFyxihW8X">pic.twitter.com/TQFyxihW8X</a></p>&mdash; CNN Breaking News (@cnnbrk) <a href="https://twitter.com/cnnbrk/status/621398661126336512">July 15, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">9.5 years, 3 billion miles and $700 million later, we have a clear view of Pluto <a href="http://t.co/mljgNxR8o4">http://t.co/mljgNxR8o4</a> <a href="http://t.co/gNpid77zrN">pic.twitter.com/gNpid77zrN</a></p>&mdash; Los Angeles Times (@latimes) <a href="https://twitter.com/latimes/status/621576331566940161">July 16, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Pluto loves you. <a href="https://twitter.com/hashtag/illustration?src=hash">#illustration</a> <a href="https://twitter.com/hashtag/pluto?src=hash">#pluto</a> <a href="https://twitter.com/hashtag/plutoflyby?src=hash">#plutoflyby</a> <a href="http://t.co/GYxygEWPXj">pic.twitter.com/GYxygEWPXj</a></p>&mdash; Freakin&#39; Monsters (@freakinmonsters) <a href="https://twitter.com/freakinmonsters/status/622563935284137984">July 19, 2015</a></blockquote>

<h4 id="typhoonhitjapanwhilemysowasthere">Typhoon hit Japan while my SO was there</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Typhoon <a href="https://twitter.com/hashtag/Nangka?src=hash">#Nangka</a> in the W Pacific eyeing <a href="https://twitter.com/hashtag/Kochi?src=hash">#Kochi</a>, <a href="https://twitter.com/hashtag/Japan?src=hash">#Japan</a>. Strong winds, high seas, &amp; devastating flooding possible. <a href="http://t.co/45cGd3CJmt">pic.twitter.com/45cGd3CJmt</a></p>&mdash; CNN Weather Center (@CNNweather) <a href="https://twitter.com/CNNweather/status/621391066231668736">July 15, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">S Japan braces for the arrival of <a href="https://twitter.com/hashtag/Typhoon?src=hash">#Typhoon</a> <a href="https://twitter.com/hashtag/Nangka?src=hash">#Nangka</a> on Fri, which poses significant danger to lives &amp; property. Jo <a href="http://t.co/EpvFhj1mcl">pic.twitter.com/EpvFhj1mcl</a></p>&mdash; BBC Weather (@bbcweather) <a href="https://twitter.com/bbcweather/status/621332767389949952">July 15, 2015</a></blockquote>

<h4 id="thatsongeveryoneknows">That song everyone knows</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">บ่อยครั้งที่ใจเดินออกไปไม่มองข้างทาง</p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/622803426586406913">July 19, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/idomez">@idomez</a> โดนมอไซเฉี่ยว</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/622976295551438848">July 20, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> <a href="https://twitter.com/idomez">@idomez</a> กลางซอยเปลี่ยว</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/622976665803603969">July 20, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iKaew">@iKaew</a> <a href="https://twitter.com/idomez">@idomez</a> ระหว่างทางกลับมาจากไปเที่ยว</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/622976866916282368">July 20, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> <a href="https://twitter.com/idomez">@idomez</a> พร้อมด้วยสาวเปรี้ยว</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/622978229448474624">July 20, 2015</a></blockquote>

<h4 id="someonehadenoughofpuns">Someone had enough of puns</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">วันนี้วันจัญ</p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/623031684649201664">July 20, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/idomez">@idomez</a> ไรนะ</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/623033879696293888">July 20, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> เข้าใจถอกแล้ว</p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/623033991214465024">July 20, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/idomez">@idomez</a> แจ๊ะ</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/623034080385314816">July 20, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> <a href="https://twitter.com/idomez">@idomez</a> เฮ้อ...</p>&mdash; Stand Alone (@AwayA2u) <a href="https://twitter.com/AwayA2u/status/623037990646910976">July 20, 2015</a></blockquote>

<h4 id="waytoomuch">Way too much</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">เรามาถึงจุดนี้ได้ยังไง จุดที่มีน้องกลับมาจากเมกา และค่าอาหารก็พุ่งขึ้นเป็นหมื่น</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/623124106855104512">July 20, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iKaew">@iKaew</a> ละก็ถูกบังคับให้ไปกันมั้ย ก็ปล่าว ละก็ยังคงหาเรื่องกินกันต่อไปอย่างไม่หยุดยั้ง 55555+ อีกกี่ที่นะ เหมือนจะยังอีกเยอะ</p>&mdash; ⛄️◖|(´•͈ ̫ •͈`)|◗⛄️ (@L_Capulet) <a href="https://twitter.com/L_Capulet/status/623142022740750336">July 20, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/L_Capulet">@L_Capulet</a> กินกันมัน</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/623166735915483136">July 20, 2015</a></blockquote>

<h4 id="smore">S'more</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">S&#39;mores !!! มีความสุขที่ได้เผา แรตสสสสสสส พรุ่งนี้ไม่ต้อง outing ละ.... บาย <a href="http://t.co/u4UmXtux5G">pic.twitter.com/u4UmXtux5G</a></p>&mdash; ⛄️◖|(´•͈ ̫ •͈`)|◗⛄️ (@L_Capulet) <a href="https://twitter.com/L_Capulet/status/624611605729292289">July 24, 2015</a></blockquote>

<h4 id="espressoonice">Espresso on ice</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="und" dir="ltr">ในที่สุดเราก็มาถึงจุดที่เรียกว่า Triple espresso shots on ice</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/625510136237260800">July 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="en" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> on the rock หร่าาาาา</p>&mdash; Red Man (@iSarody) <a href="https://twitter.com/iSarody/status/625512822206672896">July 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iSarody">@iSarody</a> กาแฟราดนักมวยปล้ำอะนะ</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/625513520541503488">July 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> แล้วก็ค่อยๆ จิบ กาแฟบนตัวอ่ะนะ นี่มัน &gt;&lt;</p>&mdash; Red Man (@iSarody) <a href="https://twitter.com/iSarody/status/625513787374698496">July 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iSarody">@iSarody</a> ดูดดดดดดด</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/625513861286793216">July 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> ไปอยู่เมกามาแค่ปีเดียว น้องพี่เปลี่ยนไปได้ถึงเพียงนี้ อร๊ายยยย</p>&mdash; Red Man (@iSarody) <a href="https://twitter.com/iSarody/status/625514172307017728">July 27, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iSarody">@iSarody</a> ม่ายยยยยยยย /(-__-)\</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/625514297599246336">July 27, 2015</a></blockquote>

<h2 id="august">August</h2>

<h4 id="destructivelybeautiful">Destructively beautiful</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Long-Exposure Photos of California Wildfires at Night <a href="http://t.co/HPIe87oHdZ">http://t.co/HPIe87oHdZ</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/630264854297718784">August 9, 2015</a></blockquote>

<h4 id="catastrophicexplosions">Catastrophic explosions</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Enormous explosions leave a smoky ruin in Tianjin, China <a href="http://t.co/vuD7UABANw">http://t.co/vuD7UABANw</a> <a href="http://t.co/wUralulxwC">pic.twitter.com/wUralulxwC</a></p>&mdash; The New York Times (@nytimes) <a href="https://twitter.com/nytimes/status/631851475174584320">August 13, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr">What we know about the Tianjin explosions: <a href="http://t.co/jtU0UAop4A">http://t.co/jtU0UAop4A</a> <a href="http://t.co/21YcaQ3Wyx">pic.twitter.com/21YcaQ3Wyx</a></p>&mdash; NYT Graphics (@nytgraphics) <a href="https://twitter.com/nytgraphics/status/631845181130698752">August 13, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Tianjin death toll rises to 112 <a href="http://t.co/UXmIusLXtm">http://t.co/UXmIusLXtm</a> <a href="http://t.co/FMysP5r2Dw">pic.twitter.com/FMysP5r2Dw</a></p>&mdash; The Telegraph (@Telegraph) <a href="https://twitter.com/Telegraph/status/632835455910723585">August 16, 2015</a></blockquote>  

<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

<h4 id="bangkokbomb">Bangkok bomb</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">คนที่แชร์รูปศพ มึงจะไม่ให้เกียรติคนตายก็ได้นะ แต่มึงให้เกียรติคนรับภาพหน่อยว่าเค้าอยากดูหรือเปล่า <a href="https://twitter.com/hashtag/%E0%B9%80%E0%B8%8A%E0%B8%B5%E0%B9%89%E0%B8%A2%E0%B9%80%E0%B8%AD%E0%B9%89%E0%B8%A2?src=hash">#เชี้ยเอ้ย</a></p>&mdash; ⓚⓞⓨ (╹◡╹)~☆ (@tokoykoy) <a href="https://twitter.com/tokoykoy/status/633260412834742272">August 17, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">มึงรู้มั้ย กรุ๊ปไลน์กรูรูปเก็บไว้เป็นกิ๊ก รูปเพื่อนรูปหลานไรต่อไร พอมึงส่งรูปศพมา กรูต้องลบทิ้งหมดเลยเนี่ย เพราะกรูกลัว</p>&mdash; ⓚⓞⓨ (╹◡╹)~☆ (@tokoykoy) <a href="https://twitter.com/tokoykoy/status/633277932295745537">August 17, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/tokoykoy">@tokoykoy</a> บอยใช้โอกาสออกจากห้อง line ญาติ</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/633278137934090240">August 17, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> 5555 เข้าท่านะ</p>&mdash; ⓚⓞⓨ (╹◡╹)~☆ (@tokoykoy) <a href="https://twitter.com/tokoykoy/status/633278229818683392">August 17, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">ขณะนี้มีข้อความในไลน์ แอบอ้างจส.100 ประกาศว่า คสช. ประกาศหยุดเรียนหยุดงานวันพรุ่งนี้ จส.100 ขอยืนยันว่าไม่ได้ประกาศข้อความนี้แต่อย่างใด</p>&mdash; JS100 (@js100radio) <a href="https://twitter.com/js100radio/status/633269614479171588">August 17, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="und" dir="ltr">Espresso over ice แก้ง่วงช่วงหน้าร้อน <a href="https://twitter.com/hashtag/%E0%B8%97%E0%B8%A7%E0%B8%B4%E0%B8%95%E0%B8%A5%E0%B9%89%E0%B8%B2%E0%B8%87%E0%B8%95%E0%B8%B2?src=hash">#ทวิตล้างตา</a> <a href="http://t.co/q4KpvRfYpS">pic.twitter.com/q4KpvRfYpS</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/633280386840203264">August 17, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">กุ้งแม่ย้ำย่าง <a href="https://twitter.com/hashtag/%E0%B8%97%E0%B8%A7%E0%B8%B5%E0%B8%95%E0%B8%A5%E0%B9%89%E0%B8%B2%E0%B8%87%E0%B8%95%E0%B8%B2?src=hash">#ทวีตล้างตา</a> <a href="http://t.co/97xQqJBZsH">pic.twitter.com/97xQqJBZsH</a></p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/633281362997329920">August 17, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="und" dir="ltr">Umami burger …เบ อเกอร์สุดอร่อยจาก LA <a href="https://twitter.com/hashtag/%E0%B8%97%E0%B8%A7%E0%B8%B4%E0%B8%95%E0%B8%A5%E0%B9%89%E0%B8%B2%E0%B8%87%E0%B8%95%E0%B8%B2?src=hash">#ทวิตล้างตา</a> <a href="http://t.co/33kMjQt5iB">pic.twitter.com/33kMjQt5iB</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/633283399436775424">August 17, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">วันนี้เป็นวันที่เทพมากสำหรับการเดินช้อบปิ้ง</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/633643419106021378">August 18, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr"><a href="https://twitter.com/hashtag/StrongerTogether?src=hash">#StrongerTogether</a>: How Thailand&#39;s leader is pushing for national unity online <a href="http://t.co/ZtFqd9DaID">http://t.co/ZtFqd9DaID</a> <a href="http://t.co/4vwNlprRSb">pic.twitter.com/4vwNlprRSb</a></p>&mdash; BBC Trending (@BBCtrending) <a href="https://twitter.com/BBCtrending/status/633649053360910337">August 18, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Good story during the hard time :: Volunteers offer help after blast | Bangkok Post <a href="http://t.co/pixHaacZ3B">http://t.co/pixHaacZ3B</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/633861151328104448">August 19, 2015</a></blockquote>

<h4 id="googlessecret">Google's secret</h4>

<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr">Google gives the world a peek at its secret servers <a href="http://t.co/EfosFzWZij">http://t.co/EfosFzWZij</a> <a href="http://t.co/Bkyx5CVWAn">pic.twitter.com/Bkyx5CVWAn</a></p>&mdash; Engadget (@engadget) <a href="https://twitter.com/engadget/status/634386931816759296">August 20, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="vi" dir="ltr">Bisection bandwidth ของ Google datacenter networks ทั่วโลกแค่ 1Pbps เอง สวยๆ <a href="https://twitter.com/hashtag/%E0%B8%AD%E0%B8%A5%E0%B8%B1%E0%B8%87%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B8%AA%E0%B8%B0%E0%B8%9E%E0%B8%B2%E0%B8%99%E0%B9%81%E0%B8%82%E0%B8%A7%E0%B8%99?src=hash">#อลังการสะพานแขวน</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/634394490397061120">August 20, 2015</a></blockquote>

<h2 id="september">September</h2>

<h4 id="applepencilandiphone6swereintroduced">Apple Pencil and iPhone 6s were introduced</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="und" dir="ltr">2007: <a href="http://t.co/XrnnZsrNOq">pic.twitter.com/XrnnZsrNOq</a></p>&mdash; Tim Bradshaw (@tim) <a href="https://twitter.com/tim/status/641666830201782272">September 9, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">If you can&#39;t afford an iPhone 6s, may the 4s be with you</p>&mdash; Darth Vader (@DepressedDarth) <a href="https://twitter.com/DepressedDarth/status/641693776562491393">September 9, 2015</a></blockquote>

<h4 id="mafiasiam">Mafia Siam</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">คนไทยชอบบันเทิง แถลงข่าวมาเฟียสยาม ทำไมกลายเป็นแบบนี้ <a href="http://t.co/5sna69fTad">http://t.co/5sna69fTad</a> <a href="https://twitter.com/hashtag/%E0%B8%AE%E0%B8%B2?src=hash">#ฮา</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/641819855465766913">September 10, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">โอ้ย ฮาไม่ไหวละ ถึงกับทิ้งทุกอย่างเพื่อมาดู</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/641820156809756672">September 10, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">มีเวอร์ชั่น ragnarok ด้วย</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/641820367959363584">September 10, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> ตีติดคริเลยอ่ะ</p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/641820512293793792">September 10, 2015</a></blockquote>

<h4 id="llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch">Llanfairpwllgwyngyllgogerychwyrndrobwlll­lantysiliogogogoch</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="und" dir="ltr">มันเมืองของ Wales ชื่อ Llanfairpwllgwyngyllgogerychwyrndrobwlll­lantysiliogogogoch แล้วนักข่าวก็พูดชื่อมันออกอากาศ <a href="https://t.co/pLRd6XYGMv">https://t.co/pLRd6XYGMv</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/641850333283680256">September 10, 2015</a></blockquote>

<h4 id="iphone6s">iPhone6s</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="vi" dir="ltr">[Blog] ไม่ Review iPhone 6s แบบบ้าเห่อ <a href="http://t.co/8LpPzTeofW">http://t.co/8LpPzTeofW</a> <a href="https://twitter.com/hashtag/iPhone6s?src=hash">#iPhone6s</a> <a href="http://t.co/GhMW4Y58pw">pic.twitter.com/GhMW4Y58pw</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/648068603233734657">September 27, 2015</a></blockquote>

<h2 id="october">October</h2>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">ใครทำที่หยอดเหรียญเครื่องซักผ้าค้างก็ไม่รู้อะ ... โชคดีนะที่เราเรียนวิศวะมา ทำให้เครื่องซักผ้ามันกลับมาทำงานได้ <a href="https://twitter.com/hashtag/%E0%B9%80%E0%B8%AD%E0%B8%B2%E0%B8%A1%E0%B8%B7%E0%B8%AD%E0%B8%97%E0%B8%B8%E0%B8%9A%E0%B9%81%E0%B8%A3%E0%B8%87%E0%B9%86?src=hash">#เอามือทุบแรงๆ</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/655586910648164353">October 18, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> ทุบอีคนทำเหรียญค้างอะนะ</p>&mdash; ⛄️◖|(´•͈ ̫ •͈`)|◗⛄️ (@L_Capulet) <a href="https://twitter.com/L_Capulet/status/655587112918478853">October 18, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">ไม่ได้ทุบเครื่องซักผ้านะ ... ทุบกำแพงแล้วตัดพ้อต่อโชคชะตาชีวิต <a href="https://twitter.com/hashtag/ThatDramaticMoment?src=hash">#ThatDramaticMoment</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/655588475106824192">October 18, 2015</a></blockquote>

<h4 id="backtothefuture">Back to the future</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">It&#39;s 4:29 PM PST on October 21st and Marty McFly just arrived in 2015 &#10;<a href="https://t.co/Ib2qSoeDLA">https://t.co/Ib2qSoeDLA</a></p>&mdash; The Verge (@verge) <a href="https://twitter.com/verge/status/656975519573897216">October 21, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Marty McFly &amp; Doc Brown Visit Jimmy Kimmel Live ต้องดูๆ <a href="https://t.co/sumDHUJtbr">https://t.co/sumDHUJtbr</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/657838148668403712">October 24, 2015</a></blockquote>

<h2 id="november">November</h2>

<h4 id="chinabuildstheirownpassengerjets">China builds their own passenger jets</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">China to take on Boeing, Airbus with homegrown C919 passenger jet <a href="https://t.co/KHWvdYGRbW">https://t.co/KHWvdYGRbW</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/661387827557470208">November 3, 2015</a></blockquote>

<h4 id="twittergaveuponfavbuttons">Twitter gave up on fav buttons</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">You can say a lot with a heart. Introducing a new way to show how you feel on Twitter: <a href="https://t.co/WKBEmORXNW">https://t.co/WKBEmORXNW</a> <a href="https://t.co/G4ZGe0rDTP">pic.twitter.com/G4ZGe0rDTP</a></p>&mdash; Twitter (@twitter) <a href="https://twitter.com/twitter/status/661558661131558915">November 3, 2015</a></blockquote>

<h4 id="nutmegandpepper">Nutmeg and Pepper</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">จะย่างผัก ผัดผักให้ดีงาม ต้องมี เกลือ พริกไทย และ nutmeg <a href="https://t.co/EwgGBOULik">pic.twitter.com/EwgGBOULik</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/663891726872936449">November 10, 2015</a></blockquote>  

<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>  

<style>  
h2, h4 { margin-top: 1.5em; }  
</style>

<h4 id="parisattacks">Paris Attacks</h4>

<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr">Paris residents told to stay indoors after multiple attacks across the city. <a href="https://t.co/uR4EHLFqrp">https://t.co/uR4EHLFqrp</a> <a href="https://t.co/GnNtGluJmE">pic.twitter.com/GnNtGluJmE</a></p>&mdash; CNN Breaking News (@cnnbrk) <a href="https://twitter.com/cnnbrk/status/665309973375639552">November 13, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">LA and all major cities in the US are on high alert please stay safe! try to stay home today it isn&#39;t worth the risk!!</p>&mdash; california clique (@TOPCaliClique) <a href="https://twitter.com/TOPCaliClique/status/665319533888933888">November 14, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Anonymous Has Warned ISIS of &#39;Massive Cyber Attacks&#39; - Fortune <a href="https://t.co/H4pAd9MBD0">https://t.co/H4pAd9MBD0</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/666482607354331137">November 17, 2015</a></blockquote>

<h4 id="bowie">Bowie</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">กะมู้ &#39;โบวี่&#39; ในตำนาน ชอบจิงๆ 5555+ ฮาไป 8 วัน&#10;<a href="https://t.co/nWhSU6sD87">https://t.co/nWhSU6sD87</a></p>&mdash; ⛄️◖|(´•͈ ̫ •͈`)|◗⛄️ (@L_Capulet) <a href="https://twitter.com/L_Capulet/status/669180238719418368">November 24, 2015</a></blockquote>

<h2 id="december">December</h2>

<h4 id="sanbernadino">San Bernadino</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">UPDATE: 14 dead, 17 injured in <a href="https://twitter.com/hashtag/SanBernardino?src=hash">#SanBernardino</a> shooting: <a href="https://t.co/cbh6uXffkp">https://t.co/cbh6uXffkp</a> <a href="https://t.co/tTFCA9Me1C">pic.twitter.com/tTFCA9Me1C</a></p>&mdash; ABC News (@ABC) <a href="https://twitter.com/ABC/status/672194277800321025">December 2, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr">The San Bernardino shooting is America&#39;s 352nd mass shooting in the 336 days of 2015 <a href="https://t.co/0P2xccYmDH">https://t.co/0P2xccYmDH</a> <a href="https://t.co/Oe2ofRHiLF">pic.twitter.com/Oe2ofRHiLF</a></p>&mdash; Business Insider (@businessinsider) <a href="https://twitter.com/businessinsider/status/672184342790184960">December 2, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr">Here’s how little time America gets between mass shootings <a href="https://t.co/G8ZDvN4GLC">https://t.co/G8ZDvN4GLC</a> <a href="https://t.co/fq8qDz8YS4">pic.twitter.com/fq8qDz8YS4</a></p>&mdash; BuzzFeed (@BuzzFeed) <a href="https://twitter.com/BuzzFeed/status/672274936006705153">December 3, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr">Deadliest U.S. mass shootings | 1984-2015 <a href="https://t.co/XTSJTMFXUH">https://t.co/XTSJTMFXUH</a> <a href="https://t.co/KhHnseP2WT">pic.twitter.com/KhHnseP2WT</a></p>&mdash; Los Angeles Times (@latimes) <a href="https://twitter.com/latimes/status/672348335131500544">December 3, 2015</a></blockquote>

<h4 id="http2">HTTP/2</h4>

<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="en" dir="ltr">HTTP/2 is here! Goodbye SPDY? Not quite yet <a href="https://t.co/5bNaQFa8nL">https://t.co/5bNaQFa8nL</a></p>&mdash; CloudFlare (@CloudFlare) <a href="https://twitter.com/CloudFlare/status/672416191260975104">December 3, 2015</a></blockquote>

<h4 id="tinafromhr">Tina from HR</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">Tina from HR via <a href="https://twitter.com/9GAG">@9gag</a> <a href="https://t.co/GgjZUJwnlr">https://t.co/GgjZUJwnlr</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/677021940125536256">December 16, 2015</a></blockquote>

<h4 id="perfectscore57">Perfect Score 5/7</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="en" dir="ltr">This Robert just won the Internet via <a href="https://twitter.com/9GAG">@9gag</a> <a href="https://t.co/TuEvPtxK8s">https://t.co/TuEvPtxK8s</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/677280210018963456">December 17, 2015</a></blockquote>

<h4 id="4gover900mhzauction">4G over 900MHz Auction</h4>

<blockquote class="twitter-tweet" data-cards="hidden" lang="en"><p lang="th" dir="ltr">ผลการประมูล <a href="https://twitter.com/hashtag/4G?src=hash">#4G</a> คลื่นความถี่ 900 MHz &#10;- <a href="https://twitter.com/hashtag/Jasmine?src=hash">#Jasmine</a> ได้ใบอนุญาตที่ 1 &#10;- <a href="https://twitter.com/hashtag/True?src=hash">#True</a> ได้ใบอนุญาตที่ 2 &#10;ราคารวม 151,952 ลบ. <a href="https://t.co/2HE9ZcQq1P">pic.twitter.com/2HE9ZcQq1P</a></p>&mdash; ThaiPBS (@ThaiPBS) <a href="https://twitter.com/ThaiPBS/status/677998599897153536">December 18, 2015</a></blockquote>

<h4 id="tootired">Too tired?</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">เราแทบไม่ได้ความรู้เรื่องจ.กาญจนบุรีเพิ่มจากกระทู้นี้เลย ข้าวสักเม็ดอาหารสักจานยังไม่มี น่าเสียดาย <a href="https://t.co/eXaiDI5GGd">https://t.co/eXaiDI5GGd</a></p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/677334281950068736">December 17, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/idomez">@idomez</a> แหม่ เค้ารีวิวอีกจะดูมั๊ย ?</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/677334426473259009">December 17, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iKaew">@iKaew</a> ไม่!!</p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/677334734565826560">December 17, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/idomez">@idomez</a> ไม่ดู ?</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/677334794502471680">December 17, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iKaew">@iKaew</a> ไม่พลาด</p>&mdash; อนันโดม (ㆆᴗㆆ) (@idomez) <a href="https://twitter.com/idomez/status/677334864635363328">December 17, 2015</a></blockquote>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">บางทีก็เหนื่อยนะ ต้องมานั่งชงมุกให้พี่แกเนี่ย วันหลังต้องขอค่าจ้างบ้างล่ะ</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/677334985133588480">December 17, 2015</a></blockquote>

<h4 id="sampranriverside">Sam Pran Riverside</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">มาเที่ยวสวนสามพรานกัน บรรยากาศริมแม่น้ำท่าจีน <a href="https://t.co/o5WE4heAyG">pic.twitter.com/o5WE4heAyG</a></p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/682078324391194624">December 30, 2015</a></blockquote>

<h4 id="thatnostalgia">That Nostalgia</h4>

<blockquote class="twitter-tweet" lang="en"><p lang="th" dir="ltr">ย้อนความหลัง: เที่ยงคืนปุ๊บ ... SMS ส่งไม่ออก</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/682560961396383744">December 31, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> วัฒนธรรมก๊อปปี้ sms อะนะ</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/682571265542991872">December 31, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/iKaew">@ikaew</a> แล้วส่งไปหาหลายๆคน</p>&mdash; Peera (@hellopeera) <a href="https://twitter.com/hellopeera/status/682571485542653957">December 31, 2015</a></blockquote>

<blockquote class="twitter-tweet" data-conversation="none" lang="en"><p lang="th" dir="ltr"><a href="https://twitter.com/hellopeera">@hellopeera</a> fwd รัวๆ อย่าส่งกลับไปหาต้นฉบับเป็นพอ</p>&mdash; iKaew (@iKaew) <a href="https://twitter.com/iKaew/status/682571794000154624">December 31, 2015</a></blockquote>]]></content:encoded></item><item><title><![CDATA[Twitter Archive Visualization]]></title><description><![CDATA[<p>Hey! let's play something fun with the twitter archive of all my tweets during 2015.</p>  

<p>Twitter is one of my social media I have been actively using. Since they allow us to request and download our own <a href="https://support.twitter.com/articles/20170160?lang=en" target="_blank">twitter archive</a> which includes all of your tweets since your very first tweet</p>]]></description><link>https://nerd.hellopeera.com/twitter-archive-vis/</link><guid isPermaLink="false">6994ffa7-d88b-400d-902f-39e07e2ee255</guid><category><![CDATA[twitter]]></category><category><![CDATA[d3]]></category><category><![CDATA[crossfilter]]></category><category><![CDATA[moment]]></category><category><![CDATA[bootstrap]]></category><category><![CDATA[visualization]]></category><category><![CDATA[svg]]></category><category><![CDATA[js]]></category><dc:creator><![CDATA[hlpr]]></dc:creator><pubDate>Sun, 06 Dec 2015 07:05:00 GMT</pubDate><content:encoded><![CDATA[<p>Hey! let's play something fun with the twitter archive of all my tweets during 2015.</p>  

<p>Twitter is one of my social media I have been actively using. Since they allow us to request and download our own <a href="https://support.twitter.com/articles/20170160?lang=en" target="_blank">twitter archive</a> which includes all of your tweets since your very first tweet till the latest one, so I came up with an idea that it could be geekily fun if I did something further with these data. Then I sat down and wrote the code, and finally have made some data visualizations from the twitter archive in various and little interactive ways.</p>  

<p>Basically, data visualization obviously is a way that we present data in a form that is more human-readable, more informative and more expressive. It makes the data easily and quickly understandable and could even lead us to discover some hidden information we have never seen before.</p>

<h2>Time Distributions</h2>  

<p>The number of tweets versus time distribution in various dimensions are shown below. They could exhibit the usual behavior of my use of twitter or even daily life during 2015.</p>  

<div class="overflow">  
    <div id="hour-chart" class="chart">
        <h5 class="title">Time of Day</h5>
    </div>
    <div id="day-chart" class="chart">
        <h5 class="title">Day of Week</h5>
    </div>
    <div id="month-chart" class="chart">
        <h5 class="title">Month</h5>
    </div>
    <div id="date-chart" class="chart">
        <h5 class="title">Date</h5>
    </div>
</div>

<h2>Mentions</h2>  

<p>The node-link graph below depicts the users who has been mentioned in my tweets during 2015 and the number of tweets which associates to each of them. Nodes represent mentioned users, whereas links represent participation/co-occurrence in tweets. The weight of a link simply illustrates the number of tweets involved by two users on both ends of the link. The wider link, the more number of mentions. And the length of a link represents the same thing but in a reversed way.</p>  

<p><b>All the nodes can be moved arbitrarily by dragging them gently.</b> Sometimes, the nodes are not properly spread out at the beginning. You may give it a little shake then it will get better. And you may <b>double click on a node to make it unmovable</b>.</p>  

<div class="overflow">  
    <div id="mention-chart" class="chart"></div>
</div>  

<p> Unlike an adjacency matrix, this will be instantly understood without a need of scratch paper or imagination in your head. Regarding this graph, is it possible that friend clusters might have been easily revealed?</p>

<h2>Retweets & Domains tweeted</h2>  

<p>This bubble chart encodes the number of tweets in the area of circles; the bigger the circle, the larger the number of tweets. Although harder to read the value from the size of a bubble, it can pack hundreds of values in a limited space. Each bubble represents a username whose tweets were retweeted or a domain related to links I tweeted during 2015. The former are blue and the latter are red. The size of bubbles vary according to their number of related tweets/retweets.</p>  

<div class="overflow">  
    <div id="retweet-chart" class="chart"></div>
</div>

<div>  
    Note:
    <ul>
        <li>Data processing is done at the client side (in web browser).</li>
        <li>Timezone 'America/Los_Angeles' was used to process the data.</li>
    </ul>
</div>

<script src="https://nerd.hellopeera.com/static/js/crossfilter.min.js"></script>  

<script src="https://nerd.hellopeera.com/static/js/moment.min.js"></script>  

<script src="https://nerd.hellopeera.com/static/js/moment-timezone-with-data.min.js"></script>  

<script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>  

<script src="https://nerd.hellopeera.com/static/js/tweet-archive-visualization.js"></script>  

<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>  

<style>  
    .overflow {
        overflow-x: auto;
        overflow-y: hidden;
        margin: 0 0 1.75em 0;
    }
    .chart {
        display: inline-block;
        margin-top: 1em;
    }
    .chart .axis text {
      font: 10px Arial, sans-serif;
      text-anchor: middle;
    }
    .chart .axis path,
    .chart .axis line {
      fill: none;
      stroke: #000;
      stroke-width: 1px;
      shape-rendering: crispEdges;
    }
    .chart .bar rect {
        fill: #25b2e6;
        cursor: pointer;
    }
    .chart .bar rect:hover {
        fill: #FF8800;
    }
    .chart .line {
        fill: none;
        stroke: #00AA22;
        stroke-width: 1px;
    }
    .chart circle.dot {
        fill: #FF8800;
        stroke-width: 0;
    }

    .chart .node {
        fill: #25b2e6;
        stroke: #000;
        stroke-width: 0px;
        cursor: pointer;
    }
    .chart .node[data-type='domain'] {
        fill: #FF5555;
    }
    .chart .node text {
        font: 10px Arial, sans-serif;
        text-anchor: middle;
        fill: #000000;
        stroke-width: 0;
    }
    .chart .nodecaption {
        font-family: Arial, sans-serif;
        font-size: 10px;
        text-anchor: middle;
        opacity: 0.9;
        stroke-width: 0;
    }
    .chart .nodecaption.highlight {
        opacity: 0.9 !important;
        font-weight: bold;
    }
    .chart .node:hover {
        fill: #FF8800 !important;
    }
    .chart .node:hover circle {
        opacity: 1 !important;
    }
    .chart .node.fixed {
        fill: #00AA22;
    }
    .chart .link {
      stroke: #999;
      stroke-opacity: .05;
    }
    .chart .link.highlight {
      stroke: #FF8800;
      stroke-opacity: 0.5 !important;
    }
    #mention-chart svg {
        border: 0px solid #eee;
    }

    .tooltip {
        position: absolute;
        z-index: 1070;
        display: block;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11px;
        font-style: normal;
        font-weight: bold;
        line-height: 1.42857143;
        text-align: left;
        text-align: start;
        text-decoration: none;
        text-shadow: none;
        text-transform: none;
        letter-spacing: normal;
        word-break: normal;
        word-spacing: normal;
        word-wrap: normal;
        white-space: normal;
        filter: alpha(opacity=0);
        opacity: 0;

        line-break: auto;
    }
    .tooltip.in {
        filter: alpha(opacity=90);
        opacity: .9;
    }
    .tooltip-inner {
        max-width: 200px;
        padding: 3px 8px;
        color: #fff;
        text-align: center;
        background-color: #000;
        border-radius: 4px;
    }
    .tooltip.top {
        padding: 5px 0;
        margin-top: -3px;
    }
    .tooltip.bottom {
        padding: 5px 0;
        margin-top: 3px;
    }
    .tooltip-arrow {
        position: absolute;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
    }
    .tooltip.top .tooltip-arrow {
        bottom: 0;
        left: 50%;
        margin-left: -5px;
        border-width: 5px 5px 0;
        border-top-color: #000;
    }
    .tooltip.bottom .tooltip-arrow {
        top: 0;
        left: 50%;
        margin-left: -5px;
        border-width: 0 5px 5px;
        border-bottom-color: #000;
    }
    .fade {
        opacity: 0;
        -webkit-transition: opacity .15s linear;
           -o-transition: opacity .15s linear;
              transition: opacity .15s linear;
    }
    .fade.in {
        opacity: 1;
    }
</style>]]></content:encoded></item></channel></rss>