Skip to content

Instantly share code, notes, and snippets.

View seognil's full-sized avatar
👟
You can always get another job, but will never get your time back.

Chris Lin seognil

👟
You can always get another job, but will never get your time back.
View GitHub Profile
@seognil
seognil / fix-google-translate-cn.bat
Created November 9, 2022 12:58 — forked from bookfere/fix-google-translate-cn.bat
Fix Google Translate CN for Windows
:: Copyright (c)2022 https://bookfere.com
:: This is a batch script for fixing Google Translate and making it available
:: in the Chinese mainland. If you experience any problem, visit the page below:
:: https://bookfere.com/post/1020.html
@echo off
setlocal enabledelayedexpansion
chcp 437 >NUL
set "ips[0]=74.125.137.90"
@seognil
seognil / fix-google-translate-cn.sh
Created November 9, 2022 12:58 — forked from bookfere/fix-google-translate-cn.sh
Fix Google Translate CN for macOS
#!/bin/bash
# Copyright (c)2022 https://bookfere.com
# This is a batch script for fixing Google Translate and making it available
# in the Chinese mainland. If you experience any problem, visit the page below:
# https://bookfere.com/post/1020.html
set -e
IPS=(
74.125.137.90