Paranda Codexi terminalis Micro redaktori loetamatu tekst, nähtamatu kursor ja .env failide süntaksivärvimine.
Täienda faili ~/.config/micro/settings.json.
Säilita olemasolevad seaded ning lisa:
The official WireGuard app for macOS only allows one active tunnel at a time. This guide shows you how to use WireGuardStatusbar, a menubar app that supports multiple simultaneous tunnels.
| // ==UserScript== | |
| // @name Remove US and UK Listings on eBay | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.2 | |
| // @description Eemalda eBay kuulutused, mis asuvad Ameerikas ja Ühendkuningriigis | |
| // @author Henno Täht | |
| // @match https://www.ebay.de/* | |
| // @match https://www.ebay.com/* | |
| // @match https://www.ebay.co.uk/* | |
| // @match https://www.ebay.ie/* |
| CPU | Cores | CPU Mark | Thread Mark | TDP | Socket | Category | |
|---|---|---|---|---|---|---|---|
| AArch64 rev 2 (aarch64) | 8 | 2,413 | 909 | NA | Unknown | Mobile/Embedded | |
| AMD 3015Ce | 2 | 2,099 | 1,337 | 6 | FT5 | Mobile/Embedded | |
| AMD 3015e | 2 | 2,709 | 1,340 | 6 | Unknown | Laptop | |
| AMD 3020e | 2 | 2,436 | 1,404 | 6 | Unknown | Laptop | |
| AMD 4700S | 8 | 17,862 | 2,361 | NA | Unknown | Desktop | |
| AMD A10 PRO-7350B APU | 4 | 1,915 | 917 | 19 | FP3 | Laptop | |
| AMD A10 PRO-7800B APU | 2 | 3,303 | 1,494 | 65 | FM2+ | Desktop | |
| AMD A10 PRO-7850B APU | 2 | 3,459 | 1,573 | 95 | FM2+ | Desktop | |
| AMD A10-4600M APU | 2 | 1,938 | 1,078 | 35 | FS1r2 | Laptop |
| $ErrorActionPreference = "SilentlyContinue" | |
| # Variables for easy modification | |
| # Adapter names (provide one or more adapter names) | |
| $AdapterNames = @("Ethernet") | |
| # Examples: | |
| # $AdapterNames = @("Ethernet", "Wi-Fi") | |
| # ICMP Ping destinations (provide one or more IP addresses) |
| """ | |
| Script: rename_opus.py | |
| This Python script is designed to search through a specified directory and its subdirectories | |
| to locate all `.opus` audio files, process them, and rename them based on their contents. | |
| It primarily performs the following operations: | |
| 1. **Directory Traversal**: | |
| - The script begins by accepting a directory path as a command-line argument. | |
| - It checks if the directory exists, then recursively searches through the directory |
| // ==UserScript== | |
| // @name Grade Highlighter | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Highlights grades based on their value | |
| // @author Your Name | |
| // @match *://torvakool.ope.ee/* | |
| // @grant none | |
| // ==/UserScript== |
| // ==UserScript== | |
| // @name Stuudium õpetaja - päeviku vaates värvilised lahtrid | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2024-06-06 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://torvakool.ope.ee/journal/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=ope.ee | |
| // @grant none | |
| // ==/UserScript== |
| new MutationObserver((mutations) => { | |
| mutations.forEach((mutation) => { | |
| if (mutation.addedNodes.length > 0) { | |
| const addedNode = mutation.addedNodes[0] as HTMLElement; | |
| if (addedNode.tagName) { | |
| console.log(`${addedNode.tagName}, id='${addedNode.id}', class='${addedNode.className}', innerText='${addedNode.innerText}'`); |
| #!/bin/sh | |
| # This script checks the consistency between a public key stored in DNS records and a public key derived from a provided private key file. | |
| # It requires three arguments: | |
| # 1. A selector that identifies the public key in the DNS. | |
| # 2. A domain name where the DNS record is located. | |
| # 3. The path to the private key file. | |
| # | |
| # Usage: | |
| # ./script_name <selector> <domain> <private_key_file> |