Skip to content

Instantly share code, notes, and snippets.

View malinoff's full-sized avatar

Dmitry Malinovsky malinoff

View GitHub Profile
@xvitaly
xvitaly / remove_crw.cmd
Last active July 21, 2024 21:01
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)
@malinoff
malinoff / Ответы
Created May 21, 2012 04:44
HiDevLab answers
#Типы данных, основные конструкции
Q: Как получить список всех атрибутов объекта
A: dir(obj)
Q: Как получить список всех публичных атрибутов объекта
A: [x for x in dir(obj) if x[0] != '_']
Q: Как получить список методов объекта
A: [x for x in dir(obj) if callable(getattr(obj,x)]