Re: [Pharo-users] JavaLoader

2015-03-26 Thread Julien Delplanque
Oh Java 3 I guess that's why there is an error when I try to load my Java 7 bytecode. It told me there is an error because of "<" symbol. I guess Java 3 didn't supports generics? (The first version of Java I used is Java 6 so i don't know.) Is there a way to update this package easily to be used

[Pharo-users] first impressions

2015-03-26 Thread Martin Bähr
from a GSoC proposal: "from what I've experienced so far, Smalltalk is all it's cracked up to be!" greetings, martin. -- eKita - the online platform for your entire academic life -- chief engineer eKita.co pike programme

Re: [Pharo-users] Packaging for Mac OS

2015-03-26 Thread Hernán Morales Durand
Thank you Damien, Unfortunately the link displays "503 Service Temporarily Unavailable" But I will check later. Hernán 2015-03-26 11:21 GMT-03:00 Damien Cassou : > > Hernán Morales Durand writes: > > > Guys, > > > > I wish to package my Pharo applications for Mac OS. But I don't have a > Mac

[Pharo-users] Trouble With Pillar

2015-03-26 Thread Jigyasa Grover
I have installed Pillar in my system successfully. After making the .pillar file , I am able to generate a .html file but it has no content. I have attached the log received on executing ./pillar export --to='html' 'first.pillar' > first.html . Please rectify my mistake. Thanks and Regards JIgyas

Re: [Pharo-users] JavaLoader

2015-03-26 Thread Blaine Buxton
It should work. It's something that I did several years ago around Java3. I've made sure it has worked with every Pharo release (the tests pass under Pharo3). I will look into why they are failing under pharo4. It's a project I did because I was mainly doing Java and go frustrated with serializati

Re: [Pharo-users] Serving static content

2015-03-26 Thread Silvia Ruiz Diaz
Hi all! I wanted to thank you all for your input and suggestions. I got it to work using Zinc. Cheers! 2015-03-26 3:32 GMT-03:00 Sven Van Caekenberghe : > Using Zinc this becomes something like: > > ZnServer startDefaultOn: 1701. > > ZnServer default delegate: ( > (ZnStaticFileServerDelegate n

[Pharo-users] Code critics: 'Method defined in all subclasses, but not in superclass'

2015-03-26 Thread Laura Risani
Hi all, If i run Critic Browser on a package with just a class that defines a method as subclassResponsibility and two subclasses that override it, i get under group 'Design Flaws' 'Method defined in all subclasses, but not in superclass'. If instead of 'self subclassResponsibility' i write anyth

Re: [Pharo-users] Boardician (board game framework)

2015-03-26 Thread Laura Risani
Excellent! I have a todo list i'll work on including further class commenting, method classification on example games, ... I wanted to share what i have to get feedback. Feel free to add to the list! About the issue on EMonsterMover i thought back and forth about having only one configurable (dyn

Re: [Pharo-users] Boardician (board game framework)

2015-03-26 Thread kilon alios
I am taking a look at your code and I dont understand something you have in BgEatBullet package EMonster1Mover, EMonster2Mover , EMonster3Mover and EMonster4Mover. All four classes are identical apart from the return values in some methods. Why not use 1 class and 4 instances of that class instead

Re: [Pharo-users] Boardician (board game framework)

2015-03-26 Thread kilon alios
" @kilon Mail me back if you do develop a game adding from you graphical capabilities. " hmm making a board game sound like a very nice idea indeed. Will keep you posted, definitely I am making something :)

Re: [Pharo-users] Boardician (board game framework)

2015-03-26 Thread Laura Risani
> > I took some moments to look at the code with Olivier. > Excellent! All feedback is really valuable! (dear silent readers i care about your opinion, i assure you i'm not selling it) We think that the name of the project is strange and could be sexier :) > Previously you suggested 'MetaBoard',

Re: [Pharo-users] JavaLoader

2015-03-26 Thread Julien Delplanque
Oh thanks I'll check this out! :) On 26/03/15 14:05, Alexandre Bergel wrote: > Hi Julien, > > You should have a look at the Moose platform: http://moosetechnology.org > > Moose is made exactly to analyze software, and has more then 15 years of > engineering. Roassal

Re: [Pharo-users] JavaLoader

2015-03-26 Thread Alexandre Bergel
Hi Blaine, Can you tell us more about it. What is the current stage of it? It looks like highly promising. But it is a significant task to reach a usable state I imagine. Cheers, Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:

Re: [Pharo-users] JavaLoader

2015-03-26 Thread Alexandre Bergel
Hi Julien, You should have a look at the Moose platform: http://moosetechnology.org Moose is made exactly to analyze software, and has more then 15 years of engineering. Roassal is a component of Moose. To analyze some Java, you need a tool to translate your .java

[Pharo-users] New Pharo-Launcher package for Mac and Windows

2015-03-26 Thread Damien Cassou
Hi, I've just updated the 2 installers for mac and windows. http://files.pharo.org/platform/launcher/Pharo_0.2.4.dmg http://files.pharo.org/platform/launcher/pharo_installer-0.2.4.exe - the windows installer should have the PharoV30.sources file that was missing - both installers now install

Re: [Pharo-users] JavaLoader

2015-03-26 Thread Julien Delplanque
Thanks for providing this lib :) Is it compatible with only a certain version of Java? On 26/03/15 16:02, Blaine Buxton wrote: > Hello, > I'm the developer of that library. I have some tests that should shed some > light. If you ned any help, just ping me. I try to keep it update with the > lates

Re: [Pharo-users] JavaLoader

2015-03-26 Thread Blaine Buxton
Hello, I'm the developer of that library. I have some tests that should shed some light. If you ned any help, just ping me. I try to keep it update with the latest Pharo releases. But, I haven't used it in a long time because I originally developed it to load in Java serialized streams and to read

Re: [Pharo-users] Boardician (board game framework)

2015-03-26 Thread stepharo
Hi laura I took some moments to look at the code with Olivier. We think that the name of the project is strange and could be sexier :) First thumb up. You developed this really fast and this is a good foundation. Olivier mentions http://tululoo.com in JavaScript the framework uses event an

Re: [Pharo-users] Packaging for Mac OS

2015-03-26 Thread Damien Cassou
Hernán Morales Durand writes: > Guys, > > I wish to package my Pharo applications for Mac OS. But I don't have a Mac > and my own finances demonstrates I won't have one anytime soon. > > Do you know if there is a (free? :) remote Mac OS service (like a remote > shell) where I can log-in, package

[Pharo-users] [ Added to Concerning Pharo ] Building a Mongo Browser in Pharo

2015-03-26 Thread Sven Van Caekenberghe
I am happy to announce that Torsten's excellent article Building a Mongo Browser in Pharo https://medium.com/concerning-pharo/building-a-mongo-browser-in-pharo-fe2104052843 is now part of the Concerning Pharo collection on medium.com https://medium.com/concerning-pharo The upcoming Phar

[Pharo-users] JavaLoader

2015-03-26 Thread Julien Delplanque
Hi, I saw this repository on smalltalkhub: http://smalltalkhub.com/#!/~blabux/JavaLoader/ and I wonder if someone could give me some examples of use. For example, is it possible to use JavaLoader with Roassal to display class hierarchy of a java project or something like that? I browsed google a

[Pharo-users] hardware locking an image

2015-03-26 Thread Usman Bhatti
Hi, Has anyone tried to hardware-lock a Pharo image? That means making Pharo image work on known hardware only, hence copying and running it on another machine would not work. I am thinking about locking with Mac address obtained through OSProcess calls. regards.