Skip to content
View superllama's full-sized avatar

Block or report superllama

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. gravityhull gravityhull Public

    Gravity Hull Designator mod for Garry's Mod

    Lua 3 3

  2. A Chip-8 Emulator written in PowerShell A Chip-8 Emulator written in PowerShell
    1
    param(
    2
    	[string]$rom,
    3
    	[int]$cpulimit = 0,
    4
    	[switch]$nowrap = $false,
    5
    	[switch]$noclear = $false
  3. An x86 assembler... in VBScript, for... An x86 assembler... in VBScript, for some reason. Includes two unfinished EXE projects.
    1
    ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    2
    ' Hit Ctrl+F and find the second instance of "here"
    3
    ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    4
    exetxt = ""
    5
    loc = 0
  4. a throwaway C++ program that uses Wi... a throwaway C++ program that uses WinAPI calls to fix a very specific scrollbar issue caused by ActiveX controls on a specific intranet website on a specific version of Windows 10
    1
    #define WIN32_LEAN_AND_MEAN
    2
    #include <Windows.h>
    3
    //detect if the scrollbar is one of the ones affected by the bug
    4
    bool IsBrokenScrollbar(HWND hw) {
    5
    	char clsname[256];
  5. A PNG Decoder I wrote years ago that... A PNG Decoder I wrote years ago that has an unfindable bug with some images and also relies on strange header files, but otherwise works
    1
    #include "guts.h"
    2
    #include "png.h"
    3
    #include "mem.h"
    4
    static unsigned int flip(unsigned int x)
    5
    {
  6. a test to mess with the windows game... a test to mess with the windows gamepad API to show a friend a bare minimum example for collecting joystick data
    1
    #pragma comment(lib, "hid.lib")
    2
    #include <stdio.h>
    3
    #include <Windows.h>
    4
    #include <hidsdi.h>
    5
    LRESULT CALLBACK dummy_wndproc(HWND wnd, UINT msg, WPARAM wp, LPARAM lp) {