- removeNHIICC.sh : 移除健保卡元件與相關設定,須以 root (
sudo) 權限執行。 - postinstall.sh : 官方「MAC 元件移除安裝檔」的 script 內容(2020)
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
| git_protocol: ssh | |
| aliases: | |
| personal: '!cp ~/.config/gh/hosts.yml.personal ~/.config/gh/hosts.yml && gh auth status' | |
| work: '!cp ~/.config/gh/hosts.yml.work ~/.config/gh/hosts.yml && gh auth status' |
!!! For M1/M2 apple silicon see this comment:
For MacOS | Mojave | High Sierra
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
| Create file config/initializers/rails_admin_pg_arrays.rb | |
| Include this code | |
| class RailsAdminPgArray < RailsAdmin::Config::Fields::Base | |
| register_instance_option :formatted_value do | |
| unless value.blank? | |
| value.join(',') | |
| end | |
| end |
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 ruby | |
| require 'pg' | |
| =begin | |
| when creating a postgres db replica in RDS, or restoring from a snapshot, the | |
| underlying EBS volume of the new instance must be initialized by reading every | |
| block, otherwise the blocks will be lazy-initialized by production queries | |
| which will be extremely latent. (i've seen normally 50ms queries take 30s in |
I was implementing https://layer.com/ on https://zeemee.com and they require https for the callbacks. Since this was new to me and took me a while here's a how to if anyone is looking.
You already have a rails app running on localhost:3000
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
| language: ruby | |
| rvm: | |
| - 2.0.0 | |
| env: | |
| global: | |
| - USER="username" | |
| - EMAIL="username@mail.com" | |
| - REPO="name of target repo" | |
| - FILES="README.md foo.txt bar.txt" | |
| - GH_REPO="github.com/${USER}/${REPO}.git" |
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
| require "net/http" | |
| def start_server | |
| # Remove the X to enable the parameters for tuning. | |
| # These are the default values as of Ruby 2.2.0. | |
| @child = spawn(<<-EOC.split.join(" ")) | |
| XRUBY_GC_HEAP_FREE_SLOTS=4096 | |
| XRUBY_GC_HEAP_INIT_SLOTS=10000 | |
| XRUBY_GC_HEAP_GROWTH_FACTOR=1.8 | |
| XRUBY_GC_HEAP_GROWTH_MAX_SLOTS=0 |
NewerOlder