Skip to content

Instantly share code, notes, and snippets.

View feeedback's full-sized avatar
🎯
Focusing

Aleksandr Rzhanitsyn feeedback

🎯
Focusing
View GitHub Profile

Why to Ignore Russian Internet Laws

There is internet censorship in Russia. VPNs and internet providers are required to install into their networks Revizor, a device that checks that censored sites can't be accessed from their network. They are also required to install SORM (wiki/SORM, another wiki) to help Russian special services to analyse traffic and track users.

If you have or are going to have internet business in Russia I call you to ignore all the demands to install SORM and Revizor into your network. Also don't move personal data to Russia. If you can't avoid complying to these demands then just don't have your business in Russia at all.

Please, don't invest in Cheburnet (autonomous Russian internet that can be easily isolated and abusively censored without any collateral damage). Cheburnet is built to help the Kremlin in power usurpation.

The Reasons

@texodus
texodus / .block
Last active June 4, 2022 04:41
regular-table / Minesweeper
license: apache-2.0
import { Mutex, Semaphore } from 'async-mutex';
import material from 'materialize-css/dist/js/materialize';
let count = 0;
let clientLock = new Mutex();
let clientSempahore = new Semaphore(2);
// Server Simulation
function processCommand() {
count += 1;
async function supportsImgType(type) {
// Create
//
// <picture>
// <source srcset="data:,x" type="{type}" />
// <img />
// </picture>
//
// (where "data:,x" is just a minimal URL that is valid but doesn't trigger network)
let img = document.createElement('img');
@cmetz
cmetz / nebula_usb.py
Created December 14, 2020 11:02
Python Durgod K320 Nebula Hacks
import usb.core
import usb.util
import array
import time
import random
import math
import webcolors
import random
from collections import OrderedDict, namedtuple
from sys import exit