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/bash | |
echo -n "Enter version number: " | |
read nginxv | |
# ngx_brotliの更新 | |
cd ~/nginx-build/ngx_brotli/ | |
git pull | |
if [ $? -eq 0 ]; then |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<manifest> | |
<remote name="sony" fetch="git://github.com/sonyxperiadev/" /> | |
<remote name="androplus" fetch="git://github.com/AndroPlus-org/" /> | |
<remote name="omnirom" fetch="git://github.com/omnirom/" /> | |
<remove-project name="device/generic/mips"/> | |
<remove-project name="device/generic/mini-emulator-mips"/> | |
<remove-project name="device/generic/mini-emulator-arm64"/> |
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 | |
# 例ではディレクトリ名に「dora」を含むものだけを表示している | |
# 複数一致しても最初のディレクトリのIDしか返せないゴミスクリプト | |
gfolderlist=`gdrive list --max 1 --name-width 0 --query "trashed = false and 'me' in owners and 'root' in parents and mimeType = 'application/vnd.google-apps.folder' and name contains 'dora'"` | |
gfoldernames=`echo ${gfolderlist} | sed "s@Id Name Type Size Created \([a-zA-Z0-9]*\).*@\1@"` | |
echo ${gfoldernames} |
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
https://github.com/AICP/frameworks_base/blob/n7.1/packages/SystemUI/src/com/android/systemui/statusbar/policy/MobileSignalController.java#L207 | |
- mNetworkToIconLookup.put(TelephonyManager.NETWORK_TYPE_LTE, TelephonyIcons.LTE); | |
+ mNetworkToIconLookup.put(TelephonyManager.NETWORK_TYPE_LTE, TelephonyIcons.LTE); | |
+ mNetworkToIconLookup.put(TelephonyManager.NETWORK_TYPE_LTE_CA, TelephonyIcons.LTE_PLUS); |
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
#config.jsonの変更が必要です | |
#識別するため%ID%をファイル名の最後に追加 | |
#"recordedFormat": "%YEAR%年%MONTH%月%DAY%日%HOUR%時%MIN%分- | |
#Googleドライブでは.m2ts拡張子でないとエンコードされません | |
#"fileExtension": ".m2ts", | |
#プログラムID | |
$program_id = "$env:PROGRAMID" | |
#====================ユーザ設定==================== |
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
#config.jsonの変更が必要です | |
#識別するため%ID%をファイル名の最後に追加 | |
#"recordedFormat": "%YEAR%年%MONTH%月%DAY%日%HOUR%時%MIN%分- | |
#Googleドライブでは.m2ts拡張子でないとエンコードされません | |
#"fileExtension": ".m2ts", | |
#プログラムID | |
$program_id = "$env:PROGRAMID" | |
#今日の月 |
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
$mirak_url = "http://192.168.1.xxx:40772" | |
$epg_url = "http://192.168.1.xxx:8888" | |
Function Convert-FromUnixDate ($UnixDate) { | |
[timezone]::CurrentTimeZone.ToLocalTime(([datetime]'1/1/1970').AddSeconds($UnixDate)) | |
} | |
<# | |
#MirakurunのAPIを確認し、チューナーが使用中でない状態になるまで待機する | |
Write-Output "Checking tuner status..." |
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
04-09 21:19:59.296 9954 9954 D OpenGLRenderer: Skia GL Pipeline | |
04-09 21:19:59.338 9954 9954 D NetworkSecurityConfig: No Network Security Config specified, using platform default | |
04-09 21:19:59.359 9954 9954 W AppScannerSupport: Performing initial scan | |
04-09 21:19:59.381 1477 2154 I ActivityManager: Killing 9449:android.process.acore/u0a20 (adj 904): empty #17 | |
04-09 21:19:59.383 1477 1512 W libprocessgroup: kill(-9449, 9) failed: No such process | |
04-09 21:19:59.409 1477 2154 D CountryDetector: No listener is left | |
04-09 21:19:59.411 889 889 I Zygote : Process 9449 exited due to signal (9) | |
04-09 21:19:59.423 1477 1512 W libprocessgroup: kill(-9449, 9) failed: No such process | |
04-09 21:19:59.423 1477 1512 I libprocessgroup: Successfully killed process cgroup uid 10020 pid 9449 in 41ms | |
04-09 21:20:01.398 1477 4713 W ActivityManager: Background start not allowed: service Intent { act=com.maxmpz.audioplayer.ACTION_SCAN_DIRS cmp=com.maxmpz.audioplayer/.scanner.ScanDispatcherService (has extras) |
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/bash | |
# Example of the case where you want to get 50 repetitions | |
max=50 | |
for ((i=0; i < $max; i++)); do | |
adb shell su -c "cat /sys/devices/platform/soc/ae00000.qcom,mdss_mdp/drm/card0/sde-crtc-0/measured_fps" | |
echo -n -e "\n" | |
done |
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
<TaskerData sr="" dvi="1" tv="5.8.0.beta.5"> | |
<Profile sr="prof79" ve="2"> | |
<cdate>1560391986044</cdate> | |
<edate>1560484093923</edate> | |
<id>79</id> | |
<mid0>80</mid0> | |
<nme>Popup</nme> | |
<Event sr="con0" ve="2"> | |
<code>208</code> | |
<pri>0</pri> |
OlderNewer