$ sudo cpupower frequency-info | grep 'boost state support' -A2 | grep Active
Active: yes ❌
// ==UserScript== | |
// @name Yandex dzen dark theme | |
// @namespace http://tampermonkey.net/ | |
// @version 0.0.3 | |
// @description Set the dark theme on Yandex dzen | |
// @author You | |
// @match http*://dzen.ru/* | |
// @match http*://*.dzen.ru/* | |
// @match http*://*.*.dzen.ru/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=dzen.ru |
// ==UserScript== | |
// @name Open url prompt | |
// @version 0.0.3 | |
// @match *://*/* | |
// @author Flashwalker | |
// @description Press Ctrl+Shift+: or Ctrl+Shift+' to open location prompt | |
// @updateURL https://gist.githubusercontent.com/Flashwalker/c02e28809a897c4955f34e271db0e427/raw/open-url-prompt.user.js | |
// @downloadURL https://gist.githubusercontent.com/Flashwalker/c02e28809a897c4955f34e271db0e427/raw/open-url-prompt.user.js | |
// @homepage https://gist.github.com/Flashwalker/c02e28809a897c4955f34e271db0e427 | |
// ==/UserScript== |
#!/bin/bash | |
# Copy and set your current GTK3 theme over another's Flatpak theme. | |
# It's like a raider takeover of some Flatpak theme 😁 🙃. | |
# NOTICE: some Flatpak theme must be already installed. | |
# | |
# What if you set your custom GTK3 theme for your desktop and want it for Flatpak? | |
# Use this script to takeover of another's Flatpak theme and set it! | |
USAGE(){ |
// ==UserScript== | |
// @name Send selected content to Obsidian as markdown | |
// @version 0.6.8 | |
// @match *://*/* | |
// @author Flashwalker | |
// @description Gareth Stretton https://medium.com/@gareth.stretton/obsidian-create-your-own-web-clipper-add83c7662d0 + StackOverflow https://stackoverflow.com/questions/4176923/html-of-selected-text/4177234#4177234 | |
// @updateURL https://gist.github.com/Flashwalker/40f23e01942cc72a47df61bb86821714/raw/obsidian-webclip-as-markdown.user.js | |
// @downloadURL https://gist.github.com/Flashwalker/40f23e01942cc72a47df61bb86821714/raw/obsidian-webclip-as-markdown.user.js | |
// @homepage https://gist.github.com/Flashwalker/40f23e01942cc72a47df61bb86821714 | |
// @require https://unpkg.com/turndown/dist/turndown.js |
#!/bin/bash | |
# Wrap image with svg and output the svg file | |
#### Options | |
svgwidth='' | |
svgheight='' | |
imgwidth='' | |
imgheight='' | |
############ |
## Listen Lo-Fi redio from YouTube Music in Chromium fullscreen popup window on Linux | |
-------------------------------------------------------------------------------------- | |
Run install.sh in terminal to install |
:: Replace all 11.2.0.9967 with yours installed version | |
netsh advfirewall firewall add rule name="WPS Office" dir=in action=block program="C:\Program Files\WPS Office\11.2.0.9967\utility\config.exe" enable=yes | |
netsh advfirewall firewall add rule name="WPS Office" dir=in action=block program="C:\Program Files\WPS Office\11.2.0.9967\office6\mui\default\resource\ksee\EqnEdit.exe" enable=yes | |
netsh advfirewall firewall add rule name="WPS Office" dir=in action=block program="C:\Program Files\WPS Office\11.2.0.9967\office6\et.exe" enable=yes | |
netsh advfirewall firewall add rule name="WPS Office" dir=in action=block program="C:\Program Files\WPS Office\11.2.0.9967\office6\kcrashdumper.exe" enable=yes | |
netsh advfirewall firewall add rule name="WPS Office" dir=in action=block program="C:\Program Files\WPS Office\11.2.0.9967\office6\kcrashdumper64.exe" enable=yes | |
netsh advfirewall firewall add rule name="WPS Office" dir=in action=block program="C:\Program Files\WPS Office\11.2.0.9967\office6\ksolaunch.exe" enable=yes | |
net |
::Set firewall on | |
netsh advfirewall set currentprofile state on | |
::Block in connections from all | |
netsh advfirewall firewall add rule name="blockSMBforeign_TCP-139" action=block protocol=TCP dir=in localport=139 remoteip=any | |
netsh advfirewall firewall add rule name="blockSMBforeign_TCP-445" action=block protocol=TCP dir=in localport=445 remoteip=any | |
::Allow only local connections from 192.16.0.0/16 subnet | |
netsh advfirewall firewall add rule name="allowSMB_0_0_16_TCP-139" action=allow protocol=TCP dir=in localport=139 remoteip=192.168.0.0/16 | |
netsh advfirewall firewall add rule name="allowSMB_0_0_16_TCP-445" action=allow protocol=TCP dir=in localport=445 remoteip=192.168.0.0/16 |