--- Begin Message ---
Hey. Can someone check this for me? In Pharo5 do:
Gofer new
smalltalkhubUser: 'Pier' project: 'Pillar';
configuration;
loadDevelopment.
Gofer new
url:'http://www.smalltalkhub.com/mc/phm/PierLoadExperiment/main';
package: 'ConfigurationOfPierLoadExperiment
Le 14/11/2016 à 22:53, Dimitris Chloupis a écrit :
> Hey guys
>
> Today I manage to setup my old Raspberry Pi 1 Model B . I was wondering
> if I can run Pharo on it and how to do this.
>
> Any ideas ?
Esteban produce some ARM VM compatible with current images of Pharo.
I don't have time to te
Already read it, links are dead, does not help
On Tue, 15 Nov 2016 at 02:15, Sven Van Caekenberghe wrote:
> https://medium.com/concerning-pharo/pharo-pi-9eef257b6a21
>
> > On 14 Nov 2016, at 22:53, Dimitris Chloupis
> wrote:
> >
> > Hey guys
> >
> > Today I manage to setup my old Raspberry Pi 1
https://medium.com/concerning-pharo/pharo-pi-9eef257b6a21
> On 14 Nov 2016, at 22:53, Dimitris Chloupis wrote:
>
> Hey guys
>
> Today I manage to setup my old Raspberry Pi 1 Model B . I was wondering if I
> can run Pharo on it and how to do this.
>
> Any ideas ?
2016-11-14 22:34 GMT+01:00 CodeDmitry :
> Is there a way to stop Pharo from preventing me from shadowing blocks?
>
There is no setting for ignoring this warning, but you can compile the code
in a non-interactive way:
Object compile: 'foo
[ :superenv |
| env |
env := Dictionary new.
Hey guys
Today I manage to setup my old Raspberry Pi 1 Model B . I was wondering if
I can run Pharo on it and how to do this.
Any ideas ?
Is there a way to stop Pharo from preventing me from shadowing blocks?
[:superenv |
|env|
env := Dictionary new.
[:superenv |
|env|
env := Dictionary new.
[:superenv |
|env|
env := Dictionary new.
Hello!
Steps:
1. Download moose_suite_6_0-win (today from official web)
2. Load NeoCSV (loaded well)
3. Run this whith the earlier mentioned csv file:
|csv mbfs cont|
mbfs := FileStream fileNamed: 'C:\Users\kusr\Documents\vis\
test1utf8_cut2.csv'.
mbfs
lineEndConvention: #c
Hi,
You could not load NeoCSV in a Moose 6.0 image? What was the error?
Cheers,
Doru
> On Nov 14, 2016, at 11:26 AM, Robert Kuszinger wrote:
>
> Sven,
>
> thanks for the fast reply. It worked for sure, but only in a fresh Pharo 5
> donwload, NeoCSV load and so on.
> It failed in Moose 6 win
Sven,
thanks for the fast reply. It worked for sure, but only in a fresh Pharo 5
donwload, NeoCSV load and so on.
It failed in Moose 6 windows one click distribution so it may signal a
Moose 6 image/config/class problem or incompatibility.
Your recommendation is more elegant so I walk this way :)
And if you want to have 100% control over decoding, you can do as follows:
(FileLocator desktop / 'test1utf8_cut2.csv') binaryReadStreamDo: [ :in |
(NeoCSVReader on: (ZnCharacterReadStream on: in)) separator: $; ; upToEnd ].
(FileLocator desktop / 'test1utf8_cut2.csv') binaryReadStreamDo: [ :i
Hi Robert,
You should use more modern stuff ;-)
This works for me (Pharo 4, macOS), using your file:
((FileLocator desktop / 'test1utf8_cut2.csv') readStreamDo: [ :in |
(NeoCSVReader on: in) separator: $; ; upToEnd ]) first: 4.
==>>
#(
#('rend.szam' 'cikkszam' 'cikk.megnev' 'dop_id' 'dop.c
Hello,
I've trying to play around with Roassal so I load a csv.
Code by far is here:
|csv mbfs cont|
mbfs := FileStream fileNamed:
'C:\Users\kusr\Documents\vis\test1utf8_cut2.csv'.
mbfs
lineEndConvention: #crlf;
converter: UTF8TextConverter new.
cont := mbfs contents.
In the content
13 matches
Mail list logo