[Pharo-project] Newspeak

2009-02-28 Thread Stephan Eggermont
Pharo is starting to look better and better, but not yet as good as Newspeak: http://newspeaklanguage.org/downloads/ Stephan ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr

[Pharo-project] Seaside29 broken on 10292 dev ?

2009-04-25 Thread Stephan Eggermont
. On Friday, April 24, 2009, Stephan Eggermont step...@stack.nl wrote: How am I supposed to load Seaside into the latest 10292-dev? On windows I ?downloaded ?from www.pharo-project.org/download the vm, sources and dev image. ScriptLoader loadSeaside29 WAKom startOn:8080 that last one has

[Pharo-project] Seaside29 on 10292-dev

2009-04-25 Thread Stephan Eggermont
Thank you Lukas, Harvested as Issue 771 Stephan ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

[Pharo-project] Questions: PDFs

2009-05-08 Thread Stephan Eggermont
On the seaside site, there is an overview I collected with Lukas last ESUG http://www.seaside.st/documentation/pdfs Stephan ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr

[Pharo-project] Questions: PDFs

2009-05-08 Thread Stephan Eggermont
Stefan Schmiedl wrote: http://www.seaside.st/documentation/pdfs Is it just me or are the LaTeX samples lacking backslashes? Thanks for a valuable overview, You're right, they should have backslashes. Probably a conversion problem. Andreas Brodbeck writes about another solution:

Re: [Pharo-project] Iso-Collections

2009-05-15 Thread Stephan Eggermont
Guido Stepken wrote: LSWVST introduces a new object-type - IsoCollections. Iso-Collections stores type information of its elements only once. That's nice, but not enough. Collections with more than a few thousand elements should use multiple blocks of memory (e.g. btree) to have acceptable

[Pharo-project] Dictionary use in SmartRefStream

2009-05-26 Thread Stephan Eggermont
called in SmartRefStreamreadInsanceSize:clsname:refPosn:) Stephan Eggermont ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

[Pharo-project] How to test SmartRefStream?

