Skip to content

Instantly share code, notes, and snippets.

View RichardB01's full-sized avatar
Drinking coffee and coding!

Richard Bamford RichardB01

Drinking coffee and coding!
  • England
  • 05:04 (UTC)
View GitHub Profile
@RichardB01
RichardB01 / utilx.lua
Created April 24, 2012 19:03
UtilX - A collab lua gmod function library.
-----------------------------------
-- utilx
-- A project stared by Gbps
-- expanded with community input
-----------------------------------
utilx = {}
utilx.Version = 1.0
--------------------
@dypsilon
dypsilon / frontendDevlopmentBookmarks.md
Last active October 26, 2025 08:45
A badass list of frontend development resources I collected over time.
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>Stripe Getting Started Form</title>
<!-- The required Stripe lib -->
<script type="text/javascript" src="https://js.stripe.com/v2/"></script>
<!-- jQuery is used only for this example; it isn't required to use Stripe -->
@rxaviers
rxaviers / gist:7360908
Last active October 26, 2025 23:07
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@tylerneylon
tylerneylon / json.lua
Last active August 30, 2025 14:12
Pure Lua json library.
--[[ json.lua
A compact pure-Lua JSON library.
The main functions are: json.stringify, json.parse.
## json.stringify:
This expects the following to be true of any tables being encoded:
* They only have string or number keys. Number keys must be represented as
strings in json; this is part of the json spec.
@jose-mdz
jose-mdz / README.md
Last active July 31, 2025 10:42
Orthogonal Diagram Connector

Orthogonal Connectors

This algorithm returns the points that form an orthogonal path between two rectangles.

How to Use

// Define shapes
const shapeA = {left: 50,  top: 50, width: 100, height: 100};
const shapeB = {left: 200, top: 200, width: 50, height: 100};