Skip to content
View Wendelstein7's full-sized avatar
❤️
Making the world a better place
❤️
Making the world a better place
  • The Netherlands

Organizations

@tmpim @SwitchCraftCC
Block or Report

Block or report Wendelstein7

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

    A fully functional public Discord bot that automatically corrects non-SI units (imperial, etc) to SI-ones (metric, etc)

    Python 11 11

  2. DiscordHook-CC DiscordHook-CC Public

    This is DiscordHook, an easy-to-use lua library for connecting ComputerCraft to Discord.

    Lua 22 2

  3. ARCore-CC ARCore-CC Public

    A library for ComputerCraft with Plethora that handles perspective projection for creating VR/AR applications with the overlay glasses.

    Lua 2

  4. palPal-CC palPal-CC Public

    palPal allows you to store the entire current palette of a given terminal object into a table which you can manipulate, save and load again to any given terminal object.

    Lua 1

  5. Bitwise operation macros (Compatible... Bitwise operation macros (Compatible with C, C++, C#, etc...)
    1
    #define isBitSet(byte, bit) ((byte) & (1 << (bit)))
    2
    
    
    3
    #define setBit(byte, bit) ((byte) |= (1 << (bit)))
    4
    #define clearBit(byte, bit) ((byte) &= ~(1 << (bit)))
    5
    #define toggleBit(byte, bit) ((byte) ^= (1 << (bit)))
  6. SquidDev-CC/FAQBot-CC SquidDev-CC/FAQBot-CC Public

    A Discord bot for answering frequently asked questions regarding CC.

    F# 7 10