This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:4A7D8229FE90F880C63EA031DC8074A611851669]
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:4A7D8229FE90F880C63EA031DC8074A611851669]
I hereby claim:
To claim this, I am signing this object:
x11vnc
をインストールしておくAndroid でコマンドラインからテストをしたい向きのためのメモ
executeTest.sh
# ./app 配下の js ファイルを対象にする場合 | |
# 並べ換えや、ピックアップすることで不要な情報量はカットする | |
find ./app -name "*.js" | xargs wc -l | sort -r | head -n 10 |
package com.example.minamo.permissiontest; | |
import android.Manifest; | |
import android.content.Context; | |
import android.content.pm.PackageManager; | |
import android.support.v4.app.ActivityCompat; | |
import android.support.v4.content.ContextCompat; | |
import android.support.v7.app.AlertDialog; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; |
#!/bin/bash | |
# ------------------------------------------------------------------------------ | |
# Mac OSX におけるコマンドラインからの時刻調整 | |
# | |
# * sudo してから行うこと | |
# ------------------------------------------------------------------------------ | |
date -r "$(wget -q https://ntp-a1.nict.go.jp/cgi-bin/jst -O - | sed -n 4p | cut -d. -f1)" +%m%d%H%M%y | xargs date |