Re: [Pharo-users] STON Question

2017-06-14 Thread Guillermo Polito
that's what is called a DTO Le 14 juin 2017 15:27, "Sven Van Caekenberghe" a écrit : > > > On 14 Jun 2017, at 15:01, Christophe Demarey < > christophe.dema...@inria.fr> wrote: > > > > +1 > > It is exactly what i've done with Cargo. Define your own specific object > for serialization / deserializ

Re: [Pharo-users] STON Question

2017-06-14 Thread Guillermo Polito
That's what we call a DTO On Wed, Jun 14, 2017 at 3:01 PM, Christophe Demarey < christophe.dema...@inria.fr> wrote: > +1 > It is exactly what i've done with Cargo. Define your own specific object > for serialization / deserialization. It is the simplest way to have a human > readable conf file (e

Re: [Pharo-users] Question about writeStream

2017-06-29 Thread Guillermo Polito
In fact the question comes from the fact that they are not polymorphic and you should know if you're manipulating a closable stream or not... Maybe a solution is indeed to use #writeStreamDo:, that should behave well even for in-memory, collection streams, no? On Thu, Jun 29, 2017 at 4:58 PM, Sve

[Pharo-users] Fwd: [CfP][Meta'17] Workshop on Meta-Programming Techniques and Reflection

2017-07-12 Thread Guillermo Polito
University, USA Guillermo Polito, CNRS, France Tiark Rompf, Purdue University, USA Tom Van Cutsem, Nokia Bell Labs, Belgium Takuo Watanabe, Tokyo Institute of Technology, Japan ### Workshop Organizers Shigeru Chiba, University of Tokyo Elisa Gonzalez Boix, Vrije Universiteit Brussel Stefan Marr

Re: [Pharo-users] Is there a 64bit minimal image for either 6.0 or 7.0?

2017-07-14 Thread Guillermo Polito
Two different things: 1) yes, the minimal image is indeed minimal. Actually, the minimal image is around 20% of the full image. Two working directions that are looking for active contributions are: - reduce that 20% so bootstrap times are smaller - modularise the other 80% so that we can easily

Re: [Pharo-users] get output of a forked process on windows

2017-07-18 Thread Guillermo Polito
Have you checked the Console version of the windows VM? On Tue, Jul 18, 2017 at 10:48 AM, Christophe Demarey < christophe.dema...@inria.fr> wrote: > Hi, > > I would like to evaluate a Smalltalk expression in a forked process (i.e. > something like OSProcess thisOSProcess waitForCommandOutput: 'ph

Re: [Pharo-users] Performance of zero conf install since 6.1 seems very slow?

2017-07-26 Thread Guillermo Polito
We were also seeing it yesterday. In travis, 10m to download an image (and thus timeout). Before it took seconds. On Wed, Jul 26, 2017 at 9:41 AM, Denis Kudriashov wrote: > Hi. > > I don't know answer. But what time it takes before? > > 2017-07-26 9:30 GMT+02:00 Tim Mackinnon : > >> Hi - has any

Re: [Pharo-users] hard reset class variable state

2017-07-29 Thread Guillermo Polito
Actually class variables are stored in a dictionary in a class. You can access that by saying: aClass classPool. So resetting all values of a class variable could be easily done with something like aClass classPool keys do: [ :k | aClass classPool at: k put: nil ]. Maybe that could be a nice

Re: [Pharo-users] Performance of zero conf install since 6.1 seems very slow?

2017-07-31 Thread Guillermo Polito
nzano wrote: > > it may been related to recent INRIA infrastructure changes. > there is nothing 6.1 itself can do with that (6.1 is just a bunch of zips) > > Esteban > > On 26 Jul 2017, at 09:44, Guillermo Polito > wrote: > > We were also seeing it yesterday. In trav

Re: [Pharo-users] Threads safety in Pharo

2017-07-31 Thread Guillermo Polito
I believe there is no such a document. It would be however interesting to investigate it a bit deeper. In general, the problem we talk about when we talk about thread safety is the following: Can we run a workspace in a separate thread than a browser and provide correct results? Can we run two brow

Re: [Pharo-users] Pharo 6.0 and 6.1 64 bit freeze on MacMini

2017-07-31 Thread Guillermo Polito
Also, - How did you install pharo? Command line and zero conf? Website download link? - What does it mean to "freeze"? - Do you have an exception? a PharoDebug.log file? a crash.dmp? Can you try to open you image from the command line? $ Pharo.app/Contents/Pharo Pharo.image #I do not remember th

Re: [Pharo-users] Glorp: `session login` fails for Garage SQLite

2017-08-05 Thread Guillermo Polito
ormer was added at GuillermoPolito.73 back in 2011 (and the latter > was the same back then). It probably fixed something, but I don't see any > implementors of queryEncoding atm (definitely not in Garage). From the diff > it is clear lots of databases and drivers have gone. Now, why was

Re: [Pharo-users] Glorp: `session login` fails for Garage SQLite

2017-08-05 Thread Guillermo Polito
How did you install garage and glorp? Catalog, configurations? Can you paste here the installation instructions you followed? On Sun, Aug 6, 2017 at 1:37 AM, Herby Vojčík wrote: > Herby Vojčík wrote: > >> Guillermo Polito wrote: >> >>> AFAIR, PharoDatabaseAcce

Re: [Pharo-users] including Pillar in Pharo image by default

2017-08-12 Thread Guillermo Polito
Esteban, I think that when Stef says "a mini version of pillar" he does not mean a mini version of the parser or the AST, but a version that does not have the exporting to html/latex/... On Sat, Aug 12, 2017 at 4:37 PM, Esteban Lorenzano wrote: > and btw, this kind of threads belongs to pharo-de

Re: [Pharo-users] (no subject)

2017-08-13 Thread Guillermo Polito
On Sun, Aug 13, 2017 at 10:31 AM, Vityou . wrote: > I recently discovered the pharo launcher. However, it only gives me > options to use outdated images, and I'm not sure about the vm. Is there > any way to change this? > Usually it will download the right vm for your image so you don't have t

Re: [Pharo-users] [ANN] PharoLambda 1.5 - Pharo running on AWS Lambda now with saved Debug sessions via S3

2017-08-14 Thread Guillermo Polito
Hi Tim, On Mon, Aug 14, 2017 at 11:41 AM, Tim Mackinnon wrote: > Hey guys, thanks for your enthusiasm around this - and I cannot stress > enough how this was only possible because of the work that has gone into > making Pharo (in particular the 64bit image, as well as having a minimal > image, a

Re: [Pharo-users] [ANN] PharoLambda 1.5 - Pharo running on AWS Lambda now with saved Debug sessions via S3

2017-08-14 Thread Guillermo Polito
In a full image (just bootstrapped) we have: 7.7 MB of arrays (probably in collections, we should check usages) 6.3 MB of methods 5.3 MB of ByteArrays 3.3 MB of ByteStrings 2.7 MB of Bitmaps 1.8 MB of ByteSymbols That sumps up aready ~27 MB On Mon, Aug 14, 2017 at 11:49 AM, Guillermo

Re: [Pharo-users] Honest question, new to ecosystem: are Glorp and Garage alive?

2017-08-14 Thread Guillermo Polito
Hi Holger, Garage is not maintained as people started developing the alternative UDBC drivers, that share the same spirit at the end. I do not know if they share the same API though. About Glorp, I will let Esteban Maringolo ask :). On the other side, you should check again how you downloaded Ga

Re: [Pharo-users] [ANN] PharoLambda 1.5 - Pharo running on AWS Lambda now with saved Debug sessions via S3

2017-08-15 Thread Guillermo Polito
he support, and your email about why the contexts stack up > is very well received (I will comment over there). > > By the way - it looks like Martin Fowler picked up on this announcement - > so maybe we might get some interest from his mass of followers. > > Tim > > On 14 A

Re: [Pharo-users] [ANN] PharoLambda 1.5 - Pharo running on AWS Lambda now with saved Debug sessions via S3

2017-08-15 Thread Guillermo Polito
Collection6555 5509 > 2203601.00 40.00 > > As an aside - my Gitlab project is public, the scripts that load things up > are in ./scripts (build.sh, and minimal.st and loadlocal.st) > > Tim > > On 15 Aug 2017, at

Re: [Pharo-users] [ANN] PharoLambda 1.5 - Pharo running on AWS Lambda now with saved Debug sessions via S3

2017-08-15 Thread Guillermo Polito
1.90 64.00 > Protocol 16798382 >2682241.20 32.00 > OrderedCollection65555509 >2203601.00 40.00 > > As an aside - my Gitlab project is public, the scri

Re: [Pharo-users] [ANN] PharoLambda 1.5 - Pharo running on AWS Lambda now with saved Debug sessions via S3

2017-08-15 Thread Guillermo Polito
4398 + "Set" 2959 + "Dictionary" 1997 + "IdentityDictionary" 454 ------- 25461 So there are ~5k arrays that are used outside collections. Worth expl

Re: [Pharo-users] [ANN] PharoLambda 1.5 - Pharo running on AWS Lambda now with saved Debug sessions via S3

2017-08-16 Thread Guillermo Polito
2.00 32.00 > WeakArray1758 265 >2323041.70 876.62 > OrderedCollection 65555043 >2017201.50 40.00 > ClassOrganization

Re: [Pharo-users] [ANN] PharoLambda 1.5 - Pharo running on AWS Lambda now with saved Debug sessions via S3

2017-08-16 Thread Guillermo Polito
into your minimum > build steps and which are an external script (or possibly a > HeadlessImageCleaner class we keep loaded so it's easier to maintain?) > > Tim > > Sent from my iPhone > > On 16 Aug 2017, at 08:52, Guillermo Polito > wrote: > > This means i

Re: [Pharo-users] [ANN] PharoLambda 1.5 - Pharo running on AWS Lambda now with saved Debug sessions via S3

2017-08-16 Thread Guillermo Polito
n my image (after I’ve used it > to bootstrap my code). > > Tim > > On 16 Aug 2017, at 02:32, Guillermo Polito > wrote: > > Actually it happens first that monticello is "nicely" coupled with the > changeset system and logs all the source code loaded in change se

Re: [Pharo-users] What is proper fix for this?

2017-08-17 Thread Guillermo Polito
On Thu, Aug 17, 2017 at 10:32 AM, Esteban Lorenzano wrote: > > > On 17 Aug 2017, at 10:18, Herby Vojčík wrote: > > > > jtuc...@objektfabrik.de wrote: > >> Herby, > >> > >> my ccomments were not meant to say you are not competent enough to fix > >> Glorp. I know you have been active as the mainta

Re: [Pharo-users] What is proper fix for this?

2017-08-17 Thread Guillermo Polito
but! we could have github.pharo.org that redirects to the pharo organization in github :P On Thu, Aug 17, 2017 at 10:53 AM, Herby Vojčík wrote: > Esteban Lorenzano wrote: > >> >> On 17 Aug 2017, at 10:35, Guillermo Polito >> <mailto:guillermopol...@gmail.com>>

Re: [Pharo-users] Preference to for not showing hidden files in the FileBrowser?

2017-08-17 Thread Guillermo Polito
On Wed, Aug 16, 2017 at 1:26 PM, H. Hirzel wrote: > Hello > > Is there a preference for not showing hidden files in the FileBrowser? > I don't think such preference exists, sorry... Maybe implementing it would not be so hard? > I checked menu 'System' -> 'Settings' searching for 'hidden'. > Th

Re: [Pharo-users] Parser failure on FFI pragmas declaration in Pharo 5

2017-08-17 Thread Guillermo Polito
On Thu, Aug 17, 2017 at 1:09 PM, Denis Kudriashov wrote: > > Sorry, but we will not accept old pragma format (as I said, is invalid… >> and ugly ;) ). > > > But we will be able load old compiler (when it will be removed from > standard image) to support such old code > But then you should compil

Re: [Pharo-users] [ANN] PharoLambda 1.5 - Pharo running on AWS Lambda now with saved Debug sessions via S3

2017-08-17 Thread Guillermo Polito
On Thu, Aug 17, 2017 at 8:51 PM, Alistair Grant wrote: > Hi Tim, > > On Thu, Aug 17, 2017 at 01:07:06PM +0100, Tim Mackinnon wrote: > > Just thought I would report back a bit more on this - > > > > The Unicode change doesn?t work in my case (possibly not for command > line Pharo > > as well) as I

Re: [Pharo-users] Let's prepare for Google Code-In 2017 with Pharo Consortium

2017-09-11 Thread Guillermo Polito
Yes this is cool. We need to get a decent set of tasks. On Sat, Sep 9, 2017 at 5:24 PM, Jigyasa Grover wrote: > Thanks Stef for your support. > > I have already added you in the private repository "GCI-2017-with-Pharo", > as > we need to keep prospective students away from the task list before t

Re: [Pharo-users] Gofer loads wrong version?

2017-09-13 Thread Guillermo Polito
On Mon, Sep 4, 2017 at 1:01 PM, Herby Vojčík wrote: > Hello! > > As I need to load specific version of Glorp with my fix, and I did not > find out how to force-override it in my baseline, I tried to load it > post-the-baseline via Gofer: > > (Gofer new smalltalkhubUser: 'DBXTalk' project: 'Glorp'

Re: [Pharo-users] Iceberg and proxy

2017-10-03 Thread Guillermo Polito
You should probably set the proxy in the Pharo settings. Pharo does not recognize the system's proxy (so far). Could you try with that? Guille On Mon, Oct 2, 2017 at 4:35 PM, Vitor Medina Cruz wrote: > git push via command line works fine. When I try to pull, for example, > from Iceberg it say

Re: [Pharo-users] Reading a text file line by line

2017-10-03 Thread Guillermo Polito
Yes, in my todo, but changing FileReference like that will break a lot of backwards compatibility :) On Mon, Oct 2, 2017 at 10:22 AM, Stephane Ducasse wrote: > Yes this is why we should continue to clean and remove cruft. Now I > remember that guille did that for File. > > Stef > > On Mon, Oct 2

Re: [Pharo-users] Iceberg and proxy

2017-10-03 Thread Guillermo Polito
; On Tue, Oct 3, 2017 at 5:31 AM, Guillermo Polito < > guillermopol...@gmail.com> wrote: > >> You should probably set the proxy in the Pharo settings. Pharo does not >> recognize the system's proxy (so far). >> >> Could you try with that? >> >> Guille &

Re: [Pharo-users] Iceberg and proxy

2017-10-03 Thread Guillermo Polito
pts has an authentication > callback, which should be called, but it is not. Any leads on what I can do > from here to figure out what is happening? > > On Tue, Oct 3, 2017 at 9:09 AM, Guillermo Polito < > guillermopol...@gmail.com> wrote: > >> Looks like it's an iceb

Re: [Pharo-users] "Leaking" CommandLineHandler when running headless image

2017-10-03 Thread Guillermo Polito
Yes, that's the issue. I'm still convinced about that :) On Tue, Sep 19, 2017 at 3:36 PM, Tim Mackinnon wrote: > There was a long post from Guille about how to sort this. It had to do > with altering the priority of shutdown code - I'm not sure if we resolved > it, but we should go back and see

Re: [Pharo-users] Iceberg and proxy

2017-10-03 Thread Guillermo Polito
I know, but a LGitProxyOptions accepts one. On Tue, Oct 3, 2017 at 5:57 PM, Vitor Medina Cruz wrote: > Nope, auto/none/specified returned objects are not compatible to the > expected one received by prim_proxy_opts: > > On Tue, Oct 3, 2017 at 11:16 AM, Guillermo Polito <

Re: [Pharo-users] Iceberg and proxy

2017-10-03 Thread Guillermo Polito
e/specified from > LGitProxyTypeEnum. Can you provide an example? > > On Tue, Oct 3, 2017 at 1:06 PM, Guillermo Polito < > guillermopol...@gmail.com> wrote: > >> I know, but a LGitProxyOptions accepts one. >> >> On Tue, Oct 3, 2017 at 5:57 PM, Vitor Medina Cruz >> wro

Re: [Pharo-users] Iceberg and proxy

2017-10-04 Thread Guillermo Polito
No idea, Esteban??? I actually think that Iceberg should manage this. Either use the system's proxy or use Pharo's proxy... On Wed, Oct 4, 2017 at 1:56 PM, Nicolai Hess wrote: > > > 2017-10-03 20:58 GMT+02:00 Guillermo Polito : > >> Well, LGitFetchOptions has a pr

Re: [Pharo-users] Reading a text file line by line

2017-10-05 Thread Guillermo Polito
st nice? > Could we point it as a sprint task? > Stef > > On Tue, Oct 3, 2017 at 4:22 PM, Sven Van Caekenberghe > wrote: > > > > > >> On 3 Oct 2017, at 10:53, Guillermo Polito > wrote: > >> > >> Yes, in my todo, but changing FileReference l

Re: [Pharo-users] FileReference#entries caching?

2017-10-08 Thread Guillermo Polito
Hi, I don't think that FileSystem is caching entries... However, we found somehow related bug the other day with Mariano and Pablo while running OSSupprocess tests on travis/linux. The bug is as follows. The test was doing: '/tmp' asFileReference entries do: [...] And then it was calling 'lsof'

Re: [Pharo-users] Futures, in Scale (was: Re: Embeddable Smalltalk (was: Re: Behold Pharo: The Modern Smalltalk))

2017-10-08 Thread Guillermo Polito
Hi Herby, Scale does not implement futures by itself. It uses the ones implemented in taskit: https://github.com/sbragagnolo/taskit On Sat, Oct 7, 2017 at 2:22 PM, Herby Vojčík wrote: > Hi, > > I have looked at Scale b/c of different question, and I see it uses > futures. > > I'd like to ask i

Re: [Pharo-users] FileReference#entries caching?

2017-10-08 Thread Guillermo Polito
On Sun, Oct 8, 2017 at 7:01 PM, Alistair Grant wrote: > On Sun, Oct 08, 2017 at 06:33:08PM +0200, Guillermo Polito wrote: > > Hi, > > > > I don't think that FileSystem is caching entries... > > I haven't seen any code in the Pharo image or FilePlugin that cac

Re: [Pharo-users] [ANN] Libusb binding + HID support for Pharo

2017-10-12 Thread Guillermo Polito
Nice!!! Thanks for sharing :) On Thu, Oct 12, 2017 at 1:29 PM, Julien wrote: > Hello, > > A bit late, there is a Libusb [1] binding (using UFFI) and support for the > Human Interface Device [2] (that uses the binding but is written in pure > Smalltalk) for Pharo. > > Everything is on the github

