Thanks to visit codestin.com
Credit goes to gist.github.com

Skip to content

Instantly share code, notes, and snippets.

@tankalxat34
tankalxat34 / remove-all-from-docker.md
Last active February 11, 2026 09:38 — forked from tomasevich/remove-all-from-docker.md
Удалить/очистить все данные Докера (контейнеры, образы, тома и сети)

Удалить/очистить все данные Докера (контейнеры, образы, тома и сети)

Одной строкой

docker stop $(docker ps -qa) && docker rm $(docker ps -qa) && docker rmi -f $(docker images -qa) && docker volume rm $(docker volume ls -q) && docker network rm $(docker network ls -q)

Использование prune

В Docker есть команды, которые удаляют неиспользуемые объекты в разных аспектах: образы, кэш сборки, контейнеры и тома. Для этого используются команды docker image prune, docker builder prune, docker container prune и docker volume prune.

@tankalxat34
tankalxat34 / cheatsheet.ps1
Created July 6, 2025 16:15 — forked from pcgeek86/cheatsheet.ps1
PowerShell Cheat Sheet / Quick Reference
Get-Command # Retrieves a list of all the commands available to PowerShell
# (native binaries in $env:PATH + cmdlets / functions from PowerShell modules)
Get-Command -Module Microsoft* # Retrieves a list of all the PowerShell commands exported from modules named Microsoft*
Get-Command -Name *item # Retrieves a list of all commands (native binaries + PowerShell commands) ending in "item"
Get-Help # Get all help topics
Get-Help -Name about_Variables # Get help for a specific about_* topic (aka. man page)
Get-Help -Name Get-Command # Get help for a specific PowerShell function
Get-Help -Name Get-Command -Parameter Module # Get help for a specific parameter on a specific command
Windows Server 2022 Standard key:
HP9DJ-NK2X6-4QPCH-8HY8H-6X2XY
RRNMT-FP29D-CHKCH-GWQP2-DDDVB
44QN4-X3R72-9X3VK-3DWD6-HFWDM
CGGN9-DG8BW-PMBB4-Y79Y9-Y7X7B
PGQ8Y-WHN93-WY67T-FJXP7-QPHHB
Windows Server 2022 Datacenter Key
N7MMC-VGFH4-GVRDT-K9Q44-X2HJH
MNF6T-BTCTK-Q4HPP-KP2WG-VCHJH

ICON DLLs for Windows 10 and Windows 11:

%systemroot%\system32\imageres.dll
%systemroot%\system32\shell32.dll
%systemroot%\system32\pifmgr.dll
%systemroot%\explorer.exe
%systemroot%\system32\accessibilitycpl.dll
%systemroot%\system32\ddores.dll
%systemroot%\system32\moricons.dll
@tankalxat34
tankalxat34 / windows-11-keys.md
Last active May 14, 2025 16:35 — forked from sevynkooper/windows-11-keys.md
Windows 11 Product Keys

NOTE

Please note that these are NOT valid Windows 11 product or license keys for Windows activation.

These keys merely designate the edition of Windows that will be installed during the setup process. However, they do not serve to activate or provide a legitimate license for the Windows installation.

Consequently, while these keys can help determine which version of Windows will be installed, they are insufficient for activating or legally licensing the operating system on your device.

Proper activation and licensing require valid product keys obtained through legitimate means.

  1. Go to this webpage
  2. Download addon
  3. Enable developer mode in Excel

image

  1. Add downloaded xlam file to Microsoft Excel like here

image

@tankalxat34
tankalxat34 / vmwk17key-5000keys-unchecked.txt
Created April 19, 2024 06:35 — forked from PurpleVibe32/vmwk17key-5000keys-unchecked.txt
5000k+ vmware workstation pro 17 (untested)
4U612-DN31H-MJEJ0-0V0Z4-978HD
5G44H-ACH50-0J4C9-1VC5P-CY0QD
JC000-8G047-MJDF1-0H3E6-8QR5F
JV2NU-0XL5N-0J4Q8-0T0E6-8GH56
JZ6E0-4R1E0-HJ1Q0-1R8NH-3AK28
0Z48K-4X29Q-MJE80-113GK-C7K3A
HF4H0-46K80-MJ8D9-1KAZP-CKK12
NY69H-2N05P-HJ170-1V1ZM-CG222
4C45A-D8J0H-HJ5T0-1T25H-92A76
0Z4H2-0WK9K-4JE10-0T9G6-9C8M4
VMware Workstation Pro 16.x Serials
YA7RA-F6Y46-H889Z-LZMXZ-WF8UA
ZV7HR-4YX17-M80EP-JDMQG-PF0RF
UC3XK-8DD1J-089NP-MYPXT-QGU80
GV100-84W16-M85JP-WXZ7E-ZP2R6
YF5X2-8MW91-4888Y-DNWGC-W68TF
AY1XK-0NG5P-0855Y-K6ZXG-YK0T4
VMware Workstation Player 16.x Serials

Vite + TypeScript or React = Google Chrome Extension

Source awailable here

How to setup new project?

1. Init Vite project

npm init vite@latest
@tankalxat34
tankalxat34 / ClearEmptyColumns.bas
Created March 16, 2024 09:09
This script clears empty columns in a selected Microsoft Excel range
Public Sub DeleteEmptyColumns()
Dim SourceRange As Range
Dim EntireColumn As Range
On Error Resume Next
Set SourceRange = Application.InputBox( _
"Select a range:", "Delete Empty Columns", _
Application.Selection.Address, Type:=8)
If Not (SourceRange Is Nothing) Then