Skip to content

Instantly share code, notes, and snippets.

View SergeStinckwich's full-sized avatar
🎯
Focusing

Serge Stinckwich SergeStinckwich

🎯
Focusing
View GitHub Profile
@SeanTAllen
SeanTAllen / gist:952748
Created May 3, 2011 02:57
Ugly pharo dumping to redline format
class := TestCase.
aStream := String new writeStream .
class superclass == nil
ifTrue: [aStream nextPutAll: 'ProtoObject']
ifFalse: [aStream nextPutAll: class superclass name].
aStream
nextPutAll: class kindOfSubclass;
store: class name;
crlf.
@bjartwolf
bjartwolf / color.st
Created June 8, 2014 11:14
Change color of Rapiro from Pharo
sPort := SerialPort new.
sPort baudRate: 57600.
sPort close.
sPort openPort: '/dev/ttyAMA0'.
sPort nextPutAll: '#PR010G255B255T001'.