銀行/支付系統 | Apple Pay | Google Pay | Samsung Pay | Garmin Pay | Fitbit Pay | 支援家數 | |
---|---|---|---|---|---|---|---|
國泰世華銀行 | ✅ | ✅ | ✅ | ✅ | ✅ | 5 | |
國泰世華銀行 - 金融卡 | ✅ | ✅ | ✅ | ✅ | ✅ | 5 | |
中國信託銀行 | ✅ | ✅ | ✅ | ✅ | ✅ | 5 | |
中國信託銀行 - 金融卡 | ✅ | ✅ | ✅ | 3 | |||
台新國際商業銀行 | ✅ | ✅ | ✅ | ✅ | ✅ | 5 | |
台新國際商業銀行 - 金融卡 | ✅ | ✅ | ✅ | ✅ | ✅ | 5 | |
聯邦銀行 | ✅ | ✅ | ✅ | ✅ | ✅ | 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Pre-requisite: You have to know your last commit message from your deleted branch. | |
git reflog | |
# Search for message in the list | |
# a901eda HEAD@{18}: commit: <last commit message> | |
# Now you have two options, either checkout revision or HEAD | |
git checkout a901eda | |
# Or | |
git checkout HEAD@{18} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filters: | |
- enabled: true | |
url: https://adguardteam.github.io/AdGuardSDNSFilter/Filters/filter.txt | |
name: AdGuard DNS filter | |
id: 1 | |
- enabled: true | |
url: https://adaway.org/hosts.txt | |
name: AdAway | |
id: 2 | |
- enabled: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
hdiutil create -o /tmp/Mojave.cdr -size 8g -layout SPUD -fs HFS+J | |
hdiutil attach /tmp/Mojave.cdr.dmg -noverify -mountpoint /Volumes/install_build | |
sudo /Applications/Install\ macOS\ Mojave.app/Contents/Resources/createinstallmedia --volume /Volumes/install_build | |
mv /tmp/Mojave.cdr.dmg ~/Desktop/InstallSystem.dmg | |
hdiutil detach /Volumes/Install\ macOS\ Mojave | |
hdiutil convert ~/Desktop/InstallSystem.dmg -format UDTO -o ~/Desktop/Mojave.iso | |
mv ~/Desktop/Mojave.iso.cdr ~/Desktop/Mojave.iso |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########## | |
# Win10 Initial Setup Script | |
# Author: Disassembler <[email protected]> | |
# Version: 1.7, 2016-08-15 | |
# dasm's script: https://github.com/Disassembler0/Win10-Initial-Setup-Script/ | |
# THIS IS A PERSONALIZED VERSION | |
# This script leaves more MS defaults on, including MS security features. | |
# Tweaked based on personal preferences for @alirobe 2016-11-16 - v1.7.1 |