Skip to content

Instantly share code, notes, and snippets.

View taichunmin's full-sized avatar

戴均民 taichunmin

View GitHub Profile
@taichunmin
taichunmin / download_gitlab_archive.py
Created February 9, 2015 02:32
download gitlab archive
#!/bin/env python3
import urllib, shutil, json, sys
import urllib.request
import urllib.parse
def dl_gitlab_archive(url, private_token, out_filename):
try:
fields = urllib.parse.urlencode({
'private_token': private_token
@taichunmin
taichunmin / nchueecsec_acm_study_1.md
Last active August 29, 2015 14:17
興大 ACM 讀書會 第一次

興大 ACM 讀書會 第一次

時間:2015/03/16 19:00

出缺席名單 (18 人)

  • 周彤
  • 張培堯
  • 張泰瑋
  • 戴均民
@taichunmin
taichunmin / nchueecsec_links.md
Last active August 29, 2015 14:17
nchueecsec 課程連結 103 下學期

在 Windows 用 Vagrant 快速建立你的 Linux 環境

Vagrant 是啥?

Vagrant 幫助你秒建虛擬機,甚至幫你安裝軟體到這個虛擬機,讓你躺著獲得測試環境

為何要用虛擬機

這樣一來,

h1

h2

h3

h4

h5
@taichunmin
taichunmin / terra battle.md
Last active August 29, 2015 14:20
terra battle

組隊懶人包 20150504 by Novone

中文化組隊懶人包,Z角不特別做,直接給萬用評價(只是會練到死)。核心角加粗顯示
藍色:劍隊
綠色:弓隊
橙色:槍隊
紅色:萬用角,幾乎可以跟任何隊組
粉色:輔助,放越多隊伍輸出越弱
廢:就是廢角,提高遊戲難度用 ,高(ㄅㄞˊ)手(ㄔ)才會練

@taichunmin
taichunmin / facebook-api-c-sharp.md
Created May 5, 2015 07:43
FACEBOOK PLUGIN API 使用說明
@taichunmin
taichunmin / 20150915_青境.md
Last active September 15, 2015 01:31
總太青境社區雲管家 APP

總太青境社區雲管家 APP

幸福隨手可得,便利就在指尖。

立即啟用社區雲管家 APP,馬上享受智慧社區生活。

手機用戶

  1. 開啟以下連結安裝 APP
<?php
if(!function_exists('encode_json')) {
function encode_json( $var ) {
static $options = null;
if (is_null($options)) {
$options = 0;
if (version_compare(PHP_VERSION, '5.3.3') >= 0)
$options |= JSON_NUMERIC_CHECK;
if (version_compare(PHP_VERSION, '5.4.0') >= 0)
@taichunmin
taichunmin / regex_rename.php
Created May 8, 2016 11:45
在 Windows 系統上使用 regex 重新命名檔案
<?php
try {
$files = scandir('.');
if(!is_array($files))
throw new Exception('scandir error: '.var_export($files, true));
foreach($files as &$file)
$file = iconv('cp950', 'utf-8//TRANSLIT', $file);
unset($file);
echo "Find What: ";