This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from ansimarkup import ansiprint | |
import calendar | |
import datetime | |
import dbus | |
import json | |
import random | |
import re | |
import requests | |
token = '<YOUR_SLACK_TOKEN_HERE>' |