- MPEG-1 Audio Layer 3
- MPEG-2 Audio Layer 3
- MPEG-2.5 Audio Layer 3
|MPEG-1 Audio Layer-3|MPEG-2 Audio Layer-3|MPEG-2.5 Audio Layer-3|
| #!/bin/sh | |
| # 無難な対応としては、最初にmastodonを一度停止した方が良いので停止する。 | |
| # systemctl stop mastodon-{web,sidekiq,stream} | |
| # mastodonユーザー出ない場合は下記のコマンドでmastodonユーザーになる | |
| # 一般ユーザーからの場合 | |
| # sudo su - mastodon |
| location ^~ /.well-known/acme-challenge/ { | |
| root /var/www/letsencrypt; | |
| } | |
| location = /.well-known/acme-challenge/ { | |
| return 404; | |
| } |
| #!/bin/sh | |
| #DOCKER_TAG=latest | |
| SLEEP_SEC=30 | |
| DOCKER_TAG=${1:-latest} | |
| GITLAB_PORT_HTTP=50080 | |
| GITLAB_PORT_SSL=443 | |
| GITLAB_PORT_SSH=22 | |
| echo -e "\e[1;37mPulling tag:\e[m \e[33m$DOCKER_TAG\e[m" | |
| sudo docker pull gitlab/gitlab-ce:$DOCKER_TAG |
| <?php | |
| /** | |
| * 相対パスから絶対URLを返却する | |
| * | |
| * @param string $base ベースURL, 絶対URL | |
| * @param string $relational_path 相対パス | |
| * @return string 相対パスの絶対URL | |
| * @link http://logic.stepserver.jp/data/archives/501.html | |
| * @link http://blog.anoncom.net/2010/01/08/295.html | |
| * @link https://blog.anoncom.net/2010/01/phpurluri.html |
| #!/bin/sh | |
| # スクリーンショットの保存先を変更する | |
| defaults write com.apple.screencapture location ~/Downloads/ScreenShots/ | |
| # 保存場所を元に戻す | |
| # defaults delete com.apple.screencapture location | |
| # スクリーンショットのファイル名接頭辞を変更する | |
| defaults write com.apple.screencapture name 'ScreenShot' |
| #!/usr/bin/env python | |
| import hashlib | |
| prefix = ['050','070','080','090']; | |
| x = 1000; # mobile/IP phone number will be starts with 1, not 0 | |
| column = ['NUMBER','MD5','SHA1','SHA256','SHA384','SHA512']; | |
| print(format('"%s"' % ('", "'.join(column)))) | |
| for p in prefix: | |
| while x <= 9999: |
| <?php | |
| class Progressbar | |
| { | |
| //private $cursor = ['|', '/', '-', '\\']; | |
| private $cursor = ['⠋','⠙','⠹','⠸','⠼','⠴','⠦','⠧','⠇','⠏']; | |
| private $spacer = '░'; | |
| private $indicator = "\033[7m \033[0m"; | |
| private $total = 0; |
| #!/bin/sh | |
| # | |
| # Usage: | |
| # sh ./download_fgo_video.sh https://extend.data.fate-go.jp/xXxx0Xxx/PathCRC | |
| # | |
| # PathCRC URL | |
| TARGET_URL=$1 | |
| FGO_VER='2.2.0.1' | |
| UA="fategrandorder/$FGO_VER CFNetwork/1120 Darwin/19.0.0" | |
| HEADERS='X-Unity-Version: 2018.4.4f1' |