I hereby claim:
- I am dwchiang on github.
- I am dwchiang (https://keybase.io/dwchiang) on keybase.
- I have a public key ASD6R8hjDFzXprj4rymXgWhPMwh4sEHbrOqhKwy3EqDKHgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| .PHONY: help l10n-extract-to-arb l10n-generate-from-arb | |
| help: | |
| @ echo 'Available commands:' | |
| @ echo | |
| @ echo ' l10n-extract-to-arb : Extract app_localizations.dart into intl_messages.arb' | |
| @ echo ' Duplicate content of intl_messages.arb into intl_xx.arb' | |
| @ echo ' l10n-generate-from-arb : Generate messages_*.dart files from intl_*.arb' | |
| @ echo | |
| @ echo |
| #! /usr/bin/env bash | |
| # Link https://l10n.etherpad.mozilla.org/gaia-multilocale | |
| localecode="zh-TW" | |
| branch="v1.3" | |
| # This line force reads $PATH from .profile on OS X | |
| # Ref: http://www.tech-recipes.com/rx/2621/os_x_change_path_environment_variable/ | |
| cd ~ | |
| . ./.profile echo $PATH |
| # The next line updates PATH for the Google Cloud SDK. | |
| source /Users/dwchiang/google-cloud-sdk/path.zsh.inc | |
| # The next line enables zsh completion for gcloud. | |
| source /Users/dwchiang/google-cloud-sdk/completion.zsh.inc |
| #! /usr/bin/env bash | |
| # Link https://l10n.etherpad.mozilla.org/gaia-multilocale | |
| localecode="zh-TW" | |
| branch="master" | |
| # This line force reads $PATH from .profile on OS X | |
| # Ref: http://www.tech-recipes.com/rx/2621/os_x_change_path_environment_variable/ | |
| cd ~ | |
| . ./.profile echo $PATH |
| #! /usr/bin/env bash | |
| # Link https://etherpad.mozilla.org/fxos-zhtw-1-2-qatest | |
| localecode="zh-TW" | |
| branch="v1.2" | |
| branch_u="v1_2" | |
| # Get Gaia | |
| mkdir ~/b2g | |
| cd ~/b2g |
| #!/bin/bash | |
| filename_instance_info="instance_info.txt" | |
| profile_list="profile_list" | |
| for profile_name in $(cat $profile_list) | |
| do | |
| export AWS_DEFAULT_PROFILE=$profile_name | |
| # Get running instances | |
| aws ec2 describe-instances --filters Name=instance-state-name,Values=running > $filename_instance_info |