Skip to content

Instantly share code, notes, and snippets.

View virus-warnning's full-sized avatar

Raymond Wu virus-warnning

  • Taiwan
View GitHub Profile
@virus-warnning
virus-warnning / detect_unlock.py
Last active December 28, 2018 09:51
檢查 MacOS 有沒有發生解除鎖定事件
'''
log show --style syslog \
--start "2018-12-26 18:00:00" \
--predicate 'process == "loginwindow"' \
| grep 'unlock'
'''
import os
import time
import datetime
@virus-warnning
virus-warnning / async_pdca.py
Last active December 21, 2018 17:05
用管理學的 PDCA 循環理解 Python 3.7 的非同步處理
import random
import asyncio
class PDCACycle:
def __init__(self):
self.bad_mood = 0
self.interval = 1
async def plan(self, name):
@virus-warnning
virus-warnning / burial_tw.svg
Last active April 7, 2016 09:13
台灣殯葬方式流程圖
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@virus-warnning
virus-warnning / update_osm.py
Last active April 25, 2018 10:50
台灣圖資自動更新程式
# coding: utf-8
#
# 台灣 OSM 圖資自動更新程式,會自動檢查更新,有更新時下載,並且匯入到 PostGIS
#
# 系統需求:
# * wget
# * osm2pgsql 並且內含 PBF 圖資格式支援
#
# 測試環境:
# * Ubuntu 14.04.1 LTS