2009-05-28 Thread Stephan Eggermont
Transcript show: [ |buffer rr book stream| buffer := (ByteString new: 2000). stream := (RWBinaryOrTextStream on:buffer). rr := SmartRefStream on: stream. rr nextPut: (Morph new). need something

[Pharo-project] Testing SmartRefStream...

2009-05-28 Thread Stephan Eggermont
Creates a lot of newlines on the mailing list. Sorry about that. My mail program didn't show the charactres at all. Stephan ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr

[Pharo-project] Usability improvements for the class browser: buttons

2009-09-16 Thread Stephan Eggermont
such a button bar. The red, orange, and green window buttons used to have a much better horizontal separation. I am not sure in which update they were put so close together, but they need at least as much horizontal separation as the space from left window border to the first (red) button. Stephan

[Pharo-project] anyone think buttons still too large?

2009-11-04 Thread Stephan Eggermont
around with a painting tool and started digging around in Toolbuilder, OmniBrowser and PolyMorph. Let me just say that I really, really, really like Glamour. See issue 909 Stephan Eggermont inline: ButtonBar2.png ___ Pharo-project mailing list Pharo

[Pharo-project] About end of line convention

2009-11-19 Thread Stephan Eggermont
, but not for text. Stephan Eggermont ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

[Pharo-project] Pharo and db support

2009-11-26 Thread Stephan Eggermont
Doru wrote: I would like to collect a list of the solutions to link Pharo with existing databases. I am interested in both relational and in object databases. Something like http://www.seaside.st/documentation/persistence? Stephan ___

Re: [Pharo-project] Solving the documentation problem. Capturing tacit knowledge. Knowledge reuse

2010-01-01 Thread Stephan Eggermont
Adrian wrote: What about using a wiki to gather and edit comments (as suggested by Stan) and then integrate them in a second step so that they are kept together with the code (as suggested by Stef)? Just a thought... I'd very much prefer an in-image solution and avoid integrating. In-image

[Pharo-project] Date fromString: '6-Jan-10'

2010-01-17 Thread Stephan Eggermont
The real life situation with date strings is much worse. I live in a city (Zoetermeer) where a passport was issued with the holders birthdate being 00-00-1972. I'm very much in favor of not trying to be clever in the core Date classes, and to provide separate guessing logic, properly

Re: [Pharo-project] databases

2010-02-17 Thread Stephan Eggermont
Hello Laurent, I assume you are aware of: http://www.seaside.st/documentation/persistence Stephan ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Re: [Pharo-project] databases

2010-02-19 Thread Stephan Eggermont
mail me. Stephan Eggermont ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Re: [Pharo-project] collections

2010-03-13 Thread Stephan Eggermont
Levente wrote: How bad do they perform? Do you have benchmarks? With a coll := OrderedCollection new. 1 to: 1000 do: [:i | coll add: i]. a profile of: 1 to: 100 do: [:i | coll add: i beforeIndex: 10] here takes 1438 ms. Moving memory gets to be slow. All operations that start taking

Re: [Pharo-project] Collection

2010-03-13 Thread Stephan Eggermont
Igor wrote: Yes. Use right tool for to do job. An OrderedCollection can't satisfy every possible combination of tasks, which developer facing. So, these collections are currently missing. And as all current code is bound to the current implementations, switching implementation on size is the

Re: [Pharo-project] Collection

2010-03-13 Thread Stephan Eggermont
Igor wrote: If such kind of collections didn't existed over more than 30 years of smalltalk existance, what makes you think that there a big interest in having them today? Memory. Without the memory to use them, the need was not there. Of course, they could occupy some niche, but i doubt that

Re: [Pharo-project] Collection

2010-03-13 Thread Stephan Eggermont
Levente wrote: Trees are rarely useful in Smalltalk, so there's no default tree implementation. Note that trees consume a lot more memory (=5x) than a single array. Huh? You mean binary trees? Or Red-Black or so? On current procesors they are not very useful, and not usable at all for large data

Re: [Pharo-project] Collection

2010-03-13 Thread Stephan Eggermont
Igor wrote: What you talking about is an edge case in currently existing systems. And its easy to prove: That's not convincing. I'd say you have cause and effect reversed. I'd not expect there to be large OrderedCollections as long as they don't behave well. Stephan

Re: [Pharo-project] Trip to Pharo land

2010-05-30 Thread Stephan Eggermont
I'd guess the important thing is to explain on the Pharo web site that bug fixes are in the 1.1 and are not (always) retrofitted to 1.0 Stephan ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr

[Pharo-project] Pharo sprint @ Brussels

2010-06-06 Thread Stephan Eggermont
I'll be there on Saturday. Stephan Eggermont ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

[Pharo-project] Cloud vs object

2010-07-02 Thread Stephan Eggermont
Germán wrote: Anyway I personally largely prefer the objects databases :) But indeed these sort of DBs (as Cassandra) are being more and more populars, I think that this is mainly for its HA features. I tend to run into applications where it makes sense to have both. The big blobs that do not

[Pharo-project] Suggestions for hotel/apartment for ESUG2010 in Barcelona?

2010-07-07 Thread Stephan Eggermont
Does anyone have suggestions for a good (and cheap) place to stay during ESUG2010 in Barcelona? The conference is not in the city centre, and the only hotel which is close by (NH Cornellà) has no places available. We thought of renting a large appartment somewhere along the metro line 5 and

[Pharo-project] Poll: missing libraries to support business

2010-08-10 Thread Stephan Eggermont
Philippe wrote: Rather than imagining what problems non-users could have I'd focus on what problems existing users have. Instead of building libraries that you'll have to maintain forever I'd focus in infrastructure that allows users to write the libraries they need themselves. Executive summary:

[Pharo-project] Gaucho Progress

