我們的確需要發展自己的、因人因地制宜的教育制度,而不是一昧地搬用歐美教育制度….
DEAR READER

Discoholic 🪩

JBB: An Artblog!
cherry valley forever
ojovivo
I'd rather be in outer space 🛸
we're not kids anymore.
AnasAbdin
Cosmic Funnies
Lint Roller? I Barely Know Her
KIROKAZE
almost home

Origami Around

dirt enthusiast
Alisa U Zemlji Chuda

Janaina Medeiros
styofa doing anything
Sweet Seals For You, Always

Kaledo Art
seen from United States

seen from France
seen from United States

seen from United States
seen from United States

seen from Malaysia

seen from Türkiye

seen from Malaysia
seen from United States

seen from South Korea

seen from United States
seen from Nigeria

seen from United States

seen from United States

seen from Italy
seen from United States
seen from United Kingdom

seen from South Korea

seen from Türkiye
seen from United States
@tomchiukc
我們的確需要發展自己的、因人因地制宜的教育制度,而不是一昧地搬用歐美教育制度….

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
小綠人吃蘋果(在 Shenzhen Baoan International Airport Terminal B)
6% through SELF CONTROL: The Best Step By Step SELF CONTROL Guide - How To Increase Your Self Control And Improve Your Willpower Forever!: (self control, willpower, ... esteem, self improvement, self discipline) by LIFE-STYLE on Kindle for Android!
Mimosa dè blog wa 5-nin da!
I have modified the program to store frequency onto a local SQLite3 format DB.
<?php
if($_GET) {
$id = $_GET["id"];
}
else
{
parse_str(implode('&', array_slice($argv, 1)), $_GET);
}
function str_split_unicode($str, $l = 0) {
if ($l > 0) {
$ret = array();
$len = mb_strlen($str, "UTF-8");
for ($i = 0; $i < $len; $i += $l) {
$ret[] = mb_substr($str, $i, $l, "UTF-8");
}
return $ret;
}
return preg_split("//u", $str, -1, PREG_SPLIT_NO_EMPTY);
}
// setup environment
// 1. setup charset
$charSet = 'AaĀāÁáǍǎÀàÄäǞǟÄ́ä́Ä̌ä̌Ä̀ä̀BbCcÇçČčĈĉDdĐđEeĒēÉéĚěÈèFfGgĜĝ' .
'HhĤĥIiĪīÍíǏǐÌìJjKkLlMmM̄m̄ḾḿM̌m̌M̀m̀NnN̄n̄ŃńŇňǸǹŊŋŊ̄ŋ̄' .
'Ŋ́ŋ́Ŋ̌ŋ̌Ŋ̀ŋ̀OoŌōÓóǑǒÒòÖöȪȫÖ́ö́Ö̌ö̌Ö̀ö̀PpQqRrŘřSsŠšŜŝTtŦŧ' .
'UuŪūÚúǓǔÙùÜüǕǖǗǘǙǚǛǜVvWwXxYyZzŽžẐẑ0123456789';
// 2. setup input file
$hFile = @fopen("./input/".$_GET['id'].".txt", "r") or exit("\nUnable to open input file.\n");
// 3. setup sqlite3 db
//$dbFile = "MideDikcionari.db";
//$db = new SQLite3($dbFile, 0666, $sqliteerror);
$dbFile = 'sqlite:./MideDikcionari.db';
$db = new PDO($dbFile); //success
if ($db)
{
$statement = $db->prepare("CREATE TABLE IF NOT EXISTS dikcionari (word TEXT, freq LONG);");
$result = $statement->execute();
print_r('<P>Create Table. Result: ' . $result . '</P>');
}
else
{
die($sqliteerror);
}
// microtime(true) returns the unix timestamp plus milliseconds as a float
$starttime = microtime(true);
// Proses input fayl
if($hFile)
{
// init
$freqWordData = array();
$freqCharData = array();
$lines = 0; $words = 0; $chars = 0;
while(!feof($hFile))
{
// Reference of mb_strtolower: http://php.net/manual/en/function.mb-strtolower.php
$Line = mb_strtolower(fgets($hFile), 'UTF-8');
$Words = str_word_count($Line, 1, $charSet);
// word frequency
foreach ($Words as $Word) {
// rekommenden metods: http://php.net/manual/en/sqlite3.query.php
$statement = $db->prepare("SELECT freq FROM dikcionari WHERE word=:word;");
$statement->bindValue(':word', $Word, PDO::PARAM_STR);
$result = $statement->execute();
$numRows = $statement->fetch(PDO::FETCH_ASSOC);
if ($numRows > 0)
{
print_r('<P>' . $Word . ' --> ' . $numRows['freq']);
$freq = 1 + $numRows['freq'];
// rekommenden metods: http://php.net/manual/en/sqlite3.query.php
$statement = $db->prepare("UPDATE dikcionari SET freq=:freq WHERE word=:word;");
}
else
{
print_r('<P>Creating: ');
$freq = 1;
// rekommenden metods: http://php.net/manual/en/sqlite3.query.php
$statement = $db->prepare("INSERT INTO dikcionari VALUES (:word, :freq);");
}
$statement->bindValue(':word', $Word, PDO::PARAM_STR);
$statement->bindValue(':freq', $freq, PDO::PARAM_INT);
$result = $statement->execute();
print_r(' ==> ' . $Word . ' --> ' . $freq . ' Result: ' . $result . '</P>');
}
}
}
$endtime = microtime(true);
$timediff = $endtime - $starttime;
// http://php.net/manual/en/pdo.connections.php
// and now we're done; close it
$db = null;
// Klosing ol
fclose($hFile);
print("<P>Eläpsen taim: " . print_r($timediff) . " sekonds.</P>");
?>

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Word Frequency Count in PHP
<?php if($_GET) { $id = $_GET["id"]; print_r('<P>Supplaien id wa: '); print_r($_GET['id']); print_r('</P>'); } else { parse_str(implode('&', array_slice($argv, 1)), $_GET); print_r('<P>You supplied: '); print_r($_GET); print_r('</P>'); }
$charSet = 'AaĀāÁáǍǎÀàÄäǞǟÄ́ä́Ä̌ä̌Ä̀ä̀BbCcÇçČčĈĉDdĐđEeĒēÉéĚěÈèFfGgĜĝ' . 'HhĤĥIiĪīÍíǏǐÌìJjKkLlMmM̄m̄ḾḿM̌m̌M̀m̀NnN̄n̄ŃńŇňǸǹŊŋŊ̄ŋ̄' . 'Ŋ́ŋ́Ŋ̌ŋ̌Ŋ̀ŋ̀OoŌōÓóǑǒÒòÖöȪȫÖ́ö́Ö̌ö̌Ö̀ö̀PpQqRrŘřSsŠšŜŝTtŦŧ' . 'UuŪūÚúǓǔÙùÜüǕǖǗǘǙǚǛǜVvWwXxYyZzŽžẐẑ0123456789'; $hFile = @fopen("./input/".$_GET['id'].".txt", "r") or exit("\nUnable to open file: " . $PARAM);
// my ($lines, $words, $chars) = (0,0,0);
if($hFile) { $freqData = array(); while(!feof($hFile)) { $Line = fgets($hFile); $lines++; $chars += strlen($Line); $Words = str_word_count($Line, 1, $charSet); print_r($Words); $words += count($Words); foreach ($Words as $Word) { array_key_exists( $Word, $freqData ) ? $freqData[ $Word ]++ : $freqData[ $Word ] = 1; } } fclose($hFile); arsort($freqData); }
print("<hr>"); print("<P>Statistics: lines=$lines words=$words chars=$chars</P>"); print_r($freqData);
?>
20140708_191513 on Flickr.
20140708_191513m
on the way to hhvm
http://chawi3.com/2014/05/20/hhvm-nginx-wordpress-aws-ubuntu/
-->
http://fideloper.com/hhvm-nginx-laravel
-->
login as: ubuntu Authenticating with public key "imported-openssh-key" Passphrase for key "imported-openssh-key": Welcome to Ubuntu 14.04.1 LTS (GNU/Linux 3.13.0-29-generic x86_64)
* Documentation: https://help.ubuntu.com/
System information as of Wed Aug 6 05:00:38 UTC 2014
System load: 0.0 Processes: 110 Usage of /: 10.4% of 7.74GB Users logged in: 0 Memory usage: 7% IP address for eth0: 172.31.24.201 Swap usage: 0%
Graph this data and manage this system at: https://landscape.canonical.com/
Get cloud support with Ubuntu Advantage Cloud Guest: http://www.ubuntu.com/business/services/cloud
Last login: Wed Aug 6 04:57:53 2014 from 115.160.167.133 ubuntu@ip-172-31-24-201:~$ sudo su - root@ip-172-31-24-201:~# apt-get install hunspell-tools Reading package lists... Done Building dependency tree Reading state information... Done The following extra packages will be installed: dictionaries-common hunspell-en-us libhunspell-1.3-0 Suggested packages: ispell aspell hunspell wordlist emacsen-common jed-extra openoffice.org-hunspell openoffice.org-core The following NEW packages will be installed: dictionaries-common hunspell-en-us hunspell-tools libhunspell-1.3-0 0 upgraded, 4 newly installed, 0 to remove and 4 not upgraded. Need to get 624 kB of archives. After this operation, 2,331 kB of additional disk space will be used. Do you want to continue? [Y/n] y Get:1 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libhunspell-1. 3-0 amd64 1.3.2-6ubuntu2 [107 kB] Get:2 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main dictionaries-c ommon all 1.20.5 [232 kB] Get:3 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main hunspell-en-us all 20070829-4ubuntu3 [248 kB] Get:4 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main hunspell-tools amd64 1.3.2-6ubuntu2 [36.9 kB] Fetched 624 kB in 0s (3,161 kB/s) Preconfiguring packages ... Selecting previously unselected package libhunspell-1.3-0:amd64. (Reading database ... 51065 files and directories currently installed.) Preparing to unpack .../libhunspell-1.3-0_1.3.2-6ubuntu2_amd64.deb ... Unpacking libhunspell-1.3-0:amd64 (1.3.2-6ubuntu2) ... Selecting previously unselected package dictionaries-common. Preparing to unpack .../dictionaries-common_1.20.5_all.deb ... Adding 'diversion of /usr/share/dict/words to /usr/share/dict/words.pre-dictiona ries-common by dictionaries-common' Unpacking dictionaries-common (1.20.5) ... Selecting previously unselected package hunspell-en-us. Preparing to unpack .../hunspell-en-us_20070829-4ubuntu3_all.deb ... Unpacking hunspell-en-us (20070829-4ubuntu3) ... Selecting previously unselected package hunspell-tools. Preparing to unpack .../hunspell-tools_1.3.2-6ubuntu2_amd64.deb ... Unpacking hunspell-tools (1.3.2-6ubuntu2) ... Processing triggers for man-db (2.6.7.1-1) ... Setting up libhunspell-1.3-0:amd64 (1.3.2-6ubuntu2) ... Setting up dictionaries-common (1.20.5) ... Setting up hunspell-tools (1.3.2-6ubuntu2) ... Processing triggers for dictionaries-common (1.20.5) ... Setting up hunspell-en-us (20070829-4ubuntu3) ... Processing triggers for libc-bin (2.19-0ubuntu6.1) ... root@ip-172-31-24-201:~# ^C root@ip-172-31-24-201:~# root@ip-172-31-24-201:~# apt-get install -y unzip vim git-core curl wget build-e ssential python-software-properties Reading package lists... Done Building dependency tree Reading state information... Done curl is already the newest version. vim is already the newest version. wget is already the newest version. The following extra packages will be installed: binutils cpp cpp-4.8 dpkg-dev fakeroot g++ g++-4.8 gcc gcc-4.8 git git-man libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan0 libatomic1 libc-dev-bin libc6-dev libcloog-isl4 libdpkg-perl liberror-perl libfakeroot libfile-fcntllock-perl libgcc-4.8-dev libgmp10 libgomp1 libisl10 libitm1 libmpc3 libmpfr4 libquadmath0 libstdc++-4.8-dev libtsan0 linux-libc-dev make manpages-dev Suggested packages: binutils-doc cpp-doc gcc-4.8-locales debian-keyring g++-multilib g++-4.8-multilib gcc-4.8-doc libstdc++6-4.8-dbg gcc-multilib autoconf automake1.9 libtool flex bison gdb gcc-doc gcc-4.8-multilib libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan0-dbg libtsan0-dbg libbacktrace1-dbg libquadmath0-dbg binutils-gold git-daemon-run git-daemon-sysvinit git-doc git-el git-email git-gui gitk gitweb git-arch git-bzr git-cvs git-mediawiki git-svn glibc-doc libstdc++-4.8-doc make-doc zip The following NEW packages will be installed: binutils build-essential cpp cpp-4.8 dpkg-dev fakeroot g++ g++-4.8 gcc gcc-4.8 git git-core git-man libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan0 libatomic1 libc-dev-bin libc6-dev libcloog-isl4 libdpkg-perl liberror-perl libfakeroot libfile-fcntllock-perl libgcc-4.8-dev libgmp10 libgomp1 libisl10 libitm1 libmpc3 libmpfr4 libquadmath0 libstdc++-4.8-dev libtsan0 linux-libc-dev make manpages-dev python-software-properties unzip 0 upgraded, 40 newly installed, 0 to remove and 4 not upgraded. Need to get 31.9 MB of archives. After this operation, 127 MB of additional disk space will be used. Get:1 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libasan0 amd64 4.8.2-19ubuntu1 [63.0 kB] Get:2 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libatomic1 amd 64 4.8.2-19ubuntu1 [8,626 B] Get:3 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libgmp10 amd64 2:5.1.3+dfsg-1ubuntu1 [218 kB] Get:4 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libisl10 amd64 0.12.2-1 [419 kB] Get:5 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libcloog-isl4 amd64 0.18.2-1 [57.5 kB] Get:6 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libgomp1 amd64 4.8.2-19ubuntu1 [23.2 kB] Get:7 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libitm1 amd64 4.8.2-19ubuntu1 [28.5 kB] Get:8 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libmpfr4 amd64 3.1.2-1 [203 kB] Get:9 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libquadmath0 a md64 4.8.2-19ubuntu1 [126 kB] Get:10 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libtsan0 amd6 4 4.8.2-19ubuntu1 [94.7 kB] Get:11 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libmpc3 amd64 1.0.1-1ubuntu1 [38.4 kB] Get:12 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main binutils amd6 4 2.24-5ubuntu3 [2,071 kB] Get:13 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty-updates/main libc- dev-bin amd64 2.19-0ubuntu6.1 [69.0 kB] Get:14 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty-updates/main linux -libc-dev amd64 3.13.0-32.57 [783 kB] Get:15 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty-updates/main libc6 -dev amd64 2.19-0ubuntu6.1 [1,915 kB] Get:16 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main cpp-4.8 amd64 4.8.2-19ubuntu1 [4,439 kB] Get:17 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main cpp amd64 4:4 .8.2-1ubuntu6 [27.5 kB] Get:18 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libgcc-4.8-de v amd64 4.8.2-19ubuntu1 [1,688 kB] Get:19 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main gcc-4.8 amd64 4.8.2-19ubuntu1 [5,012 kB] Get:20 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main gcc amd64 4:4 .8.2-1ubuntu6 [5,098 B] Get:21 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libstdc++-4.8 -dev amd64 4.8.2-19ubuntu1 [1,050 kB] Get:22 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main g++-4.8 amd64 4.8.2-19ubuntu1 [7,038 kB] Get:23 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main g++ amd64 4:4 .8.2-1ubuntu6 [1,490 B] Get:24 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main make amd64 3. 81-8.2ubuntu3 [119 kB] Get:25 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty-updates/main libdp kg-perl all 1.17.5ubuntu5.3 [179 kB] Get:26 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty-updates/main dpkg- dev all 1.17.5ubuntu5.3 [726 kB] Get:27 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main build-essenti al amd64 11.6ubuntu6 [4,838 B] Get:28 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libfakeroot a md64 1.20-3ubuntu2 [25.4 kB] Get:29 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main fakeroot amd6 4 1.20-3ubuntu2 [55.0 kB] Get:30 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main liberror-perl all 0.17-1.1 [21.1 kB] Get:31 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main git-man all 1 :1.9.1-1 [698 kB] Get:32 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main git amd64 1:1 .9.1-1 [2,555 kB] Get:33 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main git-core all 1:1.9.1-1 [1,452 B] Get:34 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libalgorithm- diff-perl all 1.19.02-3 [50.0 kB] Get:35 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libalgorithm- diff-xs-perl amd64 0.04-2build4 [12.6 kB] Get:36 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libalgorithm- merge-perl all 0.08-2 [12.7 kB] Get:37 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main libfile-fcntl lock-perl amd64 0.14-2build1 [15.9 kB] Get:38 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main manpages-dev all 3.54-1ubuntu1 [1,820 kB] Get:39 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty-updates/universe p ython-software-properties all 0.92.37.1 [19.6 kB] Get:40 http://us-west-2.ec2.archive.ubuntu.com/ubuntu/ trusty/main unzip amd64 6 .0-9ubuntu1 [193 kB] Fetched 31.9 MB in 2s (15.2 MB/s) Extracting templates from packages: 100% Selecting previously unselected package libasan0:amd64. (Reading database ... 51162 files and directories currently installed.) Preparing to unpack .../libasan0_4.8.2-19ubuntu1_amd64.deb ... Unpacking libasan0:amd64 (4.8.2-19ubuntu1) ... Selecting previously unselected package libatomic1:amd64. Preparing to unpack .../libatomic1_4.8.2-19ubuntu1_amd64.deb ... Unpacking libatomic1:amd64 (4.8.2-19ubuntu1) ... Selecting previously unselected package libgmp10:amd64. Preparing to unpack .../libgmp10_2%3a5.1.3+dfsg-1ubuntu1_amd64.deb ... Unpacking libgmp10:amd64 (2:5.1.3+dfsg-1ubuntu1) ... Selecting previously unselected package libisl10:amd64. Preparing to unpack .../libisl10_0.12.2-1_amd64.deb ... Unpacking libisl10:amd64 (0.12.2-1) ... Selecting previously unselected package libcloog-isl4:amd64. Preparing to unpack .../libcloog-isl4_0.18.2-1_amd64.deb ... Unpacking libcloog-isl4:amd64 (0.18.2-1) ... Selecting previously unselected package libgomp1:amd64. Preparing to unpack .../libgomp1_4.8.2-19ubuntu1_amd64.deb ... Unpacking libgomp1:amd64 (4.8.2-19ubuntu1) ... Selecting previously unselected package libitm1:amd64. Preparing to unpack .../libitm1_4.8.2-19ubuntu1_amd64.deb ... Unpacking libitm1:amd64 (4.8.2-19ubuntu1) ... Selecting previously unselected package libmpfr4:amd64. Preparing to unpack .../libmpfr4_3.1.2-1_amd64.deb ... Unpacking libmpfr4:amd64 (3.1.2-1) ... Selecting previously unselected package libquadmath0:amd64. Preparing to unpack .../libquadmath0_4.8.2-19ubuntu1_amd64.deb ... Unpacking libquadmath0:amd64 (4.8.2-19ubuntu1) ... Selecting previously unselected package libtsan0:amd64. Preparing to unpack .../libtsan0_4.8.2-19ubuntu1_amd64.deb ... Unpacking libtsan0:amd64 (4.8.2-19ubuntu1) ... Selecting previously unselected package libmpc3:amd64. Preparing to unpack .../libmpc3_1.0.1-1ubuntu1_amd64.deb ... Unpacking libmpc3:amd64 (1.0.1-1ubuntu1) ... Selecting previously unselected package binutils. Preparing to unpack .../binutils_2.24-5ubuntu3_amd64.deb ... Unpacking binutils (2.24-5ubuntu3) ... Selecting previously unselected package libc-dev-bin. Preparing to unpack .../libc-dev-bin_2.19-0ubuntu6.1_amd64.deb ... Unpacking libc-dev-bin (2.19-0ubuntu6.1) ... Selecting previously unselected package linux-libc-dev:amd64. Preparing to unpack .../linux-libc-dev_3.13.0-32.57_amd64.deb ... Unpacking linux-libc-dev:amd64 (3.13.0-32.57) ... Selecting previously unselected package libc6-dev:amd64. Preparing to unpack .../libc6-dev_2.19-0ubuntu6.1_amd64.deb ... Unpacking libc6-dev:amd64 (2.19-0ubuntu6.1) ... Selecting previously unselected package cpp-4.8. Preparing to unpack .../cpp-4.8_4.8.2-19ubuntu1_amd64.deb ... Unpacking cpp-4.8 (4.8.2-19ubuntu1) ... Selecting previously unselected package cpp. Preparing to unpack .../cpp_4%3a4.8.2-1ubuntu6_amd64.deb ... Unpacking cpp (4:4.8.2-1ubuntu6) ... Selecting previously unselected package libgcc-4.8-dev:amd64. Preparing to unpack .../libgcc-4.8-dev_4.8.2-19ubuntu1_amd64.deb ... Unpacking libgcc-4.8-dev:amd64 (4.8.2-19ubuntu1) ... Selecting previously unselected package gcc-4.8. Preparing to unpack .../gcc-4.8_4.8.2-19ubuntu1_amd64.deb ... Unpacking gcc-4.8 (4.8.2-19ubuntu1) ... Selecting previously unselected package gcc. Preparing to unpack .../gcc_4%3a4.8.2-1ubuntu6_amd64.deb ... Unpacking gcc (4:4.8.2-1ubuntu6) ... Selecting previously unselected package libstdc++-4.8-dev:amd64. Preparing to unpack .../libstdc++-4.8-dev_4.8.2-19ubuntu1_amd64.deb ... Unpacking libstdc++-4.8-dev:amd64 (4.8.2-19ubuntu1) ... Selecting previously unselected package g++-4.8. Preparing to unpack .../g++-4.8_4.8.2-19ubuntu1_amd64.deb ... Unpacking g++-4.8 (4.8.2-19ubuntu1) ... Selecting previously unselected package g++. Preparing to unpack .../g++_4%3a4.8.2-1ubuntu6_amd64.deb ... Unpacking g++ (4:4.8.2-1ubuntu6) ... Selecting previously unselected package make. Preparing to unpack .../make_3.81-8.2ubuntu3_amd64.deb ... Unpacking make (3.81-8.2ubuntu3) ... Selecting previously unselected package libdpkg-perl. Preparing to unpack .../libdpkg-perl_1.17.5ubuntu5.3_all.deb ... Unpacking libdpkg-perl (1.17.5ubuntu5.3) ... Selecting previously unselected package dpkg-dev. Preparing to unpack .../dpkg-dev_1.17.5ubuntu5.3_all.deb ... Unpacking dpkg-dev (1.17.5ubuntu5.3) ... Selecting previously unselected package build-essential. Preparing to unpack .../build-essential_11.6ubuntu6_amd64.deb ... Unpacking build-essential (11.6ubuntu6) ... Selecting previously unselected package libfakeroot:amd64. Preparing to unpack .../libfakeroot_1.20-3ubuntu2_amd64.deb ... Unpacking libfakeroot:amd64 (1.20-3ubuntu2) ... Selecting previously unselected package fakeroot. Preparing to unpack .../fakeroot_1.20-3ubuntu2_amd64.deb ... Unpacking fakeroot (1.20-3ubuntu2) ... Selecting previously unselected package liberror-perl. Preparing to unpack .../liberror-perl_0.17-1.1_all.deb ... Unpacking liberror-perl (0.17-1.1) ... Selecting previously unselected package git-man. Preparing to unpack .../git-man_1%3a1.9.1-1_all.deb ... Unpacking git-man (1:1.9.1-1) ... Selecting previously unselected package git. Preparing to unpack .../git_1%3a1.9.1-1_amd64.deb ... Unpacking git (1:1.9.1-1) ... Selecting previously unselected package git-core. Preparing to unpack .../git-core_1%3a1.9.1-1_all.deb ... Unpacking git-core (1:1.9.1-1) ... Selecting previously unselected package libalgorithm-diff-perl. Preparing to unpack .../libalgorithm-diff-perl_1.19.02-3_all.deb ... Unpacking libalgorithm-diff-perl (1.19.02-3) ... Selecting previously unselected package libalgorithm-diff-xs-perl. Preparing to unpack .../libalgorithm-diff-xs-perl_0.04-2build4_amd64.deb ... Unpacking libalgorithm-diff-xs-perl (0.04-2build4) ... Selecting previously unselected package libalgorithm-merge-perl. Preparing to unpack .../libalgorithm-merge-perl_0.08-2_all.deb ... Unpacking libalgorithm-merge-perl (0.08-2) ... Selecting previously unselected package libfile-fcntllock-perl. Preparing to unpack .../libfile-fcntllock-perl_0.14-2build1_amd64.deb ... Unpacking libfile-fcntllock-perl (0.14-2build1) ... Selecting previously unselected package manpages-dev. Preparing to unpack .../manpages-dev_3.54-1ubuntu1_all.deb ... Unpacking manpages-dev (3.54-1ubuntu1) ... Selecting previously unselected package python-software-properties. Preparing to unpack .../python-software-properties_0.92.37.1_all.deb ... Unpacking python-software-properties (0.92.37.1) ... Selecting previously unselected package unzip. Preparing to unpack .../unzip_6.0-9ubuntu1_amd64.deb ... Unpacking unzip (6.0-9ubuntu1) ... Processing triggers for man-db (2.6.7.1-1) ... Processing triggers for mime-support (3.54ubuntu1) ... Setting up libasan0:amd64 (4.8.2-19ubuntu1) ... Setting up libatomic1:amd64 (4.8.2-19ubuntu1) ... Setting up libgmp10:amd64 (2:5.1.3+dfsg-1ubuntu1) ... Setting up libisl10:amd64 (0.12.2-1) ... Setting up libcloog-isl4:amd64 (0.18.2-1) ... Setting up libgomp1:amd64 (4.8.2-19ubuntu1) ... Setting up libitm1:amd64 (4.8.2-19ubuntu1) ... Setting up libmpfr4:amd64 (3.1.2-1) ... Setting up libquadmath0:amd64 (4.8.2-19ubuntu1) ... Setting up libtsan0:amd64 (4.8.2-19ubuntu1) ... Setting up libmpc3:amd64 (1.0.1-1ubuntu1) ... Setting up binutils (2.24-5ubuntu3) ... Setting up libc-dev-bin (2.19-0ubuntu6.1) ... Setting up linux-libc-dev:amd64 (3.13.0-32.57) ... Setting up libc6-dev:amd64 (2.19-0ubuntu6.1) ... Setting up cpp-4.8 (4.8.2-19ubuntu1) ... Setting up cpp (4:4.8.2-1ubuntu6) ... Setting up libgcc-4.8-dev:amd64 (4.8.2-19ubuntu1) ... Setting up gcc-4.8 (4.8.2-19ubuntu1) ... Setting up gcc (4:4.8.2-1ubuntu6) ... Setting up libstdc++-4.8-dev:amd64 (4.8.2-19ubuntu1) ... Setting up g++-4.8 (4.8.2-19ubuntu1) ... Setting up g++ (4:4.8.2-1ubuntu6) ... update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode Setting up make (3.81-8.2ubuntu3) ... Setting up libdpkg-perl (1.17.5ubuntu5.3) ... Setting up dpkg-dev (1.17.5ubuntu5.3) ... Setting up build-essential (11.6ubuntu6) ... Setting up libfakeroot:amd64 (1.20-3ubuntu2) ... Setting up fakeroot (1.20-3ubuntu2) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode Setting up liberror-perl (0.17-1.1) ... Setting up git-man (1:1.9.1-1) ... Setting up git (1:1.9.1-1) ... Setting up git-core (1:1.9.1-1) ... Setting up libalgorithm-diff-perl (1.19.02-3) ... Setting up libalgorithm-diff-xs-perl (0.04-2build4) ... Setting up libalgorithm-merge-perl (0.08-2) ... Setting up libfile-fcntllock-perl (0.14-2build1) ... Setting up manpages-dev (3.54-1ubuntu1) ... Setting up python-software-properties (0.92.37.1) ... Setting up unzip (6.0-9ubuntu1) ... Processing triggers for libc-bin (2.19-0ubuntu6.1) ... root@ip-172-31-24-201:~#
From en wiki: https://en.wikipedia.org/wiki/Un_banc,_un_arbre,_une_rue
「The song is a classic French ballad, with the lyrics focusing on the loss of childhood innocence, and people following their dreams. The opening lines to the chorus translate as “We all have a bench, a tree, a street/Where we cherished our dreams/A childhood that has been too short”.」
There is also an English version for her song:
https://www.youtube.com/watch?v=CswVUR7OD0I
The more familiar arrangement to us by Paul Mauriat:
https://www.youtube.com/watch?v=zEJLjk5rn64
Childhood is really short. Extend it towards your end of life. ;-)
陷入了很深的夢境裡。時間好像回到了將軍澳線未通車時,回家要在藍田轉村巴的日子。在藍田站出站後,周圍有很多不怕人的野鳥。然後在快到轉車的巴士站之前,有兩隻比一般鴿子高很多,到我的腰左右的大鳥在我身邊大便,怎麼推、怎麼趕也不肯走。還好不是拉了很多。之後我跳了到巴士站。然後就醒了。
解讀:
大鳥:帶來麻煩的人,但也會為你帶來少量額外的回報。

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
My little finger hurt by a box of french fries.
我是歌手
不知是因為轉天氣還是因為濕度太高,不單同事們都提不起勁,就連客人也變得慵懶,晚間
An explosion followed by a fire at a pair of apartment buildings in upper Manhattan on Wednesday has left two people dead and at least 22 injured, officials say.
想由藍田的地鐵站轉坐巴士,結果……
唔通, 唔通真係要等沙中線通車,由鑽石山經紅磡坐到落屯門?

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
爛gag一個
剛剛在列車上聽小朋友講的爛gag:梁振英、唐英年、梁愛詩三個人跌了落水?邊個人會獲救?另一個小朋友即係答:唐英年? 你們知道答案嗎?
autoremove kontents gut 2014-02-05
root:~# apt-get autoremove 正在讀取套件清單… 完成 正在重建相依關係 正在讀取狀態資料… 完成 下列套件將會被【移除】: gir1.2-indicate-0.7 gnome-games-data libanthy0 libapt-inst1.4 libcdt4 libexiv2-11 libglewmx1.6 libgmlib0 libgmtk0 libgmtk0-data libgraph4 libgsoap1 libgvc5 liblaunchpad-integration1.0-cil libmagickcore4 libmagickcore4-extra libmagickwand4 libmjpegtools-1.9 libpathplan4 libquicktime2 libx264-120 mysql-client openjdk-7-jre-lib python-libproxy ttf-liberation wwwconfig-common 升級 0 個,新安裝 0 個,移除 26 個,有 0 個未被升級。 此操作完成之後,會空出 18.9 MB 的磁碟空間。 是否繼續進行 [Y/n]?y (讀取資料庫 … 目前共安裝了 548750 個檔案和目錄。) 移除 gir1.2-indicate-0.7 … 移除 gnome-games-data … 移除 libanthy0:amd64 … 移除 libapt-inst1.4:amd64 … 移除 libmagickcore4-extra … 移除 libgvc5 … 移除 libgraph4 … 移除 libcdt4 … 移除 libexiv2-11 … 移除 libglewmx1.6:amd64 … 移除 libgmtk0:amd64 … 移除 libgmlib0:amd64 … 移除 libgmtk0-data … 移除 libgsoap1 … 移除 liblaunchpad-integration1.0-cil … Removing liblaunchpad-integration1.0-cil from Mono 移除 libmagickwand4 … 移除 libmagickcore4 … 移除 libmjpegtools-1.9 … 移除 libpathplan4 … 移除 libquicktime2:amd64 … 移除 libx264-120:amd64 … 移除 mysql-client … 移除 openjdk-7-jre-lib … 移除 python-libproxy … 移除 ttf-liberation … 移除 wwwconfig-common … 執行 libglib2.0-0:i386 的觸發程式 … 執行 libglib2.0-0:amd64 的觸發程式 … 執行 libc-bin 的觸發程式 … 執行 man-db 的觸發程式 … 執行 fontconfig 的觸發程式 … root:~#