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
| #if UNITY_2020 && UNITY_ANDROID | |
| using System; | |
| using System.IO; | |
| using UnityEditor; | |
| using UnityEditor.Android; | |
| namespace Unity2020DebugSymbolExtracter | |
| { | |
| class PostGenerateGradleProcessor : IPostGenerateGradleAndroidProject |
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
| function FindProxyForURL(url, host) { | |
| return "SOCKS localhost:3118"; | |
| } |
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
| // | |
| // trelloの情報をgoogleSpreadSheetに書き込むサンプル | |
| // ここでは ボードメンバーの名前とuserId, 指定したlistIDからカード名を書き込む | |
| // | |
| // author: tkaria | |
| // | |
| // Help: | |
| // step1: apikeyとtokenの取得 | |
| // 以下ページを参考に「apikey」と「token」をメモしておく | |
| // (https://qiita.com/isseium/items/8eebac5b79ff6ed1a180) |
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/sh | |
| ARGS=${@}; | |
| ARG_NUMBER=${#}; | |
| SCRIPT_DIR=$(cd $(dirname $ 0); pwd) | |
| CALLBACK_DIR=$(cd ./; pwd) | |
| # local member. | |
| SQLDUMP_CMD="sudo mysqldump -uope-ro --complete-insert -t " | |
| SCHEME_NAME=${1} | |
| TABLE_NAME=${2} |