├── .gitattributes ├── .gitignore ├── Hierarchy.xlsx ├── LICENSE ├── PharoGs.md5 ├── PharoGsExport.st ├── PharoGsMethods.txt ├── PharoMods ├── Adler32.gs ├── Array.gs ├── ArrayedCollection.gs ├── AsyncFile.gs ├── Behavior.gs ├── BlockClosure.gs ├── Boolean.gs ├── BoxedFloat64.gs ├── ByteArray.gs ├── ByteString.gs ├── ByteSymbol.gs ├── CRC.gs ├── CannotReturn.gs ├── Character.gs ├── Class.gs ├── ClassDescription.gs ├── CompiledCode.gs ├── CompiledMethod.gs ├── Context.gs ├── DateAndTime.gs ├── DeflateStream.gs ├── Delay.gs ├── DelayMicrosecondTicker.gs ├── DelayMillisecondTicker.gs ├── DelayWaitTimeout.gs ├── DependentsArray.gs ├── DiskStore.gs ├── DoubleByteArray.gs ├── DoubleWordArray.gs ├── Error.gs ├── Exception.gs ├── ExceptionSet.gs ├── ExternalAddress.gs ├── ExternalSemaphoreTable.gs ├── False.gs ├── FastInflateStream.gs ├── File.gs ├── FileReference.gs ├── Float.gs ├── FullBlockClosure.gs ├── GsFile.gs ├── Halt.gs ├── Integer.gs ├── IntegerArray.gs ├── InternetConfiguration.gs ├── Interval.gs ├── Job.gs ├── LargeInteger.gs ├── LocalTimeZone.gs ├── Locale.gs ├── MCClassDefinition.gs ├── MCTraitDefinition.gs ├── MCWorkingCopy.gs ├── MD5.gs ├── Message.gs ├── MessageNotUnderstood.gs ├── Metaclass.gs ├── MetaclassForTraits.gs ├── MethodDictionary.gs ├── MirrorPrimitives.gs ├── MonitorDelay.gs ├── MutexWrapper.gs ├── NetNameResolver.gs ├── Number.gs ├── OSPlatform.gs ├── Object.gs ├── PlatformResolver.gs ├── Pragma.gs ├── Process.gs ├── ProcessSpecificVariable.gs ├── Processor.gs ├── ProcessorScheduler.gs ├── ProtoObject.gs ├── SHA1.gs ├── ScaledDecimalGs.gs ├── Seaside.gs ├── Semaphore.gs ├── SemaphoreWrapper.gs ├── SessionManager.gs ├── SharedRandom.gs ├── SmallFloat64.gs ├── SmallFraction.gs ├── SmallInteger.gs ├── SmalltalkImage.gs ├── Socket.gs ├── SourceFileArray.gs ├── String.gs ├── Symbol.gs ├── SymbolDictionary.gs ├── SystemAnnouncer.gs ├── SystemDictionary.gs ├── SystemNavigation.gs ├── SystemResolver.gs ├── ThirtyTwoBitRegister.gs ├── Time.gs ├── TraitedMetaclass.gs ├── TranscriptStreamPortable.gs ├── True.gs ├── UIManager.gs ├── UUIDGenerator.gs ├── UndefinedObject.gs ├── VirtualMachine.gs ├── WeakArray.gs ├── WideString.gs ├── WideSymbol.gs ├── WordArray.gs ├── ZdcByteArrayManager.gs ├── ZdcPluginSSLSession.gs ├── ZdcSecureSocketStream.gs ├── ZipEncoder.gs ├── ZipWriteStream.gs └── ZnLogEvent.gs ├── README.md ├── exportFromPharo.sh ├── exportFromPharo.st ├── exportGsEdits.tpz ├── importGsEdits.tpz ├── importToGemStone.sh ├── importToGemStone.tpz └── notes ├── Class Types.txt ├── Common Classes.txt ├── GsNMethod fix.txt ├── Hierarchy.txt ├── Pharo in GemStone (James Foster 2017-09 ESUG).pdf ├── PharoGs.txt ├── ProfMon1.txt ├── Scripts.gs ├── Seaside.md └── Variations.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/.gitignore -------------------------------------------------------------------------------- /Hierarchy.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/Hierarchy.xlsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/LICENSE -------------------------------------------------------------------------------- /PharoGs.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoGs.md5 -------------------------------------------------------------------------------- /PharoGsExport.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoGsExport.st -------------------------------------------------------------------------------- /PharoGsMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoGsMethods.txt -------------------------------------------------------------------------------- /PharoMods/Adler32.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Adler32.gs -------------------------------------------------------------------------------- /PharoMods/Array.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Array.gs -------------------------------------------------------------------------------- /PharoMods/ArrayedCollection.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ArrayedCollection.gs -------------------------------------------------------------------------------- /PharoMods/AsyncFile.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/AsyncFile.gs -------------------------------------------------------------------------------- /PharoMods/Behavior.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Behavior.gs -------------------------------------------------------------------------------- /PharoMods/BlockClosure.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/BlockClosure.gs -------------------------------------------------------------------------------- /PharoMods/Boolean.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Boolean.gs -------------------------------------------------------------------------------- /PharoMods/BoxedFloat64.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/BoxedFloat64.gs -------------------------------------------------------------------------------- /PharoMods/ByteArray.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ByteArray.gs -------------------------------------------------------------------------------- /PharoMods/ByteString.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ByteString.gs -------------------------------------------------------------------------------- /PharoMods/ByteSymbol.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ByteSymbol.gs -------------------------------------------------------------------------------- /PharoMods/CRC.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/CRC.gs -------------------------------------------------------------------------------- /PharoMods/CannotReturn.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/CannotReturn.gs -------------------------------------------------------------------------------- /PharoMods/Character.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Character.gs -------------------------------------------------------------------------------- /PharoMods/Class.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Class.gs -------------------------------------------------------------------------------- /PharoMods/ClassDescription.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ClassDescription.gs -------------------------------------------------------------------------------- /PharoMods/CompiledCode.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/CompiledCode.gs -------------------------------------------------------------------------------- /PharoMods/CompiledMethod.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/CompiledMethod.gs -------------------------------------------------------------------------------- /PharoMods/Context.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Context.gs -------------------------------------------------------------------------------- /PharoMods/DateAndTime.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/DateAndTime.gs -------------------------------------------------------------------------------- /PharoMods/DeflateStream.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/DeflateStream.gs -------------------------------------------------------------------------------- /PharoMods/Delay.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Delay.gs -------------------------------------------------------------------------------- /PharoMods/DelayMicrosecondTicker.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/DelayMicrosecondTicker.gs -------------------------------------------------------------------------------- /PharoMods/DelayMillisecondTicker.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/DelayMillisecondTicker.gs -------------------------------------------------------------------------------- /PharoMods/DelayWaitTimeout.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/DelayWaitTimeout.gs -------------------------------------------------------------------------------- /PharoMods/DependentsArray.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/DependentsArray.gs -------------------------------------------------------------------------------- /PharoMods/DiskStore.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/DiskStore.gs -------------------------------------------------------------------------------- /PharoMods/DoubleByteArray.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/DoubleByteArray.gs -------------------------------------------------------------------------------- /PharoMods/DoubleWordArray.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/DoubleWordArray.gs -------------------------------------------------------------------------------- /PharoMods/Error.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Error.gs -------------------------------------------------------------------------------- /PharoMods/Exception.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Exception.gs -------------------------------------------------------------------------------- /PharoMods/ExceptionSet.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ExceptionSet.gs -------------------------------------------------------------------------------- /PharoMods/ExternalAddress.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ExternalAddress.gs -------------------------------------------------------------------------------- /PharoMods/ExternalSemaphoreTable.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ExternalSemaphoreTable.gs -------------------------------------------------------------------------------- /PharoMods/False.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/False.gs -------------------------------------------------------------------------------- /PharoMods/FastInflateStream.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/FastInflateStream.gs -------------------------------------------------------------------------------- /PharoMods/File.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/File.gs -------------------------------------------------------------------------------- /PharoMods/FileReference.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/FileReference.gs -------------------------------------------------------------------------------- /PharoMods/Float.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Float.gs -------------------------------------------------------------------------------- /PharoMods/FullBlockClosure.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/FullBlockClosure.gs -------------------------------------------------------------------------------- /PharoMods/GsFile.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/GsFile.gs -------------------------------------------------------------------------------- /PharoMods/Halt.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Halt.gs -------------------------------------------------------------------------------- /PharoMods/Integer.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Integer.gs -------------------------------------------------------------------------------- /PharoMods/IntegerArray.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/IntegerArray.gs -------------------------------------------------------------------------------- /PharoMods/InternetConfiguration.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/InternetConfiguration.gs -------------------------------------------------------------------------------- /PharoMods/Interval.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Interval.gs -------------------------------------------------------------------------------- /PharoMods/Job.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Job.gs -------------------------------------------------------------------------------- /PharoMods/LargeInteger.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/LargeInteger.gs -------------------------------------------------------------------------------- /PharoMods/LocalTimeZone.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/LocalTimeZone.gs -------------------------------------------------------------------------------- /PharoMods/Locale.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Locale.gs -------------------------------------------------------------------------------- /PharoMods/MCClassDefinition.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/MCClassDefinition.gs -------------------------------------------------------------------------------- /PharoMods/MCTraitDefinition.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/MCTraitDefinition.gs -------------------------------------------------------------------------------- /PharoMods/MCWorkingCopy.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/MCWorkingCopy.gs -------------------------------------------------------------------------------- /PharoMods/MD5.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/MD5.gs -------------------------------------------------------------------------------- /PharoMods/Message.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Message.gs -------------------------------------------------------------------------------- /PharoMods/MessageNotUnderstood.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/MessageNotUnderstood.gs -------------------------------------------------------------------------------- /PharoMods/Metaclass.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Metaclass.gs -------------------------------------------------------------------------------- /PharoMods/MetaclassForTraits.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/MetaclassForTraits.gs -------------------------------------------------------------------------------- /PharoMods/MethodDictionary.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/MethodDictionary.gs -------------------------------------------------------------------------------- /PharoMods/MirrorPrimitives.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/MirrorPrimitives.gs -------------------------------------------------------------------------------- /PharoMods/MonitorDelay.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/MonitorDelay.gs -------------------------------------------------------------------------------- /PharoMods/MutexWrapper.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/MutexWrapper.gs -------------------------------------------------------------------------------- /PharoMods/NetNameResolver.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/NetNameResolver.gs -------------------------------------------------------------------------------- /PharoMods/Number.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Number.gs -------------------------------------------------------------------------------- /PharoMods/OSPlatform.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/OSPlatform.gs -------------------------------------------------------------------------------- /PharoMods/Object.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Object.gs -------------------------------------------------------------------------------- /PharoMods/PlatformResolver.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/PlatformResolver.gs -------------------------------------------------------------------------------- /PharoMods/Pragma.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Pragma.gs -------------------------------------------------------------------------------- /PharoMods/Process.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Process.gs -------------------------------------------------------------------------------- /PharoMods/ProcessSpecificVariable.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ProcessSpecificVariable.gs -------------------------------------------------------------------------------- /PharoMods/Processor.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Processor.gs -------------------------------------------------------------------------------- /PharoMods/ProcessorScheduler.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ProcessorScheduler.gs -------------------------------------------------------------------------------- /PharoMods/ProtoObject.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ProtoObject.gs -------------------------------------------------------------------------------- /PharoMods/SHA1.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/SHA1.gs -------------------------------------------------------------------------------- /PharoMods/ScaledDecimalGs.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ScaledDecimalGs.gs -------------------------------------------------------------------------------- /PharoMods/Seaside.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Seaside.gs -------------------------------------------------------------------------------- /PharoMods/Semaphore.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Semaphore.gs -------------------------------------------------------------------------------- /PharoMods/SemaphoreWrapper.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/SemaphoreWrapper.gs -------------------------------------------------------------------------------- /PharoMods/SessionManager.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/SessionManager.gs -------------------------------------------------------------------------------- /PharoMods/SharedRandom.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/SharedRandom.gs -------------------------------------------------------------------------------- /PharoMods/SmallFloat64.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/SmallFloat64.gs -------------------------------------------------------------------------------- /PharoMods/SmallFraction.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/SmallFraction.gs -------------------------------------------------------------------------------- /PharoMods/SmallInteger.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/SmallInteger.gs -------------------------------------------------------------------------------- /PharoMods/SmalltalkImage.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/SmalltalkImage.gs -------------------------------------------------------------------------------- /PharoMods/Socket.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Socket.gs -------------------------------------------------------------------------------- /PharoMods/SourceFileArray.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/SourceFileArray.gs -------------------------------------------------------------------------------- /PharoMods/String.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/String.gs -------------------------------------------------------------------------------- /PharoMods/Symbol.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Symbol.gs -------------------------------------------------------------------------------- /PharoMods/SymbolDictionary.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/SymbolDictionary.gs -------------------------------------------------------------------------------- /PharoMods/SystemAnnouncer.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/SystemAnnouncer.gs -------------------------------------------------------------------------------- /PharoMods/SystemDictionary.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/SystemDictionary.gs -------------------------------------------------------------------------------- /PharoMods/SystemNavigation.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/SystemNavigation.gs -------------------------------------------------------------------------------- /PharoMods/SystemResolver.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/SystemResolver.gs -------------------------------------------------------------------------------- /PharoMods/ThirtyTwoBitRegister.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ThirtyTwoBitRegister.gs -------------------------------------------------------------------------------- /PharoMods/Time.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/Time.gs -------------------------------------------------------------------------------- /PharoMods/TraitedMetaclass.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/TraitedMetaclass.gs -------------------------------------------------------------------------------- /PharoMods/TranscriptStreamPortable.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/TranscriptStreamPortable.gs -------------------------------------------------------------------------------- /PharoMods/True.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/True.gs -------------------------------------------------------------------------------- /PharoMods/UIManager.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/UIManager.gs -------------------------------------------------------------------------------- /PharoMods/UUIDGenerator.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/UUIDGenerator.gs -------------------------------------------------------------------------------- /PharoMods/UndefinedObject.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/UndefinedObject.gs -------------------------------------------------------------------------------- /PharoMods/VirtualMachine.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/VirtualMachine.gs -------------------------------------------------------------------------------- /PharoMods/WeakArray.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/WeakArray.gs -------------------------------------------------------------------------------- /PharoMods/WideString.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/WideString.gs -------------------------------------------------------------------------------- /PharoMods/WideSymbol.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/WideSymbol.gs -------------------------------------------------------------------------------- /PharoMods/WordArray.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/WordArray.gs -------------------------------------------------------------------------------- /PharoMods/ZdcByteArrayManager.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ZdcByteArrayManager.gs -------------------------------------------------------------------------------- /PharoMods/ZdcPluginSSLSession.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ZdcPluginSSLSession.gs -------------------------------------------------------------------------------- /PharoMods/ZdcSecureSocketStream.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ZdcSecureSocketStream.gs -------------------------------------------------------------------------------- /PharoMods/ZipEncoder.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ZipEncoder.gs -------------------------------------------------------------------------------- /PharoMods/ZipWriteStream.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ZipWriteStream.gs -------------------------------------------------------------------------------- /PharoMods/ZnLogEvent.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/PharoMods/ZnLogEvent.gs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/README.md -------------------------------------------------------------------------------- /exportFromPharo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/exportFromPharo.sh -------------------------------------------------------------------------------- /exportFromPharo.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/exportFromPharo.st -------------------------------------------------------------------------------- /exportGsEdits.tpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/exportGsEdits.tpz -------------------------------------------------------------------------------- /importGsEdits.tpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/importGsEdits.tpz -------------------------------------------------------------------------------- /importToGemStone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/importToGemStone.sh -------------------------------------------------------------------------------- /importToGemStone.tpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/importToGemStone.tpz -------------------------------------------------------------------------------- /notes/Class Types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/notes/Class Types.txt -------------------------------------------------------------------------------- /notes/Common Classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/notes/Common Classes.txt -------------------------------------------------------------------------------- /notes/GsNMethod fix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/notes/GsNMethod fix.txt -------------------------------------------------------------------------------- /notes/Hierarchy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/notes/Hierarchy.txt -------------------------------------------------------------------------------- /notes/Pharo in GemStone (James Foster 2017-09 ESUG).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/notes/Pharo in GemStone (James Foster 2017-09 ESUG).pdf -------------------------------------------------------------------------------- /notes/PharoGs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/notes/PharoGs.txt -------------------------------------------------------------------------------- /notes/ProfMon1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/notes/ProfMon1.txt -------------------------------------------------------------------------------- /notes/Scripts.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/notes/Scripts.gs -------------------------------------------------------------------------------- /notes/Seaside.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/notes/Seaside.md -------------------------------------------------------------------------------- /notes/Variations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgfoster/PharoGs/HEAD/notes/Variations.txt --------------------------------------------------------------------------------