Skip to content
View ctntc's full-sized avatar
🦀
Feeling Rusty?
🦀
Feeling Rusty?
  • Burgos
  • 22:59 (UTC +01:00)

Highlights

  • Pro

Block or report ctntc

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
ctntc/README.md

ctntc banner

I like backend stuff, compilers, virtual machines and application development.

Rust is my favorite language, and I'm the most productive with it. Currently spending time learning more about C# and the .NET platform in general.

Techonologies

Rust
Rust
C#
C#
Java
Java
C++
C++
Dart
Dart
Deno
Deno (TS & JS)
TypeScript JavaScript
PostgreSQL
PostgreSQL
SQLite
SQLite3
DuckDB
DuckDB
Flutter
Flutter

Pinned Loading

  1. Simple Shunting Yard in Rust Simple Shunting Yard in Rust
    1
    //! A simple shunting yard implementation in Rust.
    2
    //!
    3
    //! This implementation handles only singe-digit integers as well as parentheses.
    4
    //! You could use a Peekable iterator to handle more complex numbers.
    5