Re: [Pharo-users] [ANN] Libusb binding + HID support for Pharo

2017-10-12 Thread Guillermo Polito
On Thu, Oct 12, 2017 at 2:49 PM, Julien wrote: > Normally, it should be possible. > > Libusb can be compiled for 64bits architectures. I don’t know if it > changes something in the UFFI binding side? > It should not, besides the library's location. And, if you find a case where the binding does

Re: [Pharo-users] Peeking at a stream

2017-11-02 Thread Guillermo Polito
Hi Andrew, My first hunch is that you don't want to change PositionableStream. Because it works on collections and files (because of inheritance). But not on other kind of streams that are not part of the hierarchy, such as sockets. And we are cleaning that part. Instead, some time ago Sven produ

Re: [Pharo-users] Looking for game state

2017-11-03 Thread Guillermo Polito
On Fri, Nov 3, 2017 at 9:59 AM, Stephane Ducasse wrote: > Hi > > I'm reading a nice book explaining Game AI logic and it uses state > design patterns and I would like to take it as an example for a future > book on AI in the future > Which one? I'm interested :) > > They have two little actors

Re: [Pharo-users] [Pharo-dev] [Pharo7.0a] Next batch of enhancements

2017-11-05 Thread Guillermo Polito
Thanks stef :) Question: would you like that we set-up a jenkins job that sends this report every saturday or monday morning? On Sun, Nov 5, 2017 at 10:07 AM, Stephane Ducasse wrote: > Report period: 23 October 2017 to 5 November 2017 > > * 20632-Rename-PluggableSortFunction-to-CollatorBlockFu

