Skip to content

Instantly share code, notes, and snippets.

View SershoCode's full-sized avatar
🌵
Coding..

SershoCode

🌵
Coding..
  • Russia
View GitHub Profile
@marioharper
marioharper / clean-docker.sh
Last active July 31, 2023 12:44
Stop all docker processes, remove all containers, remove all images
# stop all processes
docker stop $(docker ps -aq)
# remove all containers
docker rm $(docker ps -aq)
# remove all images
docker rmi $(docker images -aq)
# delete all volumes
@Lunchbox4K
Lunchbox4K / KeyboardHook.cs
Last active December 11, 2023 07:13
C# Global Keyboard Hooks
// MP Hooks © 2016 Mitchell Pell
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Windows.Forms;
namespace mp.hooks{