Skip to content

Instantly share code, notes, and snippets.

View My-Random-Thoughts's full-sized avatar
🔗
http://myrandomthoughts.co.uk

My Random Thoughts My-Random-Thoughts

🔗
http://myrandomthoughts.co.uk
View GitHub Profile
@styblope
styblope / docker-api-port.md
Last active March 28, 2025 15:47
Enable TCP port 2375 for external connection to Docker

Enable TCP port 2375 for external connection to Docker

See this issue.
Docker best practise to Control and configure Docker with systemd.

  1. Create daemon.json file in /etc/docker:

     {"hosts": ["tcp://0.0.0.0:2375", "unix:///var/run/docker.sock"]}
    
@xPaw
xPaw / steam_quick_queue.user.js
Last active February 21, 2025 23:42
⚠ This script has been integrated into SteamDB browser extension!
// ==UserScript==
// @name Steam Queue Auto Discoverer
// @description Discover the Steam queue three times to get the sale cards
// @version 2.3.0
// @namespace https://gist.github.com/xPaw/73f8ae2031b4e528abf7
// @icon https://store.steampowered.com/favicon.ico
// @match https://store.steampowered.com/explore*
// @grant none
// ==/UserScript==
@dbroeglin
dbroeglin / Compare-Hashtable.Tests.ps1
Last active December 16, 2024 09:37
A simple Compare-Hashtable function for powershell
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.'
. "$here\$sut"
Describe "Compare-Hashtable" {
Context "When both are empty" {
$Left, $Right = @{}, @{}
It "should return nothing" {
Compare-Hashtable $Left $Right | Should BeNullOrEmpty