Skip to content

Instantly share code, notes, and snippets.

View d-s-x's full-sized avatar

Dmitry Khlestkov d-s-x

View GitHub Profile
@xvitaly
xvitaly / remove_crw.cmd
Last active March 16, 2024 16:12
Remove telemetry updates for Windows 7 and 8.1
@echo off
echo Uninstalling KB3075249 (telemetry for Win7/8.1)
start /w wusa.exe /uninstall /kb:3075249 /quiet /norestart
echo Uninstalling KB3080149 (telemetry for Win7/8.1)
start /w wusa.exe /uninstall /kb:3080149 /quiet /norestart
echo Uninstalling KB3021917 (telemetry for Win7)
start /w wusa.exe /uninstall /kb:3021917 /quiet /norestart
echo Uninstalling KB3022345 (telemetry)
start /w wusa.exe /uninstall /kb:3022345 /quiet /norestart
echo Uninstalling KB3068708 (telemetry)
@koteq
koteq / mal_sort_plan2watch.js
Last active September 23, 2021 19:40
myanimelist.net sort plan to wach by rank #mal
// go to your myanimelist.net
// click "Plan to Watch"
// scrooll all the way down
// exec this from console
const calc_weight = function (score, users) {
const mean = 7.0;
const minimum = 30000.0;
return (score * users + mean * minimum) / (users + minimum); // imdb top250
};