Skip to content

Instantly share code, notes, and snippets.

@fntsrlike
fntsrlike / Alpha_World_Mannual.md
Created January 31, 2014 09:28
Alpha_World_Mannual

雪漂時代(SF TIME)創刊號:新世界說明刊

  • 雪漂時代(Snow-Float TIME)
  • 001期,2014年02月
  • 2014創刊,不定期發刊
  • 發行人:Sntc06
  • 總編輯:Fntsrswl
  • 副總編輯:David50407

本刊尚未全部完成,會陸續更新

Recommend Mac SoftWare

粗體為現在有安裝的軟體,一般則為已移除或是未安裝的軟體。

System

  • Alfred 2 - 熱鍵、Spotlight
  • coconutBattery - 電池記錄
  • iTerm - 比Terminal更好用的Console
  • Keka - 解壓縮軟體
  • TeamViewer - 遠端控制。
@fntsrlike
fntsrlike / how_to_get_variable_name.php
Last active December 23, 2015 00:59
This is a code snippet of PHP about how to get the variable name.
<?php
// ref: http://mach13.com/how-to-get-a-variable-name-as-a-string-in-php
$var = "hello, taiwan";
$name = var_name($var, get_defined_vars());
$val = $var;
echo $name; // var
echo $val; // hello, taiwan