2010-08-19 Thread Stephan Eggermont
Gaucho looks like an interesting system. Too bad the monticello versions don't have comments, making it difficult to track progress. Is there another way to see what's happening? Stephan ___ Pharo-project mailing list

Re: [Pharo-project] [Moose-dev] glamorous theme :)

2010-09-05 Thread Stephan Eggermont
Sven wrote: Sorry: if you switch to the Pro theme The example basic controls shows the following issues: - Default button looks smaller because the blue border is (imperfectly) written over the black outline. - Selected Disabled Button is unreadable. The contrast between the gray text and

[Pharo-project] [Moose-dev] glamorous theme :)

2010-09-05 Thread Stephan Eggermont
Hello Doru, Doru wrote: Is this for Pro or for Glamorous? I was refering to: http://lists.gforge.inria.fr/pipermail/pharo-project/attachments/20100905/21e9b4c2/attachment-0001.png That makes it for pro. But a lot of the issues are for both. In Laurents screenshot there are also alignment issues

[Pharo-project] [Moose-dev] glamorous theme :)

2010-09-07 Thread Stephan Eggermont
to maintain them. In user interfaces, consistency is good, and I want one good theme, not ten bad or mediocre. Stephan Eggermont ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo

Re: [Pharo-project] posting etiquette - please post new text at the *top* of your email

2010-10-29 Thread Stephan Eggermont
Niko wrote: I think RFC1855-style messages still look beautiful, and they have their place. But if you're too lazy to follow the gist of it, that's alright with me, but then put your content at the top, so I don't have to scroll down to Walhalla. The best thing to do is to make the mailing list

[Pharo-project] Not happy with the issues feed from Google

2010-11-18 Thread Stephan Eggermont
Hello, I'm not happy to see the feed subscribed to this mailing list. I often have to use the web interface to this list, and the number of one-line comments and status changes makes for a very unpleasant reading experience. In addition it makes it more difficult to find the interesting

Re: [Pharo-project] Not happy with the issues feed from Google

2010-11-18 Thread Stephan Eggermont
Mariano wrote: Remember that most email client support filters. You can easily create one. - That doesn't help with the web interface; - My mail client supports RSS feeds, the added value of a duplicate is low; - Filtering doesn't work with digests; - The subject is not good and the content is

Re: [Pharo-project] Not happy with the issues feed from Google

2010-11-18 Thread Stephan Eggermont
Stef wrote in reply to: On Nov 18, 2010, at 5:53 PM, Stephan Eggermont wrote: That doesn't help with the web interface; ?? As I said, I often browse http://lists.gforge.inria.fr/pipermail/pharo-project/2010-November/ But you just get a bad summary from squeak-source I have to click on the link

[Pharo-project] Revisiting Issue 1718

2010-11-19 Thread Stephan Eggermont
I would be interested in improvements. This is just a straight translation of the java code. Yaroslavskiy's Dual-Pivot Quicksort seems to perform better for large collections: A straightforward defaultSort: i to: j self dualPivotQuicksort: i to: j split: 3 dualPivotQuicksort: left to:

[Pharo-project] Much better issues feed from Google

2010-11-23 Thread Stephan Eggermont
Would be to have it in a browser in the image. An early experiment with the current Moose daily build shows it can be done: http://www.squeaksource.com/GoogleIssuesFeed Stephan

Re: [Pharo-project] source.lukas-renggli.ch is down

2010-12-29 Thread Stephan Eggermont
Philippe wrote: On 29.12.2010 11:01, St?phane Ducasse wrote: We know. I will reask again for our web-dav server. You're actually working in a big bank, aren't you Stef? I can tell by the time it takes you to get a web-dav server ;-) No, in a bank they would have asked him why he needs his own

Re: [Pharo-project] Issue 3436 in pharo: #copyFrom: is broken (ph...@googlecode.com)

2011-01-08 Thread Stephan Eggermont
Nicolas wrote: Then group the selectors (first, first: etc..), explain that they are extensions, and don't need a copy prefix, because anyway most messages will do a copy. You are aware first doesn't copy, do you? The explanation should be that you always have to take a look at the implementation

