Skip to content
View 2bam's full-sized avatar
  • Valencia, Spain
  • 11:16 (UTC +01:00)

Block or report 2bam

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. 2bam-webgl-logo 2bam-webgl-logo Public

    An animated logo for 2bam webpage

    TypeScript 1

  2. NativeJoystick NativeJoystick Public archive

    AIR Native Extension (ANE) to support joysticks natively on the Windows platform.

    ActionScript 5 2

  3. Dungeons and diagrams like puzzle ge... Dungeons and diagrams like puzzle generator using DFS/backtracking
    1
    //
    2
    // Dungeons and diagrams like puzzle generator
    3
    // 2bam.com 2024
    4
    //
    5
    // There's room for improvement (in C):
  4. Acceptable way to pin/fix structs fo... Acceptable way to pin/fix structs for C#-C interop including swap chain arrays by using-Dispose pattern without GetPinnableReference because that's garbage.
    1
    internal class CInteropProxy {
    2
        [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
    3
        unsafe delegate int C_stepDelegate(World.Pinned* world);
    4
    
                  
    5
        C_stepDelegate? c_step; // Set with kernel32.dll GetProcAddress()