Skip to content
View darksunlight's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report darksunlight

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
darksunlight/README.md

projects working on

  • impulse chat (mainly backend, trying to do some frontend work as well)

languages

  • TS/JS
  • a tiny bit of c++
  • a bit of lua
  • a bit of wikitext with ParserFunctions (esoteric!)
  • a bit of python

Pinned Loading

  1. Minecraft LAN World receiver (nodejs) Minecraft LAN World receiver (nodejs)
    1
    const dgram = require('dgram');
    2
    const socket = dgram.createSocket('udp4');
    3
    socket.bind(4445, '0.0.0.0');
    4
    socket.on("message", (data, rinfo) => {
    5
        const [, desc, port] = data.toString().match(/^\[MOTD\](.*)\[\/MOTD\]\[AD\](\d+)\[\/AD]$/);
  2. Impulse API Updates (Jul 2022) Impulse API Updates (Jul 2022)
    1
    # Impulse Backend Changes (Jul 2022)
    2
    This backend update introduces significant changes to the gateway. There are no changes to the HTTP API.
    3
    
                  
    4
    [The official web client](https://impulse.chat/app) has been updated to accomodate these changes.
    5