Skip to content

Instantly share code, notes, and snippets.

View NuSkooler's full-sized avatar
💭
Mostly focusing on ENiGMA right now

Bryan Ashby NuSkooler

💭
Mostly focusing on ENiGMA right now
View GitHub Profile
@eggy
eggy / enigma.txt
Last active August 31, 2020 20:18
ENiGMA½ BBS on a Raspberry Pi
ENiGMA½ BBS on a Raspberry Pi
Notes on setting up ENiGMA½ BBS and connecting it to a messaging network as a point node.
The notes assume you have setup the Raspberry Pi with ssh access.
My setup:
- Raspberry Pi, running raspbian fsxNet (21:4/143.1) “Eggy Pi BBS”
- Boss node is running Mystic BBS connected to fsxNet (21:4/143) “Eggy BBS”
ENiGMA½ BBS Side
On the Raspberry Pi setup ENiGMA½ BBS per github instructions:
curl -o- https://raw.githubusercontent.com/NuSkooler/enigma-bbs/master/misc/install.sh | bash
@egmontkob
egmontkob / Hyperlinks_in_Terminal_Emulators.md
Last active May 24, 2024 08:00
Hyperlinks in Terminal Emulators
Name Read Write Reference
Crashmail (Amiga) 39, 45, 48 39 [1][CM-1], [2][CM-2]
Crashmail II 39, 45, 48 39 [1][C2-1]
Daydream BBS 39, 48 48 [1][DD-1]
FastEcho 39, 45, 48 39 1
Fidogate 39 39 [1][FG-1], [2][FG-2]
FMail 39, 48 39 [1][FM-1]
GEcho 39, 45, 48 39 1
Husky hpt 39, 48 39 [1][HU-1], [2][HU-2]
@geoah
geoah / 1-0-Preface.md
Last active March 2, 2016 17:42
[RFC]

Preface

TL;DR

This is a rant about how a decentralized network for storing structured data might look like.
The goal is to allow third party developers to build applications and services that use it as a data-store and allow users to switch between any application or service without loosing their data.

@gerbsen
gerbsen / ssh_agent_start.fish
Last active January 26, 2024 08:13 — forked from schaary/ssh_agent_start.fish
Auto-launching ssh-agent in fish shell
# content has to be in .config/fish/config.fish
# if it does not exist, create the file
setenv SSH_ENV $HOME/.ssh/environment
function start_agent
echo "Initializing new SSH agent ..."
ssh-agent -c | sed 's/^echo/#echo/' > $SSH_ENV
echo "succeeded"
chmod 600 $SSH_ENV
. $SSH_ENV > /dev/null
@hofnerb
hofnerb / sparse_clones.md
Last active February 6, 2024 22:07
Make sparse clone
git init <repo>
cd <repo>
git remote add -f origin <url>

This creates an empty repository with your remote, and fetches all objects but doesn't check them out. Then do:

git config core.sparseCheckout true
@XVilka
XVilka / TrueColour.md
Last active May 28, 2024 13:30
True Colour (16 million colours) support in various terminal applications and terminals

THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.

PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!

@branneman
branneman / better-nodejs-require-paths.md
Last active April 27, 2024 04:16
Better local require() paths for Node.js

Better local require() paths for Node.js

Problem

When the directory structure of your Node.js application (not library!) has some depth, you end up with a lot of annoying relative paths in your require calls like:

const Article = require('../../../../app/models/article');

Those suck for maintenance and they're ugly.

Possible solutions

@jexchan
jexchan / multiple_ssh_setting.md
Created April 10, 2012 15:00
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"
@mtigas
mtigas / gist:952344
Last active April 3, 2024 07:57
Mini tutorial for configuring client-side SSL certificates.

Client-side SSL

For excessively paranoid client authentication.


Updated Apr 5 2019:

because this is a gist from 2011 that people stumble into and maybe you should AES instead of 3DES in the year of our lord 2019.

some other notes: