Skip to content

Instantly share code, notes, and snippets.

View cszichao's full-sized avatar
🎯
Focusing

Zichao Li cszichao

🎯
Focusing
  • Tsingtao
View GitHub Profile
@cszichao
cszichao / ubuntu-synology.md
Last active February 11, 2020 06:59
join Ubuntu 18.0.4 Server into Synology AD

Install AD & CIFS related packages

apt-get install adcli chrony cifs-utils krb5-user libnss-sss libpam-sss \
  packagekit realmd samba samba-common-bin sssd sssd-tools

make sure you have set your DNS correctly, search for a AD example.com

@cszichao
cszichao / google-translate-har-parser.py
Last active September 10, 2018 07:25
parsing google translation translation har results ugly in python
import json
import codecs
with open('translate.google.com.har') as f:
data = json.load(f)
for d in data['log']['entries']:
url=d['request']['url']
if "single" in url:
if 'text' in d['response']['content']: