Skip to content

Instantly share code, notes, and snippets.

View lordofscripts's full-sized avatar

Lord of Scripts ™ lordofscripts

View GitHub Profile
@piratecarrot
piratecarrot / spinner.go
Last active December 14, 2023 16:21
GoLang Fyne spinner widget
package uisim
import (
"fmt"
"image/color"
"reflect"
"strconv"
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/container"
@winterlimelight
winterlimelight / EncryptedConfiguration.cs
Last active February 16, 2018 17:41
appsettings encrypted provider
using System;
using System.Collections.Generic;
using System.IO;
using System.Security.Cryptography;
using System.Text.RegularExpressions;
using Newtonsoft.Json.Linq;
using Microsoft.Extensions.Configuration;
namespace Settings
{