[Pharo-project] Startup weekend success

2011-02-28 Thread Stephan Eggermont
awarded us the innovation price. Stephan Eggermont

Re: [Pharo-project] Pharo on Apple App Store

2011-03-04 Thread Stephan Eggermont
Hilaire Fernandes wrote: I read prediction Android may take it all. There are currently no signs of that. Stephen Elop (of Nokia) allegedly wrote In 2008, Apple’s market share in the $300+ price range was 25 percent; by 2010 it escalated to 61 percent. They are enjoying a tremendous growth

[Pharo-project] Fwd: Https Url in Pharo 1.2

2011-03-06 Thread Stephan Eggermont
Stef wrote: On Mar 6, 2011, at 8:39 AM, laurent laffont wrote: Is it planed / possible to have SqueakSSL plugin in official VM shipped with Pharo ? What is the license? You know the last time we got trapped into the game oh I did not decided yet so never again. What is the status? On

[Pharo-project] Meanwhile, at another vm

2011-04-12 Thread Stephan Eggermont
http://mail.openjdk.java.net/pipermail/mlvm-dev/2011-April/002802.html

Re: [Pharo-project] Meanwhile, at another vm

2011-04-13 Thread Stephan Eggermont
JSR 292 explicitly talks about become: (calls it hotswap) and is supposed to make it possible to run Smalltalk efficiently on a jvm. I don't know how complete the jsr 292 implementation is of mlvm. I got the link in a tweet. Roos builds modular automated test equipment. Stephan

Re: [Pharo-project] [ANN] new mailinglist for tracker mails

2011-04-18 Thread Stephan Eggermont
Marcus wrote: The mails from the google tracker now go to this list: http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker in turn, this means the traffic on the pharo-project list should be a bit more managable. Thank you. Stephan

[Pharo-project] Hudson setup published?

2011-04-19 Thread Stephan Eggermont
Is the Hudson setup used to generate the Pharo images published? Last friday there were some issues that were not reproducible with the standard test-runner. Stephan

Re: [Pharo-project] Networking problems on Pharo 1.2.1

2011-04-21 Thread Stephan Eggermont
That is no networking problem. That is just how a tcp server connections work. When you connect from a client to the server, the server has to initialize a new socket to communicate on. Just take a look at what waitForConnectionFor does. Stephan

[Pharo-project] SandstoneDb test failure on Pharo 12353 Seaside image

2011-05-30 Thread Stephan Eggermont
SDFileStoreTests testFindAllSubclasses is broken in the CI Pharo 12353 Seaside image of 2011-5-25. SandstoneDbTests RamonLeon.10 SandstoneDb RamonLeon.138 Stephan Eggermont

Re: [Pharo-project] [GS/SS Beta] serializing object graphs / ordering graph anchors

2011-06-03 Thread Stephan Eggermont
Hello Norbert, That sounds like a silly algorithm. There is no reason you should get a large stack size as long as you don't try to do this more than one level deep only: add object to the table repeat find first unwritten object in the table write its contents: simple objects direct

Re: [Pharo-project] Silly Tweet

2011-06-29 Thread Stephan Eggermont
releases, they should look for another place, not for build server. Since build server are there to build test bleeding-edge (under development) versions, but not ones which already released and years old. Ok, so you simply do not want the builds to be used by others. That's fine. Stephan

Re: [Pharo-project] Silly Tweet

2011-06-30 Thread Stephan Eggermont
Stef wrote in response to my: Ok, so you simply do not want the builds to be used by others. That's fine. why do you say that? Such a build server can have two purposes: - to directly help with the development of the software named in the build jobs; - it can provide a starting point for

Re: [Pharo-project] Interesting expression...

