Skip to content

Instantly share code, notes, and snippets.

View aessing's full-sized avatar
:octocat:
Crafting some epic stuff

Andre Essing aessing

:octocat:
Crafting some epic stuff
View GitHub Profile
@aessing
aessing / settings.json
Last active March 19, 2021 07:50
My Windows Terminal Configuration
// =============================================================================
// Windows Terminal Configuration
// https://aka.ms/terminal
// https://github.com/microsoft/terminal
// -----------------------------------------------------------------------------
// Developer.......: Andre Essing (https://www.andre-essing.de/)
// (https://github.com/aessing)
// (https://twitter.com/aessing)
// (https://www.linkedin.com/in/aessing/)
// -----------------------------------------------------------------------------
@aessing
aessing / install-Sysinternals.ps1
Last active October 10, 2020 11:12
Install Sysinternals on Windows (PowerShell)
# =============================================================================
# Install Sysinternals on Windows (PowerShell)
# https://docs.microsoft.com/en-us/sysinternals/
# -----------------------------------------------------------------------------
# Developer.......: Andre Essing (https://www.andre-essing.de/)
# (https://github.com/aessing)
# (https://twitter.com/aessing)
# (https://www.linkedin.com/in/aessing/)
# -----------------------------------------------------------------------------
# THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
@aessing
aessing / install-Wsl2.ps1
Last active March 19, 2021 08:05
Install WSL2 on Windows 10 (PowerShell)
# =============================================================================
# Install WSL2 on Windows 10 (PowerShell)
# https://docs.microsoft.com/de-de/windows/wsl/install-win10
# -----------------------------------------------------------------------------
# Developer.......: Andre Essing (https://www.andre-essing.de/)
# (https://github.com/aessing)
# (https://twitter.com/aessing)
# (https://www.linkedin.com/in/aessing/)
# -----------------------------------------------------------------------------
# THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
@aessing
aessing / install-AzCopy.ps1
Last active January 30, 2024 12:59
Install AzCopy on Windows (PowerShell)
# =============================================================================
# Install AzCopy on Windows (PowerShell)
# https://docs.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10
# https://github.com/Azure/azure-storage-azcopy
# -----------------------------------------------------------------------------
# Developer.......: Andre Essing (https://www.andre-essing.de/)
# (https://github.com/aessing)
# (https://twitter.com/aessing)
# (https://www.linkedin.com/in/aessing/)
# -----------------------------------------------------------------------------
@aessing
aessing / install-AzCli.ps1
Last active August 13, 2021 09:16
Install Azure Command-Line Interface (AZ CLI) on Windows (PowerShell)
# =============================================================================
# Install Azure Command-Line Interface (AZ CLI) on Windows (PowerShell)
# https://docs.microsoft.com/en-us/cli/azure/
# https://github.com/Azure/azure-cli
# -----------------------------------------------------------------------------
# Developer.......: Andre Essing (https://www.andre-essing.de/)
# (https://github.com/aessing)
# (https://twitter.com/aessing)
# (https://www.linkedin.com/in/aessing/)
# -----------------------------------------------------------------------------
@aessing
aessing / install-Ngrok.ps1
Created October 1, 2020 10:25
Install Ngork on Windows (PowerShell)
# =============================================================================
# Install Ngork on Windows (PowerShell)
# https://ngrok.com/
# -----------------------------------------------------------------------------
# Developer.......: Andre Essing (https://www.andre-essing.de/)
# (https://github.com/aessing)
# (https://twitter.com/aessing)
# (https://www.linkedin.com/in/aessing/)
# -----------------------------------------------------------------------------
# THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
@aessing
aessing / install-AzCopy.sh
Created October 1, 2020 19:50
Install AzCopy on Linux
#!/bin/bash
# =============================================================================
# Install AzCopy on Linux
# https://docs.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10
# https://github.com/Azure/azure-storage-azcopy
# -----------------------------------------------------------------------------
# Developer.......: Andre Essing (https://www.andre-essing.de/)
# (https://github.com/aessing)
# (https://twitter.com/aessing)
# (https://www.linkedin.com/in/aessing/)
@aessing
aessing / install-Ngrok.sh
Last active April 10, 2022 06:03
Install Ngork on Linux
#!/bin/bash
# =============================================================================
# Install Ngrok on Linux
# https://ngrok.com/
# -----------------------------------------------------------------------------
# Developer.......: Andre Essing (https://www.andre-essing.de/)
# (https://github.com/aessing)
# (https://twitter.com/aessing)
# (https://www.linkedin.com/in/aessing/)
# -----------------------------------------------------------------------------
@aessing
aessing / install-AzCli.sh
Created October 1, 2020 19:55
Install Azure Command-Line Interface (AZ CLI) on Linux (Ubuntu)
#!/bin/bash
# =============================================================================
# Install Azure Command-Line Interface (AZ CLI) on Linux (Ubuntu)
# https://docs.microsoft.com/en-us/cli/azure/
# https://github.com/Azure/azure-cli
# -----------------------------------------------------------------------------
# Developer.......: Andre Essing (https://www.andre-essing.de/)
# (https://github.com/aessing)
# (https://twitter.com/aessing)
# (https://www.linkedin.com/in/aessing/)
@aessing
aessing / install-Cloudflared.sh
Last active November 6, 2023 23:22
Install Cloudlflare daemon (cloudflared) on Linux (Ubuntu) - DNS-over-HTTPS
#!/bin/bash
# =============================================================================
# Install Cloudlflare daemon (cloudflared) on Linux (Ubuntu) - DNS-over-HTTPS
# https://developers.cloudflare.com/1.1.1.1/dns-over-https/cloudflared-proxy/
# https://developers.cloudflare.com/argo-tunnel/downloads
# -----------------------------------------------------------------------------
# Developer.......: Andre Essing (https://www.andre-essing.de/)
# (https://github.com/aessing)
# (https://twitter.com/aessing)
# (https://www.linkedin.com/in/aessing/)