This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Fix eapteka searchbar | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-12-10 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://www.eapteka.ru/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=eapteka.ru | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function optimizeNotes(sheet) { | |
| // Набор символов, требующих нажатия Shift (стандартная раскладка US) | |
| // Включает заглавные буквы и символы верхнего регистра цифр | |
| const shiftChars = new Set('~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?'); | |
| return sheet.replace(/\[(.*?)\]/g, (match, content) => { | |
| const chars = content.split(''); | |
| const shifted = []; // Для символов с Shift (например: !, @, Q, P) | |
| const normal = []; // Для обычных символов (например: 1, 2, q, p) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { $ } from "zx"; | |
| import { join } from "@std/path"; | |
| if (!Deno.args[0]) { | |
| console.log("please provide start folder"); | |
| Deno.exit(1); | |
| } | |
| const textDecoder = new TextDecoder(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Pimcore Demo Error Close | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-11-05 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match http://localhost/admin/ | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=undefined.localhost | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict"; | |
| // ==UserScript== | |
| // @name antiadblock remover | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-09-22 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://virtualpiano.net/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=virtualpiano.net | |
| // @grant none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| flatpak permission-set kde-authorized remote-desktop org.kde.krdpserver yes; | |
| flatpak permission-set kde-authorized remote-desktop "" yes; | |
| echo $(zenity --password --title="Требуется sudo" --text="Введите пароль:" --width=250 --height=120) | sudo -S hiddify |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Style TargetType="{x:Type TextBox}"> | |
| <Setter Property="Padding" Value="2" /> | |
| <Style.Resources> | |
| <Style TargetType="{x:Type Border}"> | |
| <Setter Property="CornerRadius" Value="4" /> | |
| </Style> | |
| </Style.Resources> | |
| </Style> | |
| <Style TargetType="Label"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env zx | |
| import chalk from 'chalk' | |
| import { $ } from 'zx/core' | |
| // disable stdin | |
| $.verbose = false | |
| // polyfill for promise with resolvers | |
| Promise.withResolvers || (Promise.withResolvers = function withResolvers() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DISCLAIMER: I take no responsibility for your actions, do everything at your own risk | |
| In the /vendor/etc/izat.conf: | |
| PROCESS_NAME=xtra-daemon | |
| PROCESS_ARGUMENT= | |
| PROCESS_STATE=DISABLED <- change here | |
| PROCESS_GROUPS=inet gps system | |
| PREMIUM_FEATURE=0 | |
| IZAT_FEATURE_MASK=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| adb start-server | |
| $folder = Get-Location | |
| Get-ChildItem -Path $folder -Filter "*.apk" | ForEach-Object { | |
| Write-Host "Install $($_.Name)..." | |
| adb install $_.FullName | |
| } |