2011-09-21 Thread Stephan Eggermont
((para isKindOf: MultiNewParagraph) or: [para text string isByteString or: [para text string isWideString]]) If you want to be able to handle large texts with nice (LaTeX-like) line breaking we'll probably need some different String implementations. I don't know how

Re: [Pharo-project] Storing all source code in a relational database

2011-11-02 Thread Stephan Eggermont
... is a waste of time and computing resources. Relational databases are optimized for specific usage scenarios. CAD systems and source code management systems are the archetypical examples of systems that are a bad fit and will kill the performance of a relational database. Of course 30 years

[Pharo-project] Fwd: [FOSDEM 2012] Devroom accepted: Smalltalk, Sunday 2012-2-5, Brussels

2011-11-11 Thread Stephan Eggermont
november 2011 23:58:43 GMT+01:00 To: Stephan Eggermont step...@stack.nl Cc: devro...@fosdem.org Subject: [FOSDEM 2012] Devroom accepted: Smalltalk Reply-To: devro...@fosdem.org Hi Stephan We've got good news, as we have accepted and planned your request for a developer room at FOSDEM 2012

Re: [Pharo-project] Java team looking into Smalltalk and Seaside

2011-11-23 Thread Stephan Eggermont
Sean P. DeNigris wrote: Maybe someone with experience using Smalltalk on a team can answer this: http://stackoverflow.com/questions/8244502/version-control-for-smalltalk-seaside Nice question. I've added a mixture of what we do and should be doing... Stephan

Re: [Pharo-project] experience with large images?

2011-11-23 Thread Stephan Eggermont
Francois Stephany wrote: I'm wondering: how big is a dataset 500MB ? I've no idea how big it is. Alex, what is your use case (in practice!) for more than 500MB? We are doing data conversion with Moose. Raw data is 740 MB. No 64-bit means being forced to make decisions early, and therefore

Re: [Pharo-project] experience with large images?

2011-11-24 Thread Stephan Eggermont
Igor Stasenko wrote: I think you looking for solution in a wrong direction. Just ask yourself, how much of that data you need to keep in operative memory at single moment of time to efficiently compute results. All of it. And then of course the annotations and resulting output model. I know

Re: [Pharo-project] [Esug-list] fosdem smalltalk devroom

2011-11-28 Thread Stephan Eggermont
No, not yet. Do we need a separate one or can we use one of the existing ones? I'm following a.o. squeak-dev, pharo-dev, seaside Stephan On 28 nov 2011, at 12:37, Paolo Bonzini wrote: Hi all, is there a mailing list or website set up for discussing the program for the devroom? Thanks,

[Pharo-project] Call for Participation in the Smalltalk Devroom at FOSDEM 2012.

2011-12-07 Thread Stephan Eggermont
Call for Participation in the Smalltalk Devroom at FOSDEM 2012. A devroom for the Pharo, Squeak, GST, Etoilé, Seaside, Moose Smalltalk projects. Smalltalk environments offer a very high development productivity, unmatched by their successors. Come do some pair programming with us and

Re: [Pharo-project] [ANN] Magma 1.3

2011-12-11 Thread Stephan Eggermont
Hi Chris, Great! I'd love to have someone explain and demo Magma at the FOSDEM2011 devroom (Feb 5, Brussels). You already told me you'd not be available. Anyone else capable willing to do a presentation? Stephan

Re: [Pharo-project] Company/freelance working with Pharo/Seaside

2011-12-12 Thread Stephan Eggermont
Sven wrote: Having an active community where many people participate in making Pharo better all the time is the best reference. While that is a necessity, it is only relevant for a certain public (technically advanced, developer oriented, long term view). It is not necessarily something other

Re: [Pharo-project] glamour and pharo

2012-01-01 Thread Stephan Eggermont
There are a number of separate problems here, I think. Mixing them up makes the situation a bit complex. I'll try separating them here. At what abstraction level should the basic tools be build. From my point of view, Glamour provides the right level. It is very easy to build browsers and it is

[Pharo-project] FOSDEM devroom

