Re: [Pharo-users] [ANN] Working with Pharo on the Raspberry Pi

2015-10-30 Thread Tim Hendriks
Pharo5 works with fine with the squeak vm in Jessie. No error’s and much faster. Didn’t test it thoroughly. Tim > On 26 Oct 2015, at 16:41, Attila Magyar wrote: > > Hi Torsten, > > Have you tried the cogvm on the Pi? It is much faster than the stack vm. If > I remember

Re: [Pharo-users] [ANN] Working with Pharo on the Raspberry Pi

2015-10-30 Thread Tim Hendriks
What I would like is access to the GPIO pins from Pharo…. It is possible from Scratch so someone (i am to stupid to do this) could maybe hack that into Pharo? Tim > On 30 Oct 2015, at 16:22, Tim Hendriks <t...@dds.nl> wrote: > > Pharo5 works with fine with the squeak vm in Jes

Re: [Pharo-users] A question about sets

2014-06-14 Thread Tim Hendriks
In sets there can be only Unique nummers. So random produced a few of the same numbers. They get excluded from the set. Tim Op 14 jun. 2014 om 11:48 heeft Fabian Boucsein fabian.boucs...@googlemail.com het volgende geschreven: Hi there, i am new to Smalltalk and Pharo and today, while

Re: [Pharo-users] [ANN] Bootstrap for Seaside3 project (Release 0.1.0)

2013-10-03 Thread Tim Hendriks
Great, Thanks Op 3-10-2013 0:52, Torsten Bergmann schreef: Hi, there are various frameworks out there helping you to ease common tasks in web development. One of them is Bootstrap (http://getbootstrap.com) that is used more and more to easily style web sites and web applications. We had

Re: [Pharo-users] Process ID of VM

2013-08-20 Thread Tim Hendriks
I'am just learning (a few weeks) so why not use super in Class? Thanks Tim Op 20-8-2013 11:29, Igor Stasenko schreef: Thanks for your hard work! 1 important remark: NBXLibTypes classinitialize super initialize. Display := #NBXLibDisplay. Never use 'super initialize' for

Re: [Pharo-users] Process ID of VM

2013-08-20 Thread Tim Hendriks
, because all classes are instances of the same class ( I told you you prabably don't want to know right now ;-) ). Joachim Am 20.08.13 11:34, schrieb Tim Hendriks: I'am just learning (a few weeks) so why not use super in Class? Thanks Tim Op 20-8-2013 11:29, Igor Stasenko schreef

Re: [Pharo-users] Process ID of VM

2013-08-20 Thread Tim Hendriks
class#initialize super initialize. THIS IS BAD ... rest of initialization. we should add a Lint rule with that, btw. On Aug 20, 2013, at 11:52 AM, Tim Hendriks t...@dds.nl wrote: Ok, I don't want to know :-) Just as a rule: don't call super initialize on the Class site

Re: [Pharo-users] Process ID of VM

2013-08-20 Thread Tim Hendriks
write is somewhere down... Tim Esteban On Aug 20, 2013, at 12:22 PM, Tim Hendriks t...@dds.nl wrote: OK Thanks a lot. I won't call super initialize on de Class side Don't know why I just don't simpel Thanks for trying to explain why. Op 20-8-2013 12:00, Esteban Lorenzano