銀行/支付系統 | Apple Pay | Google Pay | Samsung Pay | Garmin Pay | Fitbit Pay | 台灣行動支付 | Hami Pay | 支援家數 | |
---|---|---|---|---|---|---|---|---|---|
國泰世華銀行 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | 6 | ||
國泰世華銀行 - 金融卡 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | 6 | ||
中國信託銀行 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | 7 | |
中國信託銀行 - 金融卡 | ✅ | ✅ | ✅ | ✅ | 4 | ||||
台新國際商業銀行 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | 7 | |
台新國際商業銀行 - 金融卡 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | 6 | ||
聯邦銀行 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | 6 |
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
#include<iostream> | |
#include<math.h> | |
using namespace std; | |
int main(){ | |
cout << "How many product are you going to buy in RT-Mart?"; | |
int product; | |
cin >> product; | |
int p[product]; | |
for(int t = 0 ; t < product ; t++){ | |
cout << "What is the NO." << t + 1 << " product price?"; |
You may want to use AdGuard's DNS over HTTPS[^2] service if you
- Want to make it harder for your ISP to know what websites you are requesting (DoH part)
- Want to block most traditional ads from your web browsing experience across your entire PC (AdGuard DNS part)
- Want to block some malicious site and malware. (AdGuard DNS part)
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
import random | |
import requests | |
from bs4 import BeautifulSoup | |
import webbrowser | |
def get_random_mid(): | |
# Generate a random number under 2000000 | |
# 1107787 is the biggest known entry | |
return random.randint(0, 2000000) |
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
import rotatescreen # pip install rotate-screen | |
# ANSI escape code | |
class terco: | |
BL = '\033[0m' # Black | |
RD = '\033[91m' # Bright Red | |
BM = '\033[95m' # Bright Magenta | |
def print_displays_info(displays): | |
print(f'There are {terco.RD}{len(displays)}{terco.BL} available displays:') |
OlderNewer