Skip to content

Instantly share code, notes, and snippets.

View RealSGII2's full-sized avatar
:shipit:

RealSGII2 RealSGII2

:shipit:
View GitHub Profile
How much does a rainbow weigh? I dunno, but I think it's pretty light.
Why does the Mexican take medicine? For Hispanic attacks
@RealSGII2
RealSGII2 / mee6-languages.md
Last active August 22, 2023 18:16
Languages used to make MEE6

MEE6 Languages

List of languages

These are all the languages used.

  • [REDACTED] not used anymore (idk if it ever was)
  • [REDACTED]
  • [REDACTED]
  • [REDACTED]
  • [REDACTED]
  • [REDACTED]
  • [REDACTED]
@mattjj
mattjj / websocketcat-receive.js
Created October 27, 2012 20:47
a tiny node.js server that routes stdin to a websocket
var socket = io.connect(window.location.host);
var received;
socket.on('data', function (data) {
received = JSON.parse(data);
});