[Pharo-users] Trying to load ViDI in Pharo 4 gives an error

2015-07-23 Thread Paul DeBruicker
Hi - When I run this: Gofer new smalltalkhubUser: 'YuriyTymchuk' project: 'Configuration'; configurationOf: 'Vidi'; load. #ConfigurationOfVidi asClass loadStable I get a error that the 1.2.14 version of ConfigruationOfRubric cannot be found. The ConfigurationOfRubric is loaded from

[Pharo-users] gitfiletree metadata

2015-07-23 Thread Peter Uhnák
Hi, it seems that I managed to completely fuck up my gitfiletree metadata... e.g.: Ancestors: DynaCASE-PeterUhnak.148, DynaCASE-PeterUhnak.93, DynaCASE-PeterUhnak.144, DynaCASE-PeterUhnak.146, DynaCASE-PeterUhnak.92, DynaCASE-PeterUhnak.142, DynaCASE-PeterUhnak.140, DynaCASE-PeterUhnak.138,

Re: [Pharo-users] Trying to load ViDI in Pharo 4 gives an error

2015-07-23 Thread Yuriy Tymchuk
Hi, I will take a look at that, but at the moment I’m in the airport awaiting my flight, and it’s not very comfortable to debug configurations here. Please be patient :) Cheers Uko On 23 Jul 2015, at 22:14, Paul DeBruicker pdebr...@gmail.com wrote: Hi - When I run this: Gofer

Re: [Pharo-users] gitfiletree metadata

2015-07-23 Thread Thierry Goubier
Hi Peter, no, I don't think you fucked up your gitfiletree metadata. But the explanation is a bit complex. First thing is that you are looking at a git generated metadata... So what you're asking for (regenerating from git) is already what you are looking at :) Second is that gitfiletree

Re: [Pharo-users] [OT] Bill Gross: The single biggest reason why startups succeed

2015-07-23 Thread Offray Vladimir Luna Cárdenas
Thanks Jose, Sean and Steph, I think that this is an important conversation, so here are my two cents. It started small but suddenly it became long, so thanks in advance for those who read it all. May be I'm giving the details Steph asked for (may be to many details :-P). For my Smalltalk

Re: [Pharo-users] Rectangle center rounding

2015-07-23 Thread Jan Blizničenko
As far as I looked, only two rounding methods are center and aboveCenter (which has no senders in my image by the way and I do not even see purpose of it)... all other (like leftCenter) are getting value from mentioned self center. So, the easiest way seems to subclass Rectangle and make

Re: [Pharo-users] Class side vs instance side

