Skip to content

Instantly share code, notes, and snippets.

View iczero's full-sized avatar
🪲
i made bugs

iczero iczero

🪲
i made bugs
View GitHub Profile
@iczero
iczero / fizzbuzz.ipynb
Created March 10, 2024 00:21
FizzBuzz in PyTorch
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@iczero
iczero / memes.ts
Created March 14, 2024 18:46
Raising the Ceiling(TM)
type Value = ObjectValue | ArrayValue | StringValue | NumberValue | BooleanValue;
interface ObjectValue {
type: 'object';
values: Record<string, Value>;
optional?: boolean;
}
interface ArrayValue {
type: 'array',