Skip to content

Instantly share code, notes, and snippets.

View bradoyler's full-sized avatar
👋
say hi

brad oyler bradoyler

👋
say hi
View GitHub Profile
testing 123
@bradoyler
bradoyler / bitcoin-on-your-balance-sheet.md
Last active January 14, 2026 14:23
Putting Bitcoin on your Balance Sheet
title Putting Bitcoin on your Balance Sheet
date 2026-01-14
modified
description Why Businesses Should Consider Bitcoin on the Balance Sheet
art monthlycrypto.jpg
layout post.njk
tags
blog
crypto
@bradoyler
bradoyler / ai-post.md
Last active December 27, 2025 14:36
January AI News
title AI News Digest - January 2026
date 2026-01-30
modified
description roundup of the most notable AI developments
art monthlyai.jpg
layout post.njk
tags
blog
ai
@bradoyler
bradoyler / btc-post.md
Last active December 27, 2025 14:36
Crypto-January2026.md
title Crypto News Digest - January 2026
date 2026-01-30
modified
description roundup of the notable Crypto developments
art monthlycrypto.jpg
layout post.njk
tags
blog
crypto
@bradoyler
bradoyler / december-2025-crypto-digest.md
Created December 26, 2025 14:54
Crypto News Digest - December 2025
title Crypto News Digest - December 2025
date 2025-12-26
modified
description roundup of the most notable Crypto developments
art cryptonews-december2025.jpeg
layout post.njk
tags
blog
crypto
code state pop_2014
AL Alabama 4849377
AK Alaska 736732
AZ Arizona 6731484
AR Arkansas 2966369
CA California 38802500
CO Colorado 5355866
CT Connecticut 3596677
DE Delaware 935614
DC District of Columbia 658893
@bradoyler
bradoyler / .block
Last active October 11, 2025 06:18
Crude Oil Pipelines in US
license: mit
@bradoyler
bradoyler / sleepSort.js
Last active May 25, 2025 10:40
sorting algorithm using setTimeout
function sleepSort(arr) {
arr.forEach((n) => setTimeout(() => console.log(n), n))
}
const arr = [9, 5, 3, 99, 11, 2, 0]
sleepSort(arr)
/* stdout:
0
2
@bradoyler
bradoyler / .block
Last active September 12, 2024 04:39
crime rates in US cities
license: mit
@bradoyler
bradoyler / DataContextWrapper.cs
Created November 2, 2012 13:01
A DataContext wrapper for LINQ to SQL model.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Common;
using System.Data.Linq;
namespace MyApp.Models.DataContextWrapper
{
public interface IDataContextWrapper