Skip to content

Instantly share code, notes, and snippets.

@Telokis
Telokis / README.md
Created February 21, 2024 10:03
Telo's Adventure Land UI stuff

This is a small collection of UI things I made for Adventure Land.

ui_bank.ts

This one is the overall bank UI that's already been shown several times on Discord. Mine will print a nice item name when hovering over an entry and group items by .p modifier with an icon in the top right corner.

inject.ts

@Telokis
Telokis / Dockerfile
Last active April 5, 2017 20:20
Dockerfile for ninetainedo/nodebb docker image
FROM ubuntu:14.04
MAINTAINER Telokis
RUN apt-get -y update && apt-get -y install git curl
RUN curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
RUN apt-get install -y nodejs
RUN cd / ; git clone -b v1.4.5 https://github.com/NodeBB/NodeBB nodebb
RUN cd /nodebb ; npm i