Skip to content

Instantly share code, notes, and snippets.

@youhide
youhide / uobrlist
Last active June 2, 2021 16:41
UOBrasil SharD List
{
"shards": {
"0": {
"name": "HellFire",
"site": "www.hfshard.com.br",
"server": "Sphere",
"host": "hellfire.changeip.com",
"port": 2593
},
"1": {
@youhide
youhide / Delete NodeJS
Created April 1, 2019 21:02
How to uninstall NodeJS
Download NodeJS source...
./configure
and...
make uninstall
:)
@youhide
youhide / sphereServInfo.js
Last active December 6, 2019 13:42
Ultima Online Sphere Server Info Packet
'use strict'
const net = require('net')
module.exports = {
totalPlayers: function (loginserv, port = 2593) {
const client = new net.Socket()
client.on('close', () => {
@youhide
youhide / build.yml
Created October 25, 2019 18:45
GitHub Actions - Build for Windows, MacOS, Linux and release on tag.
name: Node CI
on:
push:
tags:
- 'v*'
jobs:
upload-release: