Skip to content

Instantly share code, notes, and snippets.

View nyanshiba's full-sized avatar
🎃
in the kotatsu

nyanshiba

🎃
in the kotatsu
View GitHub Profile
@tana3n
tana3n / Bookmarks to qpfile.py
Last active December 5, 2020 08:17
x264とか265向けのQPfileを出力するやつ
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:
@felixjones
felixjones / AutoGamma.zip
Last active February 7, 2024 09:23
Auto Gamma
@RupGautam
RupGautam / block_tik_tok.txt
Last active October 7, 2025 23:27
TikTok domains to DNSBL Feeds
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

Voice Meeter Bananaを使ってビデオ会議のノイズ軽減をするメモ.md

自宅でビデオ会議をしていると、空調とか屋外のノイズなどをマイクが拾いがちなので、Voice Meeter Bananaを使ってノイズを軽減するための工夫をあれこれ試してみたメモ。

使うもの

@IanColdwater
IanColdwater / twittermute.txt
Last active October 25, 2025 19:14
Here are some terms to mute on Twitter to clean your timeline up a bit.
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
@AnatomicJC
AnatomicJC / android-backup-apk-and-datas.md
Last active November 3, 2025 12:30
Backup android app, data included, no root needed, with adb

Backup android app, data included, no root needed, with adb

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 !

@mrk-han
mrk-han / change-accessibility-settings-with-adb.md
Last active October 11, 2025 09:10
Enable and Disable Android Accessibility Settings from the Command Line using ADB (Font scale, talkback, color blind)

Using ADB to control Accessbility settings for easier testing with Android Emulators + Real Devices

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.

Font Scale (Font Size -- Testing Dynamic Text)

@pekeq
pekeq / zone-whitelist.conf
Last active April 10, 2023 06:53
MIS DNS Whitelist
server:
# ptr
local-zone: "arpa." transparent
# google
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
@hdais
hdais / dnsfragattack_authserver.md
Last active October 24, 2025 11:01
DNSフラグメント攻撃の権威サーバ側の対策について
@levantAJ
levantAJ / extract-scheme-url.sh
Created August 7, 2019 03:20
Extract *.ipa file to looking for all scheme URLs
#!/bin/sh
RESET=`tput sgr0`
RED=`tput setaf 1`
GREEN=`tput setaf 2`
if [ "$1" ]; then
if ! [ -e "$1" ]
then