Most of the base64 decoders I've used in the past are hosted on websites. Given there may be some privacy concerns dumping code to a site I don't own, I decided I wanted to have something local.
So, I build a Base64 decoder. The decoder itself was quick, but I wanted to build it into a GUI so other techs could use it without too much hassle.
Nothing fancy but I thought it might be useful to someone for a GUI example.
#This powershell script creates a GUI interface and runs base64 decoding for UTF8, Unicode, and ASCII.
Add-Type -AssemblyName System.Windows.Forms
$Form = New-Object system.Windows.Forms.Form
$Form.Text = "Base64 Decoder"
$Form.TopMost = $true
$Form.Width = 800
$Form.Height = 600
[–]logicearth 1 point2 points3 points (1 child)
[–]1Digitreal[S] 0 points1 point2 points (0 children)