Skip to content

Instantly share code, notes, and snippets.

View saquibntt's full-sized avatar

Saquib Rashid saquibntt

  • Esolutions
  • Ingolstadt
View GitHub Profile
@hofmannsven
hofmannsven / README.md
Last active February 24, 2026 02:03
Git CLI Cheatsheet
@tylerneylon
tylerneylon / learn.lua
Last active April 29, 2026 09:38
Learn Lua quickly with this short yet comprehensive and friendly script. It's written as both an introduction and a quick reference. It's also a valid Lua script so you can verify that the code does what it says, and learn more by modifying and running this script in your Lua interpreter.
-- Two dashes start a one-line comment.
--[[
Adding two ['s and ]'s makes it a
multi-line comment.
--]]
----------------------------------------------------
-- 1. Variables and flow control.
----------------------------------------------------