Skip to content

Instantly share code, notes, and snippets.

View HsuChiChen's full-sized avatar
:atom:

HsuChiChen HsuChiChen

:atom:
View GitHub Profile
@timcsy
timcsy / imgur.py
Last active May 7, 2024 09:09
備份 HackMD 上面之前上傳到 imgur 的圖片。請到 HackMD 的設定頁面把所有的筆記下載下來,放在 Notes 資料夾裡面,然後把這個 imgur.py 檔放在外面,執行 python imgur.py 之後就可以備份囉!備份後的圖將存到 imgur 資料夾
import os
from glob import glob
import re
import urllib.request
paths = glob('Notes/*.md')
results = []
for path in paths:
with open(path, 'r', encoding='UTF-8') as fin:
data = fin.read()
@bagheriali2001
bagheriali2001 / systemc_v2.3.3_installation_guide.md
Last active March 16, 2024 23:56
How to Install SystemC in Linux (Ubuntu, Debian, ...)