Skip to content
View stewSquared's full-sized avatar
⭐
Advent of Code 2023
⭐
Advent of Code 2023

Organizations

@recursecenter @nescalas @scalabridge
Block or Report

Block or report stewSquared

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
stewSquared/README.md

Hi there πŸ‘‹

  • πŸŽ„ I'm currently doing Advent of Code 2023, and I'd like to share the experience with you!
  • πŸ”΄ I live stream every night on Twitch and YouTube when the problem comes out.
  • :octocat: All of my solutions are right here on GitHub.
  • πŸ“Š Compete on my leaderboard with code 1567548-37bb9c26.
  • πŸ’¬ Or chat with me about it in Discord.

Pinned

  1. advent-of-code advent-of-code Public

    https://adventofcode.com/

    Scala 8

  2. ukanren ukanren Public

    Relational Programming DSL in Scala. Yet another minikanren port!

    Scala 13 2

  3. twisty-groups twisty-groups Public

    Code for my talk "Solving the Rubik's Cube with Group Theory"

    Scala 9 1

  4. pe-speedrun pe-speedrun Public

    2020 Project Euler 1-100 Speedrun in Scala #ProjectEuler100

    Scala 3

  5. scalajs-proset scalajs-proset Public

    A sample Scala.js game implementation. Uses scalatags, utest, and scalajs-jQuery.

    Scala 3

  6. CombinatoryLogic.scala CombinatoryLogic.scala
    1
    /**
    2
      * The following is an implementation of Combinatory Logic as a scala DSL. It
    3
      * is evaluated using head-first graph reduction, as described in "Compiling
    4
      * Functional Languages" by Antoni Diller. This particular gist is adapted from
    5
      * https://github.com/drivergroup/spn-combinatory-logic which I wrote for Scala