Re: [Pharo-users] PharoLauncher directories

2017-11-09 Thread Guillermo Polito
An analysis of the situation so people out of context can understand better the forces in play here :) - *Working directory and files constant property:* files defined using a *relative path* are created relative to the working directory. In other words: File named: 'something/other/my

Re: [Pharo-users] FileReference basename of current dir

2017-11-10 Thread Guillermo Polito
On Thu, Nov 9, 2017 at 10:12 PM, Norbert Hartl wrote: > is there a good explanation why > > ‚foo‘ asFileReference parent basename > > gives ‚/‘ ? > I can only answer making one of the following assumtions - You've launched your image doing a double click - or by doing drag and drop on a vm - or

Re: [Pharo-users] Stream API

2017-11-13 Thread Guillermo Polito
Thanks Sven, we should take that list of selectors and make a document or Lint rules on them. On Mon, Nov 13, 2017 at 9:08 PM, Stephane Ducasse wrote: > On Mon, Nov 13, 2017 at 8:27 PM, Sven Van Caekenberghe > wrote: > > The idea is to have much simpler streams which can be composed to get > mo

Re: [Pharo-users] Peeking at a stream

2017-11-13 Thread Guillermo Polito
Yeah, I understand. The thing is that we will remove in the near future MultiByteFileStream. And not all streams have conceptually a position. Today there was a mail from Sven about that. On Mon, Nov 13, 2017 at 2:48 PM, Prof. Andrew P. Black wrote: > > > On 2 Nov 2017, at 10:10 ,