2015-07-23 Thread Ben Coman
Even if you put the method on the class-side, you would still be creating an new instance each time. Maybe you can store it in a class variable... MyRectangleoppositeSides ^ oppositeSides ifNil: [ oppositeSidesCache := { #top - #bottom. #bottom - #top. #topLeft - #bottomRight

Re: [Pharo-users] Class side vs instance side

2015-07-23 Thread Nicolai Hess
2015-07-23 14:33 GMT+02:00 Peter Uhnák i.uh...@gmail.com: Cache of the mapping is just an implementation detail. I was referring to the instance of the ==MyRectangle== object; so I am more interested in this from outside perspective --- other objects that will have to use the API... So

[Pharo-users] Font with many Unicode glyphs to display code -- IPA?

2015-07-23 Thread H. Hirzel
Hello I work on an app which has some strings in the code with a considerable number of non ISO8859 symbols (e.g. IPA https://en.wikipedia.org/wiki/IPA) How do I get / use a font which does this? The fonts provided in the settings panel did not do the job. Thank you in advance --Hannes

Re: [Pharo-users] gitfiletree metadata

2015-07-23 Thread Thierry Goubier
Peter, is this the dynacase at https://github.com/dynacase/dynacase ? Thierry Le 24/07/2015 02:29, Peter Uhnák a écrit : On Fri, Jul 24, 2015 at 12:26 AM, Thierry Goubier thierry.goub...@gmail.com mailto:thierry.goub...@gmail.com wrote: Hi Peter, no, I don't think you fucked up

Re: [Pharo-users] gitfiletree metadata

2015-07-23 Thread Yuriy Tymchuk
Check which versions are bold when you open the package. Because when I use gitfiletree it usually shows me that the latest few versions are not loaded (they are in bold) but I am anyway on the latest one. Uko On 24 Jul 2015, at 02:29, Peter Uhnák i.uh...@gmail.com wrote: On Fri, Jul

Re: [Pharo-users] gitfiletree metadata

2015-07-23 Thread Peter Uhnák
On Fri, Jul 24, 2015 at 12:26 AM, Thierry Goubier thierry.goub...@gmail.com wrote: Hi Peter, no, I don't think you fucked up your gitfiletree metadata. But the explanation is a bit complex. First thing is that you are looking at a git generated metadata... So what you're asking for

[Pharo-users] Spec with Roassal

2015-07-23 Thread Mark Rizun
Hi everyone! I'm building a ui with Spec and using Roassal view inside of my window. To embed the view I use Roassal2Spec package (RoassalModel class). When I click on element of view I want to change its color. The problem is that color changes only after you move a winodw or open another

[Pharo-users] Semantics of #resignalAs:

2015-07-23 Thread Norbert Hartl
What are the semantics of Exception#resignalAs: regarding active exception handler? Isn't the active exception handler excluded from being treated again? Taking the example | counter | counter := 0. [ 1/0 ] on: Error do: [ :e | counter := counter + 1.

Re: [Pharo-users] Spec with Roassal

2015-07-23 Thread Peter Uhnák
Hi, this has nothing to do with Spec and all to do with Roassal. Roassal uses it's own update mechanism, which you haven't called. view elements when: TRMouseClick do: [ :e | e element color: Color red. -- this is unrelated, but don't access trachelShapes directly if Roassal provides API for

Re: [Pharo-users] Font with many Unicode glyphs to display code -- IPA?

2015-07-23 Thread H. Hirzel
P.S. Screen shot attached. A source code font. Or put the question differently how do I add a font as a source code font? On 7/23/15, H. Hirzel hannes.hir...@gmail.com wrote: Hello I work on an app which has some strings in the code with a considerable number of non ISO8859 symbols (e.g. IPA

Re: [Pharo-users] [OT] Bill Gross: The single biggest reason why startups succeed

2015-07-23 Thread Esteban A. Maringolo
What I think we miss here, is the generation of the users adopting Pharo/Smalltalk. For many developers over they 30's (like me), when I show them Pharo or tell them about what/how it does some stuff, they get curious and/or try it. They might even learnt Smalltalk back at the university. Usually

Re: [Pharo-users] [OT] Bill Gross: The single biggest reason why startups succeed

2015-07-23 Thread Martin Bähr
Excerpts from Esteban A. Maringolo's message of 2015-07-23 16:51:10 +0200: What I think we miss here, is the generation of the users adopting Pharo/Smalltalk. For many developers over they 30's (like me), when I show them Pharo or tell them about what/how it does some stuff, they get curious

Re: [Pharo-users] Semantics of #resignalAs:

2015-07-23 Thread Joachim Tuchel
Norbert, I'd say you get a NotFound Exception. Joachim Am 23.07.2015 um 16:20 schrieb Norbert Hartl norb...@hartl.name: What are the semantics of Exception#resignalAs: regarding active exception handler? Isn't the active exception handler excluded from being treated again? Taking the

Re: [Pharo-users] [OT] Bill Gross: The single biggest reason why startups succeed

2015-07-23 Thread Peter Uhnák
On Thu, Jul 23, 2015 at 4:51 PM, Esteban A. Maringolo emaring...@gmail.com wrote: When I talk to new programmers (20-25 years old), almost all of them don't get attracted by it. Why? I couldn't tell. Mainly because they can't use the few tools/patterns they already learnt how to, barely, use.

Re: [Pharo-users] Class side vs instance side

2015-07-23 Thread Peter Uhnák
Cache of the mapping is just an implementation detail. I was referring to the instance of the ==MyRectangle== object; so I am more interested in this from outside perspective --- other objects that will have to use the API... So whether I would call [[[ class-side methods MyRectangle

Re: [Pharo-users] [OT] Bill Gross: The single biggest reason why startups succeed

2015-07-23 Thread stepharo
totally. it is exactly the feeling i have about smalltalk and lisp. i learned both because i wanted to know if the newer languages everyone is using are really any better. i'd expected that they would learn and improve over older languages. but i had to discover that that's not the case. i

Re: [Pharo-users] [OT] Bill Gross: The single biggest reason why startups succeed

2015-07-23 Thread stepharo
Hi esteban we need to be much much better one talking to external libraries. Our esteban is working on it. Stef Le 23/7/15 18:52, Esteban A. Maringolo a écrit : Peter, At your joung age you might have very good reasons to have chosen Pharo over anything else as I did a lot of years ago. I

Re: [Pharo-users] [OT] Bill Gross: The single biggest reason why startups succeed

2015-07-23 Thread Dimitris Chloupis
for me as a beginner a big turn off was the quality of documentation and my fear that third party libraries will not be that well supported because of the size of the community meaning more bugs less features etc. It was certainly a much bigger struggle learning pharo than learning python. After

Re: [Pharo-users] Semantics of #resignalAs:

2015-07-23 Thread Norbert Hartl
You get a debugger at the position if the halt in the code. Meaning the exception block run more than once. And it would run forever. Norbert Am 23.07.2015 um 18:46 schrieb Joachim Tuchel jtuc...@objektfabrik.de: Norbert, Sorry if this is a stupid question: what does the debugger say?

Re: [Pharo-users] Smalltalkhub permission denied

2015-07-23 Thread Hilaire
I am still on PermissionDenied, strange. Le 22/07/2015 20:55, stepharo a écrit : Yes from time to time we have this problem... Le 22/7/15 04:10, Hilaire a écrit : Hello, On a freshly created project I have permission denied to write on the repo.

Re: [Pharo-users] Semantics of #resignalAs:

2015-07-23 Thread Joachim Tuchel
Norbert, Sorry if this is a stupid question: what does the debugger say? I mean, assuming NotFound is an Exception, I'd expect a debugger showing a NotFound Error... Joachim Am 23.07.2015 18:34 schrieb Norbert Hartl norb...@hartl.name: Am 23.07.2015 um 17:54 schrieb Joachim Tuchel

Re: [Pharo-users] [OT] Bill Gross: The single biggest reason why startups succeed

2015-07-23 Thread Esteban A. Maringolo
Peter, At your joung age you might have very good reasons to have chosen Pharo over anything else as I did a lot of years ago. I discovered Smaltalk by chance when I was 21 years old and already had my years developing with Perl and was starting to learn Java. Fortunately I started making a living

Re: [Pharo-users] Semantics of #resignalAs:

2015-07-23 Thread Norbert Hartl
Am 23.07.2015 um 17:54 schrieb Joachim Tuchel jtuc...@objektfabrik.de: Norbert, I'd say you get a NotFound Exception. In pharo you get a debugger. Meaning this piece of code is actively an endless loop. Norbert Joachim Am 23.07.2015 um 16:20 schrieb Norbert Hartl

[Pharo-users] [MCGitHubRepository] Seeking better options to access resources folder from github repo

2015-07-23 Thread Jigyasa Grover
Hi I am trying to build my first application in Pharo i.e. an offline text search application namely *searchQuick* which returns the list of file titles from the pre-loaded text files present in the resource folder when a string is searched for. You all are welcome to fork the code

[Pharo-users] Seeking help to resolve startup error on CI automated build

2015-07-23 Thread Jigyasa Grover
HiI am trying to build my first application in Pharo i.e. an offline text search application namely *searchQuick* which returns the list of file titles from the pre-loaded text files present in the resource folder when a string is searched for. You all are welcome to fork the code