Skip to content

Instantly share code, notes, and snippets.

View pmcgee69's full-sized avatar

Paul McGee pmcgee69

  • Perth, Western Australia
View GitHub Profile
@pmcgee69
pmcgee69 / Simplified Auto Ref Counting.txt
Created August 3, 2023 15:59 — forked from Pasquina/Simplified Auto Ref Counting.txt
A Delphi Console Application to illustrate Automatic Reference Counting (Simplified)
program AutoFreeTest;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils,
System.Classes;
type
IAutoFree = interface
@pmcgee69
pmcgee69 / delphi_blogs.md
Last active February 27, 2023 14:31
Delphi blogs

"Jarrod Hollingworth" "Colin Johnsun" "Graham Ritchie" "Ian Krigsman" "James D Duff" "Kim Bracknell" "Mathias Burbach" "Misha Charrett" "Niels Maschmeyer" "Paul Jervois"

@pmcgee69
pmcgee69 / repos.md
Last active February 27, 2023 14:26
Delphi repos located away from Github

Keybase proof

I hereby claim:

  • I am pmcgee69 on github.
  • I am paulmcgee (https://keybase.io/paulmcgee) on keybase.
  • I have a public key whose fingerprint is 8DD8 B479 B84A 1A98 2477 F21B A694 C45B C584 7FFE

To claim this, I am signing this object:

@pmcgee69
pmcgee69 / ReaderScript.hs
Last active April 19, 2021 21:21
Exploring the Reader functor
-- Reader / unReader syntax
newtype Reader e a = Reader { unReader :: e -> a }
:t Reader
:t unReader