Skip to content

Instantly share code, notes, and snippets.

View RNGKing's full-sized avatar

Patrick A Phillips RNGKing

  • Huntsville, Alabama
View GitHub Profile
@RNGKing
RNGKing / day_2.gleam
Created December 2, 2023 19:34
AoC in Gleam
import simplifile as file
import gleam/string
import gleam/regex.{type Regex}
import gleam/io
import gleam/list
import gleam/int
import gleam/bool
pub type Game {
Game(id: Int, red: Int, blue: Int, green: Int)
@RNGKing
RNGKing / gleam.html.markdown
Last active March 17, 2024 04:31
Learn X in Y Minutes Gleam Proposal!
@RNGKing
RNGKing / cargo.toml
Created June 28, 2023 05:25
Something is not quite right with how I made the action works in Leptos?
[package]
name = "leptos_frontend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
leptos = "0.3.1"
reqwasm = "0.5"