Skip to content
View p4bl0-'s full-sized avatar
🧄
🔴⚫
🧄
🔴⚫

Organizations

@dissemin

Block or report p4bl0-

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

Pinned Loading

  1. A complete compiler for a simple lan... A complete compiler for a simple language (in less than 150 LoC)
    1
    This project is a tiny compiler for a very simple language consisting of boolean expression.
    2
    
                  
    3
    The language has two constants: `1` for true and `0` for false, and 4 logic gates:
    4
    `!` (not), `&` (and), `|` (or), and `^` (xor).
    5
    
                  
  2. Pure HTML playable TicTacToe game (n... Pure HTML playable TicTacToe game (no CSS nor JavaScript) in 367KB
    1
    This is an attempt to see how small a pure HTML playable TicTacToe game can be. The first script (`ttt.py`) generates a 560KB HTML file.
    2
    
                  
    3
    - The game is playable at https://pablo.rauzy.name/dev/ttt.html
    4
    
                  
    5
    I made it in reaction to this Hacker News post: [Implementing Tic Tac Toe with 170MB of HTML – No JavaScript or CSS](https://news.ycombinator.com/item?id=38261232), because my reaction to "170MB" was "_wait, **WAT?**_".