I’m sure people have seen many screenshots of our GT tooling and wonder “how do I get that”
Well ask no more, linked below is a small tutorial that shows you how to get up to speed in less than 5 minute.
Here is the GT repository:
Remember it’s good to grab new images regularly
Here is the startup script (same directory in startup.st):
Smalltalk globals
at: #BaselineOfMiscGTScripts
ifAbsent: [ Metacello new
repository: 'github://mariari/Misc-GT-Scripts:master/src';
baseline: #MiscGTScripts;
load.
#BaselineOfMiscGTScripts asClass loadLepiter ].
Smalltalk globals
at: #BaselineOfGtPresentations
ifAbsent: [ Metacello new
repository: 'github://anoma/gt-documents:master/src';
baseline: #GtPresentations;
load.
#BaselineOfGtPresentations asClass loadLepiter ].
Smalltalk globals
at: #BaselineOfTheDominionBible
ifAbsent: [ Metacello new
repository: 'github://anoma/dominion:base/src';
baseline: #TheDominionBible;
load.
#BaselineOfTheDominionBible asClass loadLepiter ]