Run 32-bit apps on macOS Catalina 10.15+.
First install homebrew brew.sh
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"| { | |
| "keys": [ | |
| { | |
| "kty": "RSA", | |
| "kid": "attacker-controlled-kid-h10", | |
| "use": "sig", | |
| "alg": "RS256", | |
| "n": "znQ1JO2t_Y713rGUGKngXr8-1zFNjRIpGwQJ_uzaljmuWSJvgPiHhdx7hY3gpGn6d9aKCDY2AQHZrtrpe0j5fPNGcI_JXwq2FVUgWDflzSZNJ_NmT7_qepmkW0_iXV_Aazh6K3RLWDvvI7hqcefVlZBgzq6AW0qjOkmd43_8q34v2xw7NpElHsdutuT_FAkjXy2vCDmWobm8cKBLGHqndEO4OEGdczD-u7bEI0Qa2j_iFKUiCWkt9p4p0SeObyAA-eTzZ_xikh0L5lsMWdDCc7V_bBp752UUadaGXFvm-MJdiXV67MoSfENeblKvlI-wu3oNIAk_iwTEE_vnmZ-5cQ", | |
| "e": "AQAB" | |
| } |
| blueprint: | |
| name: Ikea_bilresa_scroll_wheel | |
| description: | | |
| Blueprint for Ikea Bilresa Matter (button and scroll wheel for 3 different channels) | |
| Version: 2026-03-01 | |
| Info: https://community.home-assistant.io/t/ikea-bilresa-scroll-wheel-blueprint-matter/965365 | |
| domain: automation | |
| # input selectors | |
| input: |
| #!/bin/bash | |
| # wg-reresolve-dns.sh — Re-resolve DNS for WireGuard peers managed by systemd-networkd | |
| # Reads .netdev files, resolves endpoint hostnames, and updates via `wg set`. | |
| set -euo pipefail | |
| export LC_ALL=C | |
| NETDEV_DIR="/etc/systemd/network" | |
| update_peer() { |
| 1. Open CMD as Administrator | |
| 2. Paste the following commands into the Cmd: One by one, follow the order. | |
| cscript slmgr.vbs /ipk "SERIAL NUMBER HERE" | |
| Replace SERIAL NUMBER HER with any of these, according your Windows 10 installation type. | |
| Home/Core TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 | |
| Home/Core (Country Specific) PVMJN-6DFY6-9CCP6-7BKTT-D3WVR | |
| Home/Core (Single Language) 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH |
Run 32-bit apps on macOS Catalina 10.15+.
First install homebrew brew.sh
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"| import subprocess | |
| a = subprocess.getoutput('microk8s.ctr i ls') | |
| a = a.split("\n") | |
| b = [x.split(" ")[0] for x in a] | |
| del b[0] | |
| ii = str(input(f"Do you want to delete {len(b)} images?")) | |
| if ii == "yes" or ii=="y": | |
| for x in b: | |
| print(subprocess.getoutput(f'microk8s.ctr i rm {x}')+" has been deleted") |
| find . -type f \ | |
| | xargs md5sum \ | |
| | sort -k1,1 \ | |
| | uniq -Dw32 \ | |
| | while read hash file; do | |
| [ "${prev_hash}" == "${hash}" ] && rm -v "${file}" | |
| prev_hash="${hash}"; | |
| done |
| application/andrew-inset | |
| application/applixware | |
| application/atom+xml | |
| application/atomcat+xml | |
| application/atomsvc+xml | |
| application/ccxml+xml, | |
| application/cdmi-capability | |
| application/cdmi-container | |
| application/cdmi-domain | |
| application/cdmi-object |
| $domain_path="D:\fuomag9\Documents\hacking\results\$domain\" | |
| $domain_txt_1="$domain"+"_1.txt" | |
| $domain_txt_2="$domain"+"_2.txt" | |
| $domain_txt_3="$domain"+"_3.txt" | |
| $domain_result="$domain"+"_result.txt" | |
| $domain_result_temp="$domain"+"_result_temp.txt" | |
| $domain_txt_1_path="$domain_path\$domain_txt_1" |
| import sympy | |
| from sympy import * | |
| X = sympy.Symbol('x') | |
| #f=parse_expr(str(input("inserisci la tua funzione\n"))) | |
| f=sin(X)-X**2 | |
| a=float(input("inserisci il minore dell'intervallo\n")) |