Skip to content

Instantly share code, notes, and snippets.

View mttchpmn's full-sized avatar
✌️

Matt Chapman mttchpmn

✌️
View GitHub Profile
@debarko
debarko / lua-cheatsheet.lua
Created April 27, 2018 19:45
LUA Cheatsheet for starting to program in Lua for experienced developers
------------------------------------------------------------------
------------------------------------------------------------------
------------LUA SUMMARY-------------------------------------------
------------------------------------------------------------------
------------------------------------------------------------------
--This is a comment. For Lua, comments are invisible.
--We can type everything we want in here, without causing errors
--To make a multi-line comment we use --[[]]
@FrancesCoronel
FrancesCoronel / sampleREADME.md
Last active March 26, 2024 01:21
A sample README for all your GitHub projects.

Repository Title Goes Here

Frances Coronel

INSERT GRAPHIC HERE (include hyperlink in image)

Subtitle or Short Description Goes Here

ideally one sentence >

@davidfowl
davidfowl / dotnetlayout.md
Last active June 28, 2024 10:57
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/
@tracker1
tracker1 / 01-directory-structure.md
Last active June 17, 2024 15:54
Anatomy of a JavaScript/Node project.

Directory structure for JavaScript/Node Projects

While the following structure is not an absolute requirement or enforced by the tools, it is a recommendation based on what the JavaScript and in particular Node community at large have been following by convention.

Beyond a suggested structure, no tooling recommendations, or sub-module structure is outlined here.

Directories

  • lib/ is intended for code that can run as-is
  • src/ is intended for code that needs to be manipulated before it can be used
@spicycode
spicycode / tmux.conf
Created September 20, 2011 16:43
The best and greatest tmux.conf ever
# 0 is too far from ` ;)
set -g base-index 1
# Automatically set window title
set-window-option -g automatic-rename on
set-option -g set-titles on
#set -g default-terminal screen-256color
set -g status-keys vi
set -g history-limit 10000