Skip to content

Instantly share code, notes, and snippets.

View Creepios's full-sized avatar
🖥️
Coding at Home

Niklas Creepios

🖥️
Coding at Home
  • Niedersachsen, Deutschland
View GitHub Profile
@Creepios
Creepios / DeleteDockerCompletely.ps1
Created August 24, 2020 13:22
The script from the Docker Website to completely deletes the installation remains.
$ErrorActionPreference = "SilentlyContinue"
kill -force -processname 'Docker for Windows', com.docker.db, vpnkit, com.docker.proxy, com.docker.9pdb, moby-diag-dl, dockerd
try {
./MobyLinux.ps1 -Destroy
} Catch {}
$service = Get-WmiObject -Class Win32_Service -Filter "Name='com.docker.service'"
if ($service) { $service.StopService() }
@Creepios
Creepios / FXUtils.java
Created June 8, 2019 21:16 — forked from andytill/FXUtils.java
Utility for for finding a JavaFX node by it's ID
package test;
import javafx.scene.*;
import javafx.scene.control.*;
public class FXUtils {
/**
* Find a {@link Node} within a {@link Parent} by it's ID.
* <p>