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 | |
| current="$(lsappinfo info -only name "$(lsappinfo front)" | cut -d'=' -f2)" | |
| case "$current" in | |
| '"Parsec"' | '"Parallels Desktop"' ) profile="PC" ;; | |
| * ) profile="Default" ;; | |
| esac | |
| if [[ ! -e /tmp/watch-karabiner ]]; then | |
| touch /tmp/watch-karabiner |
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 -x | |
| if [[ "${COMPOSE_VERSION}" == "" ]]; then | |
| echo "must be set env 'COMPOSE_VERSION'" | |
| exit 1 | |
| fi | |
| OS="$(uname -s | awk '{print tolower($0)}')" | |
| ARCH="$(uname -m)" |
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
| (async () => { | |
| const wait = (ms) => new Promise(resolve => setTimeout(resolve, ms)); | |
| const subtitleButton = document.querySelector('.ytp-subtitles-button'); | |
| if (!subtitleButton) { | |
| return; | |
| } | |
| const subtitleButtonState = subtitleButton.getAttribute('aria-pressed') === 'true'; | |
| subtitleButton.click(); | |
| if (subtitleButtonState) { |
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
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2020 mohemohe <[email protected]> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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
| // This file was initially generated by Windows Terminal 1.0.1401.0 | |
| // It should still be usable in newer versions, but newer versions might have additional | |
| // settings, help text, or changes that you will not see unless you clear this file | |
| // and let us generate a new one for you. | |
| // To view the default settings, hold "alt" while clicking on the "Settings" button. | |
| // For documentation on these settings, see: https://aka.ms/terminal-documentation | |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", |
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
| ファイナルファンタジーXIV: 漆黒のヴィランズ ベンチマーク | |
| 計測日時: 2020/8/23 0:54:06 | |
| SCORE: 4425 | |
| 平均フレームレート: 30.50928 | |
| 最低フレームレート: 6 | |
| 評価: 快適 | |
| -快適な動作が見込めます。グラフィック設定をより高品質にしても快適に動作すると思われます。 | |
| ローディングタイム: | |
| シーン#1 3.143sec | |
| シーン#2 6.465sec |
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 | |
| cd "${HOME}" | |
| if [ ! -z "$(pidof xfce4-session)" ]; then | |
| exit 1 | |
| fi | |
| export DISPLAY="$(cat /etc/resolv.conf | grep nameserver | awk '{print $2; exit;}'):0.0"; | |
| export LANG=ja_JP.UTF-8 |
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
| Domain | |
| shopingmall.srl Delete | |
| 104.27.172.201 (from shopingmall.srl) Delete | |
| 104.27.173.201 (from shopingmall.srl) Delete | |
| 2606:4700:3033::681b:adc9 (from shopingmall.srl) Delete | |
| 2606:4700:3033::681b:acc9 (from shopingmall.srl) Delete | |
| fashion-buy.in.net Delete | |
| 104.18.58.207 (from fashion-buy.in.net) Delete | |
| 104.18.59.207 (from fashion-buy.in.net) Delete | |
| 2606:4700:3031::6812:3bcf (from fashion-buy.in.net) Delete |
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 | |
| BASE_URL=http://172.16.34.56:8080 | |
| #===================================== | |
| function _exit() { | |
| exit 1 | |
| } |