Skip to content

Instantly share code, notes, and snippets.

@BigMichi1
BigMichi1 / coloring_game.ahk
Last active December 18, 2022 12:05
Coloring Game auto painter script for AutoHotkey (https://www.autohotkey.com/). Initial version by ShoxDanger (https://www.youtube.com/watch?v=szig4ake4xA). Auto Find the color on screen and move mouse and click when color not there picks a new one till all colors on screen are gone. When all colors are gone move screen
; |-------------------------------|
; | Script made by ShoxDanger |
; | extended by BigMichi1 |
; | if used give credit please |
; |-------------------------------|
;Description Script
;Auto Find the color on screen and move mouse and click
;when color not there picks a new one till all colors on screen are gone
;when all colors are gone move scree
@BigMichi1
BigMichi1 / Dockerfile
Last active January 30, 2023 08:50
mailcow/phpfpm with glibc (based on version mailcow/phpfpm:1.82)
FROM php:8.1-fpm-bullseye
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# renovate: datasource=github-tags depName=krakjoe/apcu versioning=semver-coerced
ARG APCU_PECL_VERSION=5.1.22
# renovate: datasource=github-tags depName=Imagick/imagick versioning=semver-coerced
ARG IMAGICK_PECL_VERSION=3.7.0
# renovate: datasource=github-tags depName=php/pecl-mail-mailparse versioning=semver-coerced
@BigMichi1
BigMichi1 / HOWTO.md
Created October 8, 2021 17:53 — forked from stramel/HOWTO.md
Installing Powerline fonts on Windows 10

Installing Powerline fonts on Windows 10

Steps

  1. Download and extract zip from https://github.com/powerline/fonts
  2. Press Windows + x
  3. Press a (Selects PowerShell (Admin)
  4. Navigate to directory where fonts were extracted to (cd ${HOME}\Downloads\fonts-master\fonts-master)
  5. Set Execution policy Set-ExecutionPolicy Bypass
  6. Press y then Enter to accept
@BigMichi1
BigMichi1 / main.js
Created September 20, 2021 21:30 — forked from kdzwinel/main.js
List all undefined CSS classes
/*
This script attempts to identify all CSS classes mentioned in HTML but not defined in the stylesheets.
In order to use it, just run it in the DevTools console (or add it to DevTools Snippets and run it from there).
Note that this script requires browser to support `fetch` and some ES6 features (fat arrow, Promises, Array.from, Set). You can transpile it to ES5 here: https://babeljs.io/repl/ .
Known limitations:
- it won't be able to take into account some external stylesheets (if CORS isn't set up)
- it will produce false negatives for classes that are mentioned in the comments.