Skip to content
View marccane's full-sized avatar
Block or Report

Block or report marccane

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

  1. SAT-IT SAT-IT Public

    Visual and interactive tool to visualize, learn about, and step through the resolution of SAT CNF formulas

    Java 1

  2. LANSet LANSet Public

    ANTLR4 Toy language compiler that generates JVM Bytecode

    Java 2

  3. TileSAT TileSAT Public

    Reduces the Wang tiles (aka Wang dominoes) problem to SAT and solves it with minisat

    C++

  4. Script to extract 3DS PICA200 shader... Script to extract 3DS PICA200 shaders from (decrypted) binaries which can then be disassembled with aemstro or nihstro. Should work on anything like .cia .3ds .3dsx... Writes each shader in a .shbin file in the current directory.
    1
    #!/bin/python3
    2
    #https://problemkaputt.de/gbatek-3ds-files-video-shaders-dvlb-and-dvob-format.htm
    3
    import sys, mmap, struct as s
    4
    magic = b"DVLB"
    5
    magicDVLE = b'DVLE'