- removeNHIICC.sh : 移除健保卡元件與相關設定,須以 root (
sudo
) 權限執行。 - postinstall.sh : 官方「MAC 元件移除安裝檔」的 script 內容(2020)
j
= JCB, m
= Mastercard, v
= VISA
銀行 | Apple Pay | Google Pay | Samsung Pay | Garmin Pay | Fitbit Pay |
---|---|---|---|---|---|
國泰世華 | mv | mv | mv | mv | mv |
中國信託 | jmv | mv | mv | mv | mv |
台新銀行 | mv | mv | mv | mv | mv |
聯邦銀行 | jmv | mv | mv | mv | mv |
玉山銀行 | jmv | mv | mv | mv | mv |
台北富邦 | mv | mv | mv | mv | mv |
This notes is written by Sheldon. You can find me with #iOSBySheldon in Github, Youtube, Facebook, etc.
Convert .mov/.MP4 to .gif
As a developer, I feel better to upload a short video when I create the pull request to show other viewers what I did in this PR. I tried .mov format directly got after finishing recording screen using Quicktime, however, gif offers preview in most web pages, and has smaller file size.
This is not limited to developer, anyone has this need can use this method to convert the files.
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 pogobuf from 'pogobuf'; | |
import POGOProtos from 'node-pogo-protos'; | |
import chalk from 'chalk'; | |
const USERNAME = '__YOUR_USERNAME__'; | |
const PASSWORD = '__YOUR_PASSWORD__'; | |
// 捷運西門站6號出口 | |
const LAT = 25.0432504; | |
const LNG = 121.5081401; |
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
// ==UserScript== | |
// @name YMAC = (Y)ahoo (M)ail (A)d (C)leaner | |
// @description Remove ads in Yahoo Mail | |
// @version 1.26 | |
// @date 30.11.2015 | |
// @author Eric Fehrenbacher | |
// @grant metadata | |
// @updateUrl https://gist.github.com/oxchronxo/c8865a58dc297980fcf7/raw/ymac.user.js | |
// @downloadUrl https://gist.github.com/oxchronxo/c8865a58dc297980fcf7/raw/ymac.user.js | |
// @include http://*.mail.yahoo-inc.com/* |
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
#!/usr/bin/env python3 | |
import simplekml | |
import urllib.request | |
try: | |
import simplejson as json | |
except ImportError: | |
import json | |
fr24_flight_code = "" |
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
// Given a query string "?to=email&why=because&first=John&Last=smith" | |
// getUrlVar("to") will return "email" | |
// getUrlVar("last") will return "smith" | |
// Slightly more concise and improved version based on http://www.jquery4u.com/snippets/url-parameters-jquery/ | |
function getUrlVar(key){ | |
var result = new RegExp(key + "=([^&]*)", "i").exec(window.location.search); | |
return result && unescape(result[1]) || ""; | |
} |
NewerOlder