Skip to content

Instantly share code, notes, and snippets.

@cliveyg
cliveyg / gforth_cheat_sheet.md
Created January 7, 2021 09:36 — forked from RickCarlino/gforth_cheat_sheet.md
gforth cheat sheet

Math

  • .s - Show the stack
  • +, -, *, mod - Math operators
  • /mod - performs both / and mod

Stack manipulation

  • drop and 2drop - drop a stack item (once / twice)
  • dup - duplicate a stack item
  • rot - rotate the stack
@cliveyg
cliveyg / Auction_Software_Documentation_Part_Five.md
Last active August 23, 2023 07:28
Microservice Based Auction Software - Part Five
@cliveyg
cliveyg / Auction_Software_Documentation_Part_Three.md
Last active November 6, 2019 10:29
Microservice Based Auction Software - Part Three
@cliveyg
cliveyg / Auction_Software_Documentation_Part_Four.md
Last active October 16, 2019 13:36
Microservice Based Auction Software - Part Four
@cliveyg
cliveyg / Auction_Software_Documentation_Part_Two.md
Last active October 16, 2019 14:17
Microservice Based Auction Software - Part Two
@cliveyg
cliveyg / Auction_Software_Documentation_Part_One.md
Last active December 24, 2024 10:09
Microservice Based Auction Software - Part One

Microservice Based Auction Software - Part One

Document purpose

The purpose of this document is to provide an overview of the auction software I'm writing that uses a microservice based design pattern. Detailed below are the various microservices (with links to their individual Github repo's) and an explantion of how they all fit together to form an auction application. Also discussed are why I chose the approaches I did and some of the advantages and disadvantages of my choices.

Contents