Re: [Pharo-users] Why is compile: breaking my image?

2017-11-13 Thread Guillermo Polito
Can you share what was the original problem and how you fixed it? On Sat, Nov 11, 2017 at 4:44 PM, Sven Van Caekenberghe wrote: > > > > On 11 Nov 2017, at 16:33, Peter Uhnák wrote: > > > > Never mind... I see now what is broken and I'll try to fix it (assuming > my P7 image won't corrupt itself

Re: [Pharo-users] Stream API

2017-11-14 Thread Guillermo Polito
To a package next to block? On Tue, Nov 14, 2017 at 9:16 AM, Denis Kudriashov wrote: > What about contributing to zinc streams? Imaging that I will create block > based streams, collecting:/selecting streams like in XSteam. Where I should > put them? > > > 2017-11-13 23:51 GMT+01:00 Norbert Hart

Re: [Pharo-users] when a subclass is loaded, is super-class-side>>initialize executed?

2017-11-14 Thread Guillermo Polito
Class side #initialize is executed only when a class is loaded for the first time. Posteriors "updates" to the class, or even to the initialize method do not re-execute #initialize. Now, about the FFI particular requirements, I'd let Esteban answer :) On Tue, Nov 14, 2017 at 3:08 AM, Ben Coman w

Re: [Pharo-users] Open Debugger, Save and Quit

