自宅でビデオ会議をしていると、空調とか屋外のノイズなどをマイクが拾いがちなので、Voice Meeter Bananaを使ってノイズを軽減するための工夫をあれこれ試してみたメモ。
| import os.path | |
| import re | |
| bookmarks = avsp.GetBookmarkList() | |
| bookmarks.sort() | |
| filename = avsp.GetScriptFilename(propose='general') | |
| qpfile = str(re.sub(r'avs','',filename) + "qpfile") | |
| with open(qpfile,"w") as f: | |
| for item in bookmarks: |
| api30.tiktokv.com | |
| api21.tiktokv.com | |
| webcast21.tiktokv.com | |
| api31.tiktokv.com | |
| api-t1.tiktokv.com | |
| webcast1.tiktokv.com | |
| api32.tiktokv.com | |
| api30-h2.tiktokv.com | |
| api21-h2.tiktokv.com | |
| api-s1-h2.tiktokv.com |
| Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
| ActivityTweet | |
| generic_activity_highlights | |
| generic_activity_momentsbreaking | |
| RankedOrganicTweet | |
| suggest_activity | |
| suggest_activity_feed | |
| suggest_activity_highlights | |
| suggest_activity_tweet |
Note: This gist may be outdated, thanks to all contributors in comments.
adb is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
Don't hesitate to read comments, there is useful tips, thanks guys for this !
It's a lot easier to test accessibility on the fly using ADB. This gist attempts to make the days of navigating through the Android device settings UI to change Accessibility settings obsolete.
These ADB commands will hopefully encourage Android developers to test and use their apps with common Accessiblility settings enabled.
Credit to James Nitsch for inspiring this, and for figuring out the put commands to enable these settings.
| server: | |
| # ptr | |
| local-zone: "arpa." transparent | |
| local-zone: "google." transparent | |
| local-zone: "google.com." transparent | |
| local-zone: "google.co.jp." transparent | |
| local-zone: "googleapis.com." transparent | |
| local-zone: "googlegroups.com." transparent |
DNSフラグメント攻撃についてはこちらを参照されたい。
| #!/bin/sh | |
| RESET=`tput sgr0` | |
| RED=`tput setaf 1` | |
| GREEN=`tput setaf 2` | |
| if [ "$1" ]; then | |
| if ! [ -e "$1" ] | |
| then |