Skip to content

Instantly share code, notes, and snippets.

View ajruckman's full-sized avatar

A.J. Ruckman ajruckman

  • Oak Ridge National Laboratory
  • Knoxville, Tennessee
View GitHub Profile
@ajruckman
ajruckman / sentences.md
Last active May 16, 2021 01:16
Sentences

Chain length 4

Short sentences

They got to get him in the next game against the Jets were not the Leafs best at all.
And the Leafs go to the penalty kill.
Didn’t see that coming. Hat guy: I don’t know why Matthews is involved there.
You’re gonna be a chonky boy by the end of the game it got absurd in my opinion.
And this is what Frederik Andersen has to deal with and come back and WIN - is nothing short of Herculean.
He has laid some, but that’s not the first thing you do when you get home from work?
But for now, folks that is it for this one thank you very much for watching.

using System;
namespace Infrastructure
{
public class ThreadSafeCache<T> where T : class?
{
private readonly object _lock = new object();
private T _value = default!;
private bool _hasSet;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo</title>
<link rel="icon" href="/static/favicon.ico" type="image/x-icon">
<script src="/static/script/script.js"></script>
@ajruckman
ajruckman / animals.txt
Created July 12, 2018 14:31
Big list (4000+) of animal names from Wikipedia
Aardvark
Aardwolf
Aba roundleaf bat
Abbott's duiker
Abo bat
Abrothrix jelskii
Abyssinian genet
Abyssinian grass rat
Acacia rat
Aceh rat
@ajruckman
ajruckman / Caddyfile
Last active July 11, 2018 15:59
Golang WebAssembly crashes
localhost
mime {
.wasm application/wasm
}
gzip {
ext *
}