Skip to content

Instantly share code, notes, and snippets.

View PxlBuzzard's full-sized avatar

Daniel Jost PxlBuzzard

View GitHub Profile
Verifying my Blockstack ID is secured with the address 1GqPAA7kFUxdhxbs6oesCcSG9hxsg4dwbJ https://explorer.blockstack.org/address/1GqPAA7kFUxdhxbs6oesCcSG9hxsg4dwbJ
@PxlBuzzard
PxlBuzzard / boxstarter.txt
Last active June 26, 2023 23:10
Boxstarter (Personal)
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions
powercfg -h off
setx /M path "%path%;%USERPROFILE%\Documents\cmd\bin"
cinst git -y
cinst fnm -y
cinst python3 -y
cinst 7zip -y
@PxlBuzzard
PxlBuzzard / DynamicObjectPool.cs
Last active January 19, 2018 09:33
An object pool written in C# that will create more elements if the pool is empty.
#region Using Statements
using System;
using System.Reflection;
using System.Collections.Generic;
#endregion
namespace CodeSamples
{
/// <summary>
/// A generic-type object pool that can create new objects if empty.