2017-11-14 Thread Guillermo Polito
Hi Sean, You can always try: exception freeze. freeze will copy the stack so it is usable in a posterior debug session even if the original contexts died. exception debug. Opens a debugger :) On Mon, Nov 13, 2017 at 5:20 PM, Sean P. DeNigris wrote: > Tim Mackinnon wrote > > you can overri

Re: [Pharo-users] FileReference basename of current dir

2017-11-15 Thread Guillermo Polito
Made a small review ;) On Wed, Nov 15, 2017 at 10:34 AM, Alistair Grant wrote: > On 14 November 2017 at 22:36, Alistair Grant > wrote: > > On 10 November 2017 at 22:30, Alistair Grant > wrote: > >> On 9 November 2017 at 22:12, Norbert Hartl wrote: > >>> is there a good explanation why > >>> >

Re: [Pharo-users] Why does the test runner show red when I correct a test?

2017-11-15 Thread Guillermo Polito
And just putting it back to gray? As "not run"? On Wed, Nov 15, 2017 at 10:44 AM, Denis Kudriashov wrote: > 2017-11-15 1:49 GMT+01:00 Sean P. DeNigris : > >> Ben Coman wrote >> > Or it could go to Amber, half-way between green & red to mean probably >> > correct. >> >> Ha ha. >> >> Again, it see

Re: [Pharo-users] Why does the test runner show red when I correct a test?

2017-11-15 Thread Guillermo Polito
On Wed, Nov 15, 2017 at 11:06 AM, Denis Kudriashov wrote: > > > 2017-11-15 11:00 GMT+01:00 Guillermo Polito : > >> And just putting it back to gray? As "not run"? >> > > We can implement any logic. > Personally I need current behaviour. > B

Re: [Pharo-users] Stream API

2017-11-15 Thread Guillermo Polito
I have a meta-comment here. As a community I feel sometimes that we are trying to make people converge. "Somebody already wrote a transducers library, I cannot write another transducers library, we have to merge". Now, I understand that sometimes we don't have the "manpower" to solve all the probl

Re: [Pharo-users] Why does the test runner show red when I correct a test?

2017-11-15 Thread Guillermo Polito
On Wed, Nov 15, 2017 at 11:41 AM, Denis Kudriashov wrote: > > 2017-11-15 11:08 GMT+01:00 Guillermo Polito : >> >> On Wed, Nov 15, 2017 at 11:06 AM, Denis Kudriashov >> wrote: >> >>> >>> >>> 2017-11-15 11:00 GMT+01:00 Guillermo Polito

Re: [Pharo-users] Pharo-Chrome (was: Soup bug(fix))

2017-11-17 Thread Guillermo Polito
Yes, everything is on official's Mariano repository. On Fri, Nov 17, 2017 at 10:29 AM, Stephane Ducasse wrote: > > > > Well, in general the idea is to use the "upstream" project and not > personal > > forks. As far as I am aware of, I have merged all PR from Guille into > > `master`. > > Ok so t

Re: [Pharo-users] ZIPArchive usage + FileSystem memory

2017-11-30 Thread Guillermo Polito
Hi Juraj, The file streams opened in a memory file system are not polymorphic with the ones in a disk file system :(. Can you open an issue and assing it to me? I'll work soon on making all of them work and yield binary streams. On Wed, Nov 29, 2017 at 9:06 PM, Juraj Kubelka wrote: > Hi, > > I

Re: [Pharo-users] Solver for the Stable Marriage problem in Pharo

2018-01-04 Thread Guillermo Polito
Nice! But late :P I was looking for something like this to organize secret santa a couple of weeks ago. I'll star it though :) Tx! On Wed, Jan 3, 2018 at 12:23 AM, Sean P. DeNigris wrote: > Julien wrote > > Continuing to announce what I have. > > Hooray!! > > > > - > Cheers, > Sean > -- > S

Re: [Pharo-users] Solver for the Stable Marriage problem in Pharo

2018-01-04 Thread Guillermo Polito
#x27;Ascq&entry=gmail&source=g> > Numéro de téléphone: +333 59 35 86 40 <+33%203%2059%2035%2086%2040> > > Le 4 janv. 2018 à 10:08, Guillermo Polito a > écrit : > > Nice! But late :P I was looking for something like this to organize secret > santa a couple

Re: [Pharo-users] Request for adding Smalltalk syntax highlight in SE network

2014-09-29 Thread Guillermo Polito
Thanks, I starred the issue in the google code site. On Mon, Sep 29, 2014 at 7:43 AM, Hernán Morales Durand < hernan.mora...@gmail.com> wrote: > I have requested for some justice to stop the look down on Smalltalk > syntax highlighting in StackOverflow: > > > http://meta.stackoverflow.com/questi

Re: [Pharo-users] #quitSession

2014-10-01 Thread Guillermo Polito
I'd bet it is... PasteUpMorph>>windowEvent: anEvent self windowEventHandler ifNotNil: [^self windowEventHandler windowEvent: anEvent]. anEvent type == #windowClose ifTrue: [WorldState quitSession]. and #windowsEvent: is called in a sequence like: VM event => InputEventFetcher => Morphic event =

Re: [Pharo-users] [Pharo-dev] Pharo days: date proposal

2014-10-02 Thread Guillermo Polito
Cool and the 31 we do my bday party. I love the idea! :D On Thu, Oct 2, 2014 at 4:54 PM, stepharo wrote: > Hi pharoers and others happy hackers > > we would like to organize PharoDays a two days gathering mix between a > conference and a huge sprint. > We thought that the 29 and 30 of January 20

Re: [Pharo-users] #quitSession

2014-10-08 Thread Guillermo Polito
in > the image. A bit misleading. > This whole implementation smell. I'd say nobody used it before and that's why it is like it is :). Just old unused code. > I guess we can get something cleaner > with Announcement > Sure! > > > Hilaire > > > L

Re: [Pharo-users] Pharo - OpenDBXDriver: Unsupported data type: UNKNOWN

2014-10-28 Thread Guillermo Polito
Hi! Check that a row in Pharo's OpenDBX driver answers to: - #values it reads the value from the database and tries to convert it to the corresponding object representation (e.g., a mysql date to a pharo date) - #rawValues it returns a string representing the direct representation in mysql. So

Re: [Pharo-users] NBSQLite3 on OS X - Pharo 3

2015-01-19 Thread Guillermo Polito
Hi Mircea, - About the library: You can either install the sqlite library close to the VM or, as mac is a unix, in /usr/lib. I have for example mine in here: /usr/lib/libsqlite3.dylib The VM loads the libraries dinamically, so putting the library in one of those locations should IIRC by default

Re: [Pharo-users] Cleaning code completition's namespace

2015-02-02 Thread Guillermo Polito
It's the table that keeps the symbols and checks their uniqueness. but AFAIK the symbol table is weak. So probably it's the completion mechanism that is keeping extra references... El Mon Feb 02 2015 at 11:52:28 AM, p...@highoctane.be escribió: > Got the same problem here. > > Annoying when thir

Re: [Pharo-users] Cleaning code completition's namespace

2015-02-02 Thread Guillermo Polito
eak refs are only killed after GC, right ? > > And even then... > > > On 02 Feb 2015, at 12:03, Guillermo Polito > wrote: > > > > It's the table that keeps the symbols and checks their uniqueness. > > > > but AFAIK the symbol table is weak. So probab

Re: [Pharo-users] Cleaning code completition's namespace

2015-02-03 Thread Guillermo Polito
ementation specific. I will step > through its execution to try to find out how it works. > > Best, > Laura > > > > On Mon, Feb 2, 2015 at 8:39 AM, Guillermo Polito < > guillermopol...@gmail.com> wrote: > >> Well yes, but GCs are happening all the time :). So

Re: [Pharo-users] Spotter: How to see more beyond #/##

2015-02-05 Thread Guillermo Polito
Maybe I'm not getting it but, Why not just using "Right"? El Thu Feb 05 2015 at 10:43:39 AM, Ben Coman escribió: > I've been meaning to ask the same question.In light of your answer, > Would you consider being able to place the cursor on the line "Classes > 5/26" line, and using the standard

Re: [Pharo-users] Changes file size

2015-02-13 Thread Guillermo Polito
El Wed Feb 11 2015 at 4:08:36 PM, Esteban A. Maringolo escribió: > 2015-02-11 10:02 GMT-03:00 Sven Van Caekenberghe : > >> ps: As said in another thread, Torsten's version (descendant of mine) > >> didn't seem to have this issue. > > > Yes, we are making (some) progress. > > Maybe we should promo

Re: [Pharo-users] Native language support

2015-03-12 Thread Guillermo Polito
Hi Nick, Thanks for chasing the bug down. Since the code for event handling is probably going to change in favor of SDL2 events soon, I think it should be good to also provide some tests for this, to detect any regression or problem, or at least to document expected behavior. Do you have any poin

Re: [Pharo-users] [Pharo-dev] QualityAssistant v0.4

2015-04-23 Thread Guillermo Polito
Hi Cyril, Your problem is caused because abstract methods should be marked with "subclassResponsibility" and not "shouldBeImplemented". - shouldBeImplemented means "this is a method I did not implement yet, I should replace *this* method with another implementation" - subclassResponsibility means

Re: [Pharo-users] [Pharo-dev] QualityAssistant v0.4

2015-04-24 Thread Guillermo Polito
El vie., 24 de abr. de 2015 a la(s) 8:31 a. m., stepharo escribió: > It is the configurationBrowser (but an old configuration) > DependencyAnalyser (guillermo I thought that I fixed the text: > deprecation but apparently not) > or in PharoExtras > Hey! It is fixed :) ! (just downloaded it 2 secs

Re: [Pharo-users] [Pharo-dev] [SURVEY] Pillar input/output files.

2015-05-04 Thread Guillermo Polito
If I understand correctly... then, why the pillar.conf is not just a pillar file? (And the conf is the header if the file?) :) El lun., 4 de may. de 2015 a la(s) 2:50 p. m., Damien Cassou < damien.cas...@inria.fr> escribió: > > Cyril Ferlicot writes: > > > Hi, > > I'm currently working on the wa

Re: [Pharo-users] [Pharo-dev] [SURVEY] Pillar input/output files.

2015-05-04 Thread Guillermo Polito
p. m., Ben Coman < b...@openinworld.com> escribió: > +1. I can't think of any detractions. > > On Mon, May 4, 2015 at 8:59 PM, Guillermo Polito < > guillermopol...@gmail.com> wrote: > >> If I understand correctly... then, why the pillar.conf is not just a &g

[Pharo-users] [Ann] The Garage database driver API

2015-05-07 Thread Guillermo Polito
Hi all, I'm pleased to announce the release 0.1 of Garage, a database driver API. Garage is meant to be a common interface to access several database servers, in a JDBC style. The current version works in Pharo3 and Pharo4 and includes drivers for: - mysql (pure smalltalk) - postgres (pure smal

Re: [Pharo-users] [Ann] The Garage database driver API

2015-05-07 Thread Guillermo Polito
red fetchs, url connection strings... I like it. > > Why "Garage"? > > Regards! > El may 7, 2015 6:37 AM, "Guillermo Polito" > escribió: > >> Hi all, >> >> I'm pleased to announce the release 0.1 of Garage, a database driver API. >&g

Re: [Pharo-users] Garage and SQLite file databases, general project structure

2015-05-18 Thread Guillermo Polito
Hi Torsten, Thanks for taking a look, I'll answer between lines :). El mar., 12 de may. de 2015 a la(s) 8:35 p. m., Torsten Bergmann < asta...@gmx.de> escribió: > Hi Guille, > > I had a short look at Garage [1]. Nice initiative! > > Looks like using a file is not supported for the SQLite3 backen

Re: [Pharo-users] Garage and SQLite file databases, general project structure

2015-05-18 Thread Guillermo Polito
Hi Pierce, El sáb., 16 de may. de 2015 a la(s) 10:52 a. m., Pierce Ng < pie...@samadhiweb.com> escribió: > On Tue, May 12, 2015 at 08:35:23PM +0200, Torsten Bergmann wrote: > > Also I do not understand: while "Garage-Postgres" uses the Postgres > > project PostgresV2 as a backend the "Garage-Sql

Re: [Pharo-users] Garage and SQLite file databases, general project structure

2015-05-18 Thread Guillermo Polito
I'll have to add Zn to my dependencies and load the correct version accordingly, what do you think? (I prefer that to backporting) Guille El lun., 18 de may. de 2015 a la(s) 11:27 a. m., Sven Van Caekenberghe < s...@stfx.eu> escribió: > Hi Guile, > > > On 18 May

[Pharo-users] [ANN] Garage 0.2 - GarageGlorp - GarageConnectionPool

2015-05-18 Thread Guillermo Polito
Hi all, little announcement here. Updated Glorp v1.11 I updated/merged latest configurations of Glorp with latest changes fixing TimeStamps and similar. I have fully green test cases in Pharo 5. Latest version of the configuration is in Glorp's repository and copied to the corres

Re: [Pharo-users] Fun with pillar and mustache

2015-05-21 Thread Guillermo Polito
Hi! Well, we have this secret really not mature project we started with stef a couple of weeks ago. https://github.com/guillep/Ecstatic For now it has some simple features: - you open an image and it will start serving your site + regenerating it every couple of seconds (nice to debug and forg

Re: [Pharo-users] [Pharo-dev] Pillar 0.56 : New features, new syntax

2015-05-24 Thread Guillermo Polito
Now, is pier evolving? because i'd also accept a solution where either - pier extends pillar to use @ - pier uses a freezed version of pillar and new releases of pillar are not backward compatible El dom., 24 de may. de 2015 a la(s) 11:38 a. m., Norbert Hartl < norb...@hartl.name> escribió: > A

Re: [Pharo-users] Pointer drawing method?

2015-05-27 Thread Guillermo Polito
FYI, environment in spanish is said ambiente :). You can imagine the rest. Guille El mar., 26 de may. de 2015 a la(s) 7:19 p. m., Laura Risani < laura.ris...@gmail.com> escribió: > I've just came to say i'd found #arrowPrototype. Thanks Ben ! > > On Tue, May 26, 2015 at 2:14 PM, Ben Coman wrote

Re: [Pharo-users] breaking infinite loop from saved image

2015-06-16 Thread Guillermo Polito
Hi! El mar., 16 de jun. de 2015 a la(s) 8:55 a. m., Peter Uhnák < i.uh...@gmail.com> escribió: > I ended up fileouting what I could in headless mode (had utf8 issues for > whatever reason so I didn't get it all), and rewriting the rest. :/ > But what happens once will happen again... so some more

Re: [Pharo-users] Mugs 'n' stuff - logo and message

2013-06-10 Thread Guillermo Polito
Maybe any from the Pharo manifesto[1]? Pharo manifesto - Better for the better - Beauty to learn from - Not backward compatible - Clean, lean and fast [1] https://code.google.com/p/pharo/ BTW, is the manifesto in the new issue tracker's wiki? i didn't find it... Guille On Mon, Ju

Re: [Pharo-users] auto-format on save/display in pharo 2?

2013-06-12 Thread Guillermo Polito
I'd love to have a setting enabling that! <3 On Tue, Jun 11, 2013 at 11:39 PM, Stéphane Ducasse < stephane.duca...@inria.fr> wrote: > not that I know but I would really like to experiment with such feature. > > On Jun 11, 2013, at 7:05 PM, Paul DeBruicker wrote: > > > > > > > Is there a way to

[Pharo-users] SVN client and latex parser, are any there?

2013-06-12 Thread Guillermo Polito
Buon giorno! I got pissed off when committing latex and figures and stuff into svn by command line... So, for playing the weekend, does somebody know if there is any package implementing an svn client (maybe using osprocess, i do not care ;) and a latex parser? Tx! Guille

Re: [Pharo-users] SVN client and latex parser, are any there?

2013-06-12 Thread Guillermo Polito
use git over svn, so I sleep properly at night at least :P > > what's the real problem you're dealing with? > > On 2013-06-12, at 09:38, Guillermo Polito > wrote: > > > Buon giorno! > > > > I got pissed off when committing latex and figures and stuf

Re: [Pharo-users] ui slowness on newly installed ubuntu 13.04 64bit

2013-06-13 Thread Guillermo Polito
Hmm, unless there is a difference in compilation, then it is maybe the check we added with Igor to handle correctly objects as methods. I'll put this in my todo for the weekend :/. On Thu, Jun 13, 2013 at 9:57 PM, Sven Van Caekenberghe wrote: > I am sorry, some 10x slowdown with vmLatest. > > $

Re: [Pharo-users] ui slowness on newly installed ubuntu 13.04 64bit

2013-06-13 Thread Guillermo Polito
Wait, ppa:pharo/stable is version NBCoInterpreter NativeBoost-CogPlugin- GuillermoPolito.19? Sven, from your email I understood that the vm versions are in the same order as the measures, is that so? Guille On Thu, Jun 13, 2013 at 10:05 PM, Guillermo Polito < guillermopol...@gmail.com>

Re: [Pharo-users] ui slowness on newly installed ubuntu 13.04 64bit

2013-06-13 Thread Guillermo Polito
Ok, so besides the problem, It is strange to me that te ppa:stable yields to the latest unstable :). On Thu, Jun 13, 2013 at 10:11 PM, Sven Van Caekenberghe wrote: > > On 13 Jun 2013, at 22:07, Guillermo Polito > wrote: > > > Wait, ppa:pharo/stable is version NBCoInterpr

Re: [Pharo-users] ui slowness on newly installed ubuntu 13.04 64bit

2013-06-16 Thread Guillermo Polito
Ok, i checked this problem with three vms and the results are pretty similar between them (while they are different from Sven's)... - self compiled latest pharo vm - latest vm from get.pharo.org - stable vm from get.pharo.org "PharoVM self compiled" Smalltalk vm version 'NBCoInterpreter NativeBoo

  1   2   3   4   5   >