【明報專訊】第一次接到電話,希望我談談「中國夢」的時候,我的第一個反應是:「一千枚飛彈對準我家,我哪裏還有中國夢啊?」
可是沉靜下來思索,1952年生在台灣的我,還有我前後幾代人,還真的是在「中國夢」裏長大的,我的第一個中國夢是什麼呢?
我們上幼稚園時,就已經穿著軍人的制服、帶著木製的步槍去殺「共匪」了,口裏唱著歌。當年所有的孩子都會唱的那首歌,叫做《反攻大陸去》:
反攻 反攻 反攻大陸去
| /** | |
| * Copyright 2011 wong2 <wonderfuly@gmail.com> | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | |
| * | |
| * This program is distributed in the hope that it will be useful, | |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import os | |
| from commands import getstatusoutput, getoutput | |
| WIFI_IF = "en0" | |
| class Wifi(object): |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 Jed Schmidt <http://jed.is> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
| package main | |
| import ( | |
| "crypto/tls" | |
| "net" | |
| "net/http" | |
| "time" | |
| "fmt" | |
| "errors" | |
| ) |
| #!/bin/sh | |
| # Author: RA <ravageralpha@gmail.com> | |
| USAGE(){ | |
| echo "Usage:$(basename $0) [eng] files..." | |
| } | |
| [ $# -eq 0 ] && USAGE && exit 0 | |
| ERROR(){ |
| ... | |
| #import "RCTLog.h" | |
| ... | |
| - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions | |
| { | |
| RCTSetLogThreshold(RCTLogLevelInfo); | |
| ... |
| Haskell is cool! | |
| Here are some reasons why. | |
| (This is a Literate Haskell file, so you can load it and then follow | |
| along with the examples by running `ghci whyhaskelliscool.lhs`) | |
| "Pattern matching" syntax for defining functions is cool, letting you | |
| avoid 'if' statements and simply write out the different behaviors of | |
| a function: |
| #!/usr/bin/env elixir | |
| defmodule Committer do | |
| defstruct [:name, :email] | |
| def list(repo) do | |
| repo | |
| |> from_repo | |
| |> Stream.unfold(fn str -> | |
| case String.split(str, "\n", parts: 2, trim: true) do |
| 'use strict'; | |
| var React = require('react-native'); | |
| var { | |
| Bundler, | |
| StyleSheet, | |
| Text, | |
| TouchableHighlight, | |
| View, | |
| ScrollView, |