[Pharo-users] Pharo and Virtual Realitity

2020-11-18 Thread Alexandre Bergel via Pharo-users
Hello,

With Victor we have been working on a Pharo programming environment entirely 
made in Virtual Reality. We need feedback from VR and Smalltalk / Pharo lovers. 
The url gives plenty of screenshots of the environment:

https://github.com/Vito217/PharoVRIDE

We need people to try it and give us feedback. We can go with you hand by hand. 
You just need to register here:

https://docs.google.com/forms/d/1V-3mwG-JvbfgitoWdqr7H2qmh-fVlnui7LuNZ2qdwU8/viewform?edit_requested=true

You need to have a VR device to participate.

Cheers,
Victor, Geoffrey, Leonel, Alexandre
-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.




[Pharo-users] Re: Pharo and Virtual Realitity

2020-11-18 Thread Stéphane Ducasse
Alex I think that with the spec2 effort I would really like to see if we can 
have a vr back-end :)

BTW what kind of VR device do we need. 


> On 18 Nov 2020, at 16:02, Alexandre Bergel via Pharo-users 
>  wrote:
> 
> Hello,
> 
> With Victor we have been working on a Pharo programming environment entirely 
> made in Virtual Reality. We need feedback from VR and Smalltalk / Pharo 
> lovers. The url gives plenty of screenshots of the environment:
> 
> https://github.com/Vito217/PharoVRIDE
> 
> We need people to try it and give us feedback. We can go with you hand by 
> hand. You just need to register here:
> 
> https://docs.google.com/forms/d/1V-3mwG-JvbfgitoWdqr7H2qmh-fVlnui7LuNZ2qdwU8/viewform?edit_requested=true
> 
> You need to have a VR device to participate.
> 
> Cheers,
> Victor, Geoffrey, Leonel, Alexandre
> -- 
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
> 
> 


Stéphane Ducasse
http://stephane.ducasse.free.fr / http://www.pharo.org 
03 59 35 87 52
Assistant: Aurore Dalle 
FAX 03 59 57 78 50
TEL 03 59 35 86 16
S. Ducasse - Inria
40, avenue Halley, 
Parc Scientifique de la Haute Borne, Bât.A, Park Plaza
Villeneuve d'Ascq 59650
France



[Pharo-users] Re: Pharo and Virtual Realitity

2020-11-18 Thread Alexandre Bergel via Pharo-users
> Alex I think that with the spec2 effort I would really like to see if we can 
> have a vr back-end :)

It would be cool, indeed!

> BTW what kind of VR device do we need. 

We have experienced with HTC and it works well.

Alexandre

> 
> 
>> On 18 Nov 2020, at 16:02, Alexandre Bergel via Pharo-users 
>> mailto:pharo-users@lists.pharo.org>> wrote:
>> 
>> Hello,
>> 
>> With Victor we have been working on a Pharo programming environment entirely 
>> made in Virtual Reality. We need feedback from VR and Smalltalk / Pharo 
>> lovers. The url gives plenty of screenshots of the environment:
>> 
>> https://github.com/Vito217/PharoVRIDE 
>> 
>> We need people to try it and give us feedback. We can go with you hand by 
>> hand. You just need to register here:
>> 
>> https://docs.google.com/forms/d/1V-3mwG-JvbfgitoWdqr7H2qmh-fVlnui7LuNZ2qdwU8/viewform?edit_requested=true
>> 
>> You need to have a VR device to participate.
>> 
>> Cheers,
>> Victor, Geoffrey, Leonel, Alexandre
>> -- 
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>> 
>> 
> 
> 
> Stéphane Ducasse
> http://stephane.ducasse.free.fr  / 
> http://www.pharo.org  
> 03 59 35 87 52
> Assistant: Aurore Dalle 
> FAX 03 59 57 78 50
> TEL 03 59 35 86 16
> S. Ducasse - Inria
> 40, avenue Halley, 
> Parc Scientifique de la Haute Borne, Bât.A, Park Plaza
> Villeneuve d'Ascq 59650
> France
> 



[Pharo-users] [Pharo Mooc] Change colors of test results

2020-11-18 Thread sergio ruiz
Hey, all.. 

I am taking the Pharo Mooc, and was wondering:

is there any way to change the color next to the test method name?

I am colorblind, and I can’t tell the different between green and yellow.

Thanks!



peace,
sergio
photographer, journalist, visionary

Public Key: 
https://pgp.key-server.io/pks/lookup?op=get&search=0x69B08F58923AB3A2
#BitMessage BM-NBaswViL21xqgg9STRJjaJaUoyiNe2dV
@sergio_101@mastodon.social
https://sergio101.com
http://www.codeandmusic.com
http://www.twitter.com/sergio_101
http://www.facebook.com/sergio101



[Pharo-users] Re: [Pharo Mooc] Change colors of test results

2020-11-18 Thread hogoww

Hi,

Those buttons are created in ClyTestResultProperty >> createIcon.
They rely on the icons founds in Smalltalk ui icon.
I didn't find a nice way to modify it radically so you can see the 
difference.


So here's a bad way :D
(Smalltalk ui icon iconNamed: #testGreenIcon) becomeForward: (Smalltalk 
ui icon iconNamed: #testGreenIcon) darker darker.
(Smalltalk ui icon iconNamed: #testYellowIcon) becomeForward: (Smalltalk 
ui icon iconNamed: #testYellowIcon) dimmed dimmed.
(Note that if you execute it several times, it will be darker and darker 
until you get a black icon!)


The only other way I found would be to recreate the object, but I'm not 
comfortable enough with UI stuff to help you more than that :/


Pierre


On 19/11/2020 02:12, sergio ruiz wrote:


Hey, all..

I am taking the Pharo Mooc, and was wondering:

is there any way to change the color next to the test method name?

I am colorblind, and I can’t tell the different between green and yellow.

Thanks!



peace,
sergio
photographer, journalist, visionary

Public Key: 
https://pgp.key-server.io/pks/lookup?op=get&search=0x69B08F58923AB3A2 


#BitMessage BM-NBaswViL21xqgg9STRJjaJaUoyiNe2dV
@sergio_101@mastodon.social 
https://sergio101.com 
http://www.codeandmusic.com
http://www.twitter.com/sergio_101
http://www.facebook.com/sergio101