Skip to content

Instantly share code, notes, and snippets.

View tzengyuxio's full-sized avatar

Tzeng Yuxio tzengyuxio

View GitHub Profile
@tzengyuxio
tzengyuxio / MacInstall.md
Created March 22, 2019 16:59
Install Note (Mac Mini 2018, 冬至)

終端機

  • Hack Regular 16 點
  • [v] 柔邊處理文字
  • 使用粗體
  • [v] 閃爍游標

Homebrew

Homebrew

@tzengyuxio
tzengyuxio / tuili.py
Created May 30, 2019 16:39
2018 年刑偵科推理試題
#!/usr/bin/env python3
# 題目: https://imgur.com/a/WvVHKUO
import string
base = 4
digs = string.digits + string.ascii_letters
N = 4 ** 10
@tzengyuxio
tzengyuxio / gist:4284108
Created December 14, 2012 09:44
Fetch IMDb Top 250 into CSV file.
#!/usr/bin/python
# -*- coding: utf-8 -*-
import urllib2
import HTMLParser
import csv
import datetime
import codecs, cStringIO # for UnicodeWriter
response = urllib2.urlopen('http://www.imdb.com/chart/top')