2012-02-06 Thread Stephan Eggermont
the different dialects. I would have liked to have more time for discussions. A lunch break might be a good idea. And finally a remark for next years devroom manager: don't expect to see much from FOSDEM :) Stephan Eggermont

Re: [Pharo-project] TabbedPane Class/ Package / Workspace browsers

2012-02-17 Thread Stephan Eggermont
label inside the box (or a looking glass); - the toolbar items are context sensitive but don't grey out when not applicable; - the toolbar icons are not distinctive enough Stephan Eggermont

Re: [Pharo-project] TabbedPane Class/ Package / Workspace browsers

2012-02-17 Thread Stephan Eggermont
Fernando wrote: I would like to hear your opinion on the benefits of such interfaces, besides the fact that mainstream IDE's adopted it, it's not that i don't like Eclipse , is more that i'm aware that several difficulties have been found with these type of interfaces. On a large screen, I find

Re: [Pharo-project] Why do we use Pharo? a.k.a. rethinking Pharo marketing

2012-02-21 Thread Stephan Eggermont
; - the availability of frameworks such as MOOSE and Seaside and the good compatibility with Gemstone allows us to provide better solutions faster. Stephan Eggermont Sensus, systems that make sense

[Pharo-project] GSoC proposal: Naked Objects using Magritte

2012-03-09 Thread Stephan Eggermont
After a discussion with Esteban, Nick challenged me to submit a proposal. An alternative would be to start from Glamour instead of from Magritte 3. Proposal: Extend Magritte 3 to create Naked Objects style interfaces Level: Intermediate Possible mentor: Stephan Eggermont Possible second mentor

Re: [Pharo-project] Pharo Consortium Important Documents and Request for Feedback

2012-03-20 Thread Stephan Eggermont
A good document, Stef. The current focus of the documents is on developers. It might make sense to add something for the (corporate) users of Pharo-based software. Stephan

Re: [Pharo-project] International Workshop on Smalltalk Technologies 2011

2012-03-20 Thread Stephan Eggermont
Hello Alain, Are there links to the articles, instead of a paywall? Stephan

Re: [Pharo-project] GSoC proposal: Naked Objects using Magritte

2012-03-27 Thread Stephan Eggermont
Stephan, I can help as second Mentor if you still need one. ...Stan I haven't been able to reach Esteban yet. He is supposed to be moving this week. Thanks for the offer. Stephan

Re: [Pharo-project] [gsoc-mentors] One more project proposal for GSoC

2012-04-02 Thread Stephan Eggermont
On 2 apr 2012, at 19:41, Dennis Schetinin wrote: The original idea is to build a two-tier Human-Machine Interface (HMI) system (which can be used in a wide range of projects) with Pharo image as back-end (where a model lives) and Amber-based client as a front-end. But this thing seems to

Re: [Pharo-project] How can I do literate programming?

2012-04-21 Thread Stephan Eggermont
to declaratively describe your domain. Then generate LaTeX pictures from this for the paper trail. Stephan Eggermont

Re: [Pharo-project] Artefact - a PDF framework

2012-05-02 Thread Stephan Eggermont
Hi Olivier, I've taken a look at the state of Artefact. Don't you think it would be much less work to port Christian Haider's work to Pharo? The namespace extensions to ring should be helpful to make two-way changes from both the VW and Pharo side. Stephan Eggermont

Re: [Pharo-project] Artefact - a PDF framework

2012-05-04 Thread Stephan Eggermont
Why do we have so many ways to create pdfs, and why do most libraries/frameworks only provide a partial solution? At first it seems not to difficult to build something for what I need, so it makes sense to build it myself. But the pdf spec is large, and I don't use most of it. Building it

Re: [Pharo-project] dependency injection

2012-05-08 Thread Stephan Eggermont
Philippe wrote: On 05/05/2012 10:04 AM, Milan Mimica wrote: What are you feelings about dependency injection? Oh oh, you brought up the topic. We have about six different ways in Seaside how we look up implementation classes. Anything from writing them to a class variable to iterating over

