Skip to content

Instantly share code, notes, and snippets.

@curtisgibby
curtisgibby / svg-to-500px-png-with-padding.ps1
Last active January 17, 2022 10:48
Powershell script to use imagemagick to convert a directory of SVGs to PNGs (with 10% padding)
$svgs = Get-ChildItem (".\*") -Filter *.svg
$scriptPath = $MyInvocation.MyCommand.Path
$scriptDirectory = Split-Path $scriptPath
$outputDirectory = $scriptDirectory + "\output"
# Replace specific path as needed
$magickExePath = "C:\Program Files\ImageMagick-7.0.8-Q16\magick.exe"
ForEach($svg in $svgs) {
Write-Host $svg
@curtisgibby
curtisgibby / mpris-now-playing-to-slack.py
Created February 23, 2019 00:53
Linux media player (MPRIS) now playing status to Slack
from ansimarkup import ansiprint
import calendar
import datetime
import dbus
import json
import random
import re
import requests
token = '<YOUR_SLACK_TOKEN_HERE>'