Re: [Pharo-users] gettings real senders

2015-08-11 Thread Peter Uhnák
You can't search invocations of a particular classmethod. So if I understand there's no direct way to do it, and I need to traverse the AST and do a static analysis. Unfortunately adding logging will work only if I know that all the senders will actually send the message, which is definitely

Re: [Pharo-users] XMLRPC?

2015-08-11 Thread Ben Coman
I'm not a user of XMLRPC, but anyone consider it worth saving the project pages for... https://code.google.com/p/pharo-xmlrpc/ to github ? cheers -ben On Mon, Jul 13, 2015 at 5:49 PM, Luc Fabresse luc.fabre...@gmail.com wrote: Hi Arturo, for our PhaROS project, we use XMLRPC. When I had

Re: [Pharo-users] Spreadsheet editor

2015-08-11 Thread S Krish
Should try an ActiveX / Open Office embedded in Pharo if the whole capability of spreadsheets is required from Pharo. On Tue, Aug 11, 2015 at 10:15 PM, Peter Uhnák i.uh...@gmail.com wrote: Hi, since there has been talk about Tabular/DOCX, is there any project aimed at actually editing

[Pharo-users] Spreadsheet editor

2015-08-11 Thread Peter Uhnák
Hi, since there has been talk about Tabular/DOCX, is there any project aimed at actually editing tables/spreadsheets inside Pharo? There's Spreadsheet by Torsten, but that seems to be an abandoned proof-of-concept. Peter

Re: [Pharo-users] Help regarding Scroll Pane usage

2015-08-11 Thread Jigyasa Grover
*Steps to reproduce:* 1. Open a fresh image 2. Load Configuration : World Tools Configuration Browser sQuick_new 3. Do It `IndexInterface open` in playground 4. Search for a word, say **of** , type in input box and click on *SEARCH* button. The following screen appears:

Re: [Pharo-users] Spreadsheet editor

2015-08-11 Thread H. Hirzel
On 8/11/15, Peter Uhnák i.uh...@gmail.com wrote: Hi, since there has been talk about Tabular/DOCX, http://ss3.gemtalksystems.com/ss/Tabular.html is there any project aimed at actually editing tables/spreadsheets inside Pharo? There's Spreadsheet by Torsten, but that seems to be an

[Pharo-users] UUIDs

2015-08-11 Thread Sean P. DeNigris
Searching the archives, I found an interesting comment [1]: I think the UUIDGenerator in the image produces UUIDs which are good enough for MC. - Levente Uzonyi I am pretty well confused by UUIDs in general (they seem magical) and Pharo's implementation. The use case I have in mind is a file

Re: [Pharo-users] UUIDs

2015-08-11 Thread Peter Uhnák
The UUIDGenerator has unnecessarily heavy-handed implementation, however it does adhere to the RFC specs as far as I could tell. Which also means that it's definitely usable across images and platforms. If anything, the weak point would be the random number generator, not UUID. And at least on

Re: [Pharo-users] UUIDs

2015-08-11 Thread Ben Coman
On Wed, Aug 12, 2015 at 2:09 AM, Sean P. DeNigris s...@clipperadams.com wrote: Searching the archives, I found an interesting comment [1]: I think the UUIDGenerator in the image produces UUIDs which are good enough for MC. - Levente Uzonyi I am pretty well confused by UUIDs in general

Re: [Pharo-users] UUIDs

2015-08-11 Thread Peter Uhnák
btw2, UUID actually uses MD5 and SHA, but on a smaller input than full file contents. Pharo implements version 4, which uses purely random bits; not MD5/SHA/MAC. btw3, I love turtles all the way down, but given that crypto algorithms are CPU bound and Pharo will be single-CPU for some