aspe:keyoxide.org:YHKHX3IRQH35SJTFT2ECBOPDNM
| // ==UserScript== | |
| // @name MoodleFix | |
| // @namespace https://moodle.org/ | |
| // @version 2026-04-07 | |
| // @description Fixes "servicerequireslogin" error | |
| // @author Alexander "Saiv46" Ivanov | |
| // @match https://edu.igmt.ru/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=igmt.ru | |
| // @run-at document-end | |
| // @grant none |
In this document, "It" refers the browser extension, and "We" or "Us" refers the developer(s) of this extension.
This Extension does not collect, send or use your personal data.
It may store information in browser's local storage, solely for proper functioning. Such information never leaves your computer and will be erased when uninstalling the extension.
VPN нужен любому человеку пользующимся интернетом в России. Другой вопрос - какой VPN всё ещё работает и как его достать? Благодаря людям и их ответам в VPN-треде, был составлен данный список.
Примечание: Возможно вам не требуется VPN для обхода блокировок, сначала посмотрите Дополнительные инструменты.
| Легенда | |
|---|---|
| Ограниченный трафик |
Created by Saiv46 as asnwer for "When Binary Code Won’t Accommodate Nonbinary People" article.
Revision 2: Thanks @wizzwizz4@fosstodon.org for feedback and help
This format created compatible with databases storing user's sex as boolean or uint8. Numbers here are represented both in binary and decimal.
| // Optimized JVM arguments for Minecraft 1.17+ | |
| // JS code: str.split('\n').filter(v => !v.startsWith('//')).map(v => v.split(' //')[0]).join(' ') | |
| // Results: | |
| // -XX:+UnlockExperimentalVMOptions -XX:+AlwaysPreTouch -XX:+DisableExplicitGC -XX:+ParallelRefProcEnabled -XX:+UseStringDeduplication -XX:-UseBiasedLocking -XX:-UseG1GC -XX:+UseShenandoahGC -XX:MaxGCPauseMillis=10 | |
| // | |
| -XX:+UnlockExperimentalVMOptions // Unlocks experimental options | |
| // -XX:+AggressiveHeap // Enables Java heap optimization (DEPRECATED) | |
| // -XX:+AggressiveOpts // Enables the use of aggressive performance optimization features (DEPRECATED) | |
| -XX:+AlwaysPreTouch // Enables touching of every page on the Java heap during JVM initialization | |
| -XX:+DisableExplicitGC // Disables System.gc() calls which causes excess GC |
| [Verse 1] | |
| I came to Literature Club, // Я пришёл в Литературный Клуб, | |
| expecting love and cupcakes. // в ожидании кексов и любви. | |
| "This club is full of... // "Этот клуб полон... | |
| incredibly cute girls!" // невероятно милых девочек!" | |
| Poem writing and sharing, // Написание и обмен поэмами, | |
| and other things to do. // и кучу других дел. | |
| That's not everything // Это не всё | |
| what going to happen, I'm sure. // что произойдёт, уверен я. |
| // https://trends.google.com/trends/explore?date=all&geo=RU&q=hentai | |
| const makeRequest = async (url, params = {}) => { | |
| const res = await fetch(`${url}?${new URLSearchParams(params)}`) | |
| if (!res.ok) { | |
| console.warn(`Got code ${res.status}`, url, params) | |
| await new Promise(res => setTimeout(res, 3000 + Math.random() * 5000 | 0)) | |
| console.info(`Retrying...`, url, params) | |
| return makeRequest(url, params) | |
| } | |
| return JSON.parse((await res.text()).substr(5)) |