How to install Line Messenger on Ubuntu 14.04

Thursday, June 25, 2015 8:26 PM 0 Comments , ,

1. open terminal to install wine

sudo apt-get install wine winetricks -y

2. open winetricks to install vcrun2008

winetricks

wine will install some library on the firsttime, after finish we will install vcrun2008

- select the default wineprefix



- install a Windows DLL or component



- select vcrun2008 and install




3. Download & Install Line Messenger

cd /tmp
wget http://cdn.line-apps.com/client/win/new/LineInst.exe
wine LineInst.exe

install it







5. Install font for support Thai language

wget "https://docs.google.com/uc?authuser=0&id=0B4BVfmN-CsL5YnV1dXFidEVpNmM&export=download" -O tahoma.zip
unzip tahoma.zip
cp tahoma/* ~/.wine/drive_c/windows/Fonts/

6. Reopen Line Messenger

0 comments:

ทดสอบ PHP 7 Alpha 1

Friday, June 12, 2015 2:47 PM 0 Comments , ,

PHP ได้ปล่อย PHP 7 Alpha 1 ออกมา https://github.com/php/php-src/blob/php-7.0.0alpha1/NEWS เลยลองทดสอบดูครับ

โดยผมได้ใช้ script นี้ในการทดสอบ

https://gist.github.com/kittinan/3173c58b32b8e7739b11

<?php
/*
* Largest palindrome product
*/
$max = 0;
$output = null;
for ($i = 100; $i < 10000; $i++ ) {
for ($j = 100; $j < 10000; $j++) {
$mul = $i*$j;
if ($mul == strrev($mul) && $mul > $max) {
$max = $mul;
}
}
}
echo "$max\n";
view raw palindrome.php hosted with ❤ by GitHub

ผลการทดสอบดังนี้

PHP 5.5.9



PHP 7 DEV



PHP 7 Alpha 1



จะเห็นได้ว่า PHP 7 Alpha 1 แรงขึ้นกว่า PHP 7 Dev อีก

สุดท้ายก็ขอให้ PHP 7  ตัวจริงที่จะออกปลายปีแรงกว่านี้อีกนะค้าบบบบ

0 comments:

Happy Birthday PHP!!!

Monday, June 8, 2015 2:05 PM 1 Comments ,


Happy Birthday to PHP celebrate for 20 years old



1 comments: