Skip to content

Instantly share code, notes, and snippets.

View Timberfang's full-sized avatar

Timberfang

View GitHub Profile
@Timberfang
Timberfang / Invoke-Mogrify.ps1
Last active August 22, 2022 12:24
Convert images to other formats using ImageMagick.
Set-StrictMode -Version 3.0
#Requires -Version 5.1
Function Invoke-Mogrify {
<#
.SYNOPSIS
Convert images to other formats using ImageMagick.
.DESCRIPTION
This function will convert given images into the specified format.
The converted images will be saved to the same location as the original images by default.
@CostasAK
CostasAK / one-dark-pro.json
Created February 22, 2021 14:35
Windows Terminal One Dark Pro
{
schemes: [
{
"name": "One Dark Pro",
"foreground": "#abb2bf",
"background": "#282c34",
"cursorColor": "#abb2bf",
"black": "#3f4451",
"red": "#e05561",
"green": "#8cc265",
@davidfowl
davidfowl / dotnetlayout.md
Last active November 13, 2024 13:19
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/