Skip to content

Instantly share code, notes, and snippets.

View mpconley's full-sized avatar

Mike Conley mpconley

View GitHub Profile
@oestrich
oestrich / OAuth.md
Last active January 6, 2024 14:40
OAuth for Telnet

OAuth for Clients

Telnet Option

Constants:

  • IAC: 255
  • WILL: 251
  • WONT: 252
  • DO: 253
@gesslar
gesslar / geo.c
Last active March 17, 2022 10:33
FluffOS - Script to use external_start() to integrate with IP-API.com for Geolocation
// /adm/daemons/geo.c
// Daemon to get and store GeoLocation
//
// Created: 2022/03/17: Gesslar
// Last Change: 2022/03/17: Gesslar
//
// 2022/03/17: Gesslar - Created
#include <config.h>
@cpu
cpu / LICENSE
Last active May 19, 2022 10:32
LPC BK-Tree data structure and True Damerau-Levenshtein Distance implementation for command suggestions/spellchecking.
The MIT License (MIT)
Copyright (c) 2022 Daniel McCarney
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@gesslar
gesslar / graphing.c
Created July 21, 2022 19:14
LPC code for graphing
// /adm/daemons/global_graphing.c
// Plugin to the globals daemon for graphing ([ string label : int value ])
// can also take an array of strings in the form of: label|value
// or a string with lines in the same string form as above
//
// Created: 2010/09/07: Gesslar
// Last Change: 2010/09/07: Gesslar
//
// 2010/09/07: Gesslar - Created