[Pharo-project] Place to sleep Lille?

2012-05-21 Thread Stephan Eggermont
Hi, Hmm. I'm a bit late to make a hotel reservation. Most hotels seem to be booked out. Anyone know an alternative? I'm arriving by train on wednesday. Couch would do. Stephan Eggermont

Re: [Pharo-project] Place to sleep Lille?

2012-05-21 Thread Stephan Eggermont
Damien wrote: Try this one: Hotel ibis Lille Opéra 21 Rue Lepelletier, 59000 Lille, France +33 3 20 06 21 95 Thank you. I already did. No space. Stephan

Re: [Pharo-project] Place to sleep Lille

2012-05-21 Thread Stephan Eggermont
Hi Stef, Thanks. The Formule 1 still had a room (others didn't). What's the place to meet on wednesday evening for a beer talk? I'll arrive 21.00 or so. Stephan

[Pharo-project] Before-conference beer?

2012-05-22 Thread Stephan Eggermont
I'm arriving wednesday evening about 21.00 hr. Anyone up for beer talk? Stephan

Re: [Pharo-project] Before-conference beer

2012-05-22 Thread Stephan Eggermont
I've checked my train ticket. I'll arrive at train station Lille-Europe at 19.52. I assume it has an info-point or so? Stephan

Re: [Pharo-project] Before-conference beer

2012-05-22 Thread Stephan Eggermont
Marcus wrote: On May 22, 2012, at 12:59 PM, Camillo Bruni wrote: otherwise a good meeting point is in front of the old trainstation Lille Flandres (about 200m / 1 metro stop from Lille Europe) Yes, in front of the main entrance of Lille Flanders is a good meeting spot. Ok. 20.00 I'll be at

[Pharo-project] Visualizing Legacy at SPA conference

2012-07-11 Thread Stephan Eggermont
be in the works if we can run it somewhere. It was only after the mondrian exercise that participants could start playing with the data on their own. Participants indicated they associatied mondrian more with visualization than glamour. Stephan Eggermont Willem van den Ende

Re: [Pharo-project] Memory usage

2012-08-01 Thread Stephan Eggermont
Dave wrote: Please try the 64bitImage*64bitVM image from John's site here: ftp://ftp.smalltalkconsulting.com/experimental/64bit/ Loads and runs on my 10.7.3 MBA. If you can run that VM on your Mac, it should do exactly what you need. Try running that VM with one of your images. If it runs and

Re: [Pharo-project] Memory usage

2012-08-02 Thread Stephan Eggermont
Guile wrote: Yeap, but it I'd not call it an update :). It is more a complete refactor to make it more understandable to newbies like me. Anyway, I didn't migrate the code to write 64bit image, and I'm not planning to do it in the short term... If you want to take a look, the project is in

Re: [Pharo-project] New Text Completion suggestions

2012-08-23 Thread Stephan Eggermont
Doru wrote I think an option would only add to the confusion. Please replace the option with one decision. If some do not like it, they can shout and the designer can take the input into account. But, it's the designer that decides. +1 Stephan

Re: [Pharo-project] New Text Completion suggestions

2012-08-23 Thread Stephan Eggermont
Camillo wrote: So you're saying modifiable keyboard shortcuts are a bad design? Yes. That is to say, using them outside of developing a good set of key bindings (possibly for each language/keyboard). We need them to get to this consistent set. Options could be on the level of vi/wordstar/emacs

Re: [Pharo-project] Sending email with Pharo

2012-09-15 Thread Stephan Eggermont
Hi Hilaire, There was a post from Scott Sproule on using Amazon SES with zinc and stunnel. Sven, you remember? From the response it was not clear to me if he managed to get everything working, and the need for stunnel might not be there with the current SSL support. SES is about 10% of the cost

Re: [Pharo-project] nautilus speedup?

2012-09-19 Thread Stephan Eggermont
Camillo wrote: I did a quick nautilus improvement: https://code.google.com/p/pharo/issues/detail?id=6667 CAVEAT: One thing I did was not showing all methods when opening the browser on a class. For me this makes perfectly sense since I use the CMD-F + CMD-M shortcut for

[Pharo-project] Default max heap size on OS-X

2012-09-24 Thread Stephan Eggermont
Hi I noticed the default SqueakMaxHeapSize on CI for Mac is 536870912 bytes. Is there a specific reason for the default to be so low? I know there used to be problems with the windows vm. Stephan

Re: [Pharo-project] Native UI bundle for Mac

2012-09-24 Thread Stephan Eggermont
Hi Pavel iMac 27 11.1, 10.6.8 works fine. Resizing the pharo window gives a screen with garbage and then mostly removes the pharo window. XUL stays up, but no longer switches views. Stephan

Re: [Pharo-project] No GUI on MacOSX 10.5.8 using Cocoa VM

2012-09-26 Thread Stephan Eggermont
http://stackoverflow.com/questions/1496788/building-for-10-5-in-xcode-3-2-on-snow-leopard-error

Re: [Pharo-project] [Another sad day] a nice example of the mess with json in FileTree

2012-10-01 Thread Stephan Eggermont
Hannes wrote: Some people however do not mind to do mappings from one data format to another. That is right, and I prefer to keep my meditation separate from my programming. Stephan Eggermont

[Pharo-project] Status of SmallPOS

2012-10-01 Thread Stephan Eggermont
I noticed the SmallPOS on ss3 is under MIT license. AFAIK, it was GPLv3. When did this relicensing happen? Stephan

Re: [Pharo-project] Interconnection of Morphic and Spec (was: [ANN] Phobos)

2012-10-12 Thread Stephan Eggermont
Igor wrote: Anyways, UI stuff is tend to be complex no matter how nicely you wrap it.. because it is UI. I'd have to disagree there. Building UIs with Glamour is easy. I'd say Spec is simply at too low an abstraction level for most UI work. We might need a different abstraction for different

Re: [Pharo-project] Do you know any code that can be better understood with its test?

2012-10-14 Thread Stephan Eggermont
Stef wrote: bitShift: look at the tests ((1 bitShift: 100) bitShift: -100) = 1 For even better understanding, add ((1 bitShift: -100) bitShift: 100) = 0 Stephan

[Pharo-project] How to export multiple Pharo packages to VW

2012-10-15 Thread Stephan Eggermont
The VW5PackageExporter allows the exporting of a package to the VW xml based fileout format. I've adapted the code to be less Seaside-specific, and am now able to export one package (Parasol-Core). If I try to export another package (Parasol-Tests), which depends on the earlier one, it fails to

[Pharo-project] Squeaksource memory

2012-10-16 Thread Stephan Eggermont
I was added as developer to PackageInfo 2 weeks ago, but am no longer able to commit... Stephan

Re: [Pharo-project] Getting Started with Athens

2012-10-25 Thread Stephan Eggermont
Camillo wrote: curl http://pharo.gforge.inria.fr/ci/ciPharo20NBCog.sh | bash ./vm.sh Pharo.image config http://squeaksource.com/Athens ConfigurationOfAthens --install=1.4

Re: [Pharo-project] Getting Started with Athens

2012-10-25 Thread Stephan Eggermont
Camillo wrote: indeed just reproduced it. I guess I'll have to add a special OSX case. mv vm vm.app that should fix it when running from the UI. That fixes the start on drop-ability all right, but doesn't help with finding Cairo Stephan

Re: [Pharo-project] File sharing on the network

2012-10-29 Thread Stephan Eggermont
Hilaire wrote: Is there anyway to implement fileshareing with Dropbox or GoogleDrive on a Pharo client application? I can see some use cases for a globally persistent peer-to-peer based system. Sort of a distributed github. Centralized systems tend to bring all kinds of nasty spam and privacy

  1   2   >