Skip to content

Instantly share code, notes, and snippets.

@godofgrunts
godofgrunts / rip-dvd-to-iso.zsh
Created March 21, 2019 01:26
Zsh file for ripping DVDs to isos for backup
#!/bin/zsh
#Copyright 2019 Ryan 'GodofGrunts' Whited
#Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
#The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE

Keybase proof

I hereby claim:

  • I am godofgrunts on github.
  • I am godofgrunts (https://keybase.io/godofgrunts) on keybase.
  • I have a public key ASDDivsP5nJaVGQRd1WWDZRg6vZvqmEVI7PjhHNXutlD9Qo

To claim this, I am signing this object:

@godofgrunts
godofgrunts / flv-to-mp4.ps1
Created September 20, 2016 13:20
Powershell script to convert flvs to mp4s (assuming ffmpeg is in path)
$viddir = ls
foreach ($video in $viddir)
{
$newname = ([io.path]::GetFileNameWithoutExtension($video))
ffmpeg.exe -i $video -c copy "$newname.mp4"
}
@godofgrunts
godofgrunts / himawari.ps1
Last active February 5, 2016 09:09 — forked from MichaelPote/himawari.ps1
Windows Powershell Script to download the latest image from the Himawari-8 satelite, combine the tiles into a single image, convert to jpg and then set as the desktop background.
#
# Himawari-8 Downloader
#
#
#
# This script will scrape the latest image from the Himawari-8 satellite, recombining the tiled image,
# converting it to a JPG which is saved in My Pictures\Himawari\ and then set as the desktop background.
#
# http://himawari8.nict.go.jp/himawari8-image.htm
#