[Pharo-users] Re: Detecting keystrokes in Spec2 input fields

2022-03-12 Thread Robert Briggs via Pharo-users
presenter rather than using the stylesheet method? Regards Robert From: Esteban Lorenzano Reply to: Any question about pharo is welcome Date: Saturday, 12 March 2022 at 13:28 To: Any question about pharo is welcome Cc: Robert Briggs Subject: [Pharo-users] Re: Detecting keystrokes in Spec2

[Pharo-users] Re: Detecting keystrokes in Spec2 input fields

2022-03-12 Thread Robert Briggs via Pharo-users
Hi Kasper Problem solved.  I’ve done some more experimenting and it seems that registerEvents needs to be sent to make  whenTextChangedDo: active.  Makes sense but haven’t seen it documented anywhere. Regards Robert From: Kasper Osterbye Reply to: Any question about pharo is

[Pharo-users] Detecting keystrokes in Spec2 input fields

2022-03-12 Thread Robert Briggs via Pharo-users
changes have been made to the displayed text to ensure that a use does not leave a form without saving any input made. Regards Robert

[Pharo-users] Re: The orange 'content modified' indicator

2022-03-03 Thread Robert Briggs via Pharo-users
something is “dirty”, and is anything planned for Spec2 in the future in this respect? Regards R From: Esteban Lorenzano Reply to: Any question about pharo is welcome Date: Thursday, 3 March 2022 at 15:16 To: Any question about pharo is welcome Cc: Robert Briggs Subject: [Pharo-users] Re: The

[Pharo-users] The orange 'content modified' indicator

2022-03-03 Thread Robert Briggs via Pharo-users
Hi Pharo browser’s show a little triangular orange triangle in the top right corner when code is edited by the user but not yet Accepted. Is there a mechanism for doing the same, e.g. in an editable SpTextPresenter? I’ve looked around related Spec2 Classes but unable to find a method t

[Pharo-users] Re: ByteString asDate

2022-03-02 Thread Robert Briggs via Pharo-users
sDate message, i really don't know. you need a kind of validator. sorry, if i'm not much help. On Wed, Mar 2, 2022 at 7:35 AM Robert Briggs via Pharo-users wrote: Thanks Bernardo That construct works as required, however I’m not sure what the semantic difference is to

[Pharo-users] Re: ByteString asDate

2022-03-02 Thread Robert Briggs via Pharo-users
asDate try to send the #on:do: message to a block. try this ^ [ (Date readFrom: self pattern: ‘dd/mm/’). true ] on: DateError do: [ false]. On Tue, Mar 1, 2022 at 11:52 AM Robert Briggs via Pharo-users wrote: I may be being stupid but the current Date Class does

[Pharo-users] ByteString asDate

2022-03-01 Thread Robert Briggs via Pharo-users
I may be being stupid but the current Date Class does not appear to protect itself against a ByteString that is not in valid date format, e.g. by raising an Error. e.g. the code  ‘ABC’ asDate opens the Debugger on #isLetter was sent to nil because it appears to expect more letters after $C b

[Pharo-users] Re: What am I doing wrong with Spec2 in Pharo 9?

2022-02-10 Thread Robert Briggs via Pharo-users
the table instance in the double click and pass that to the class side, or implement the openAttributeEditorOn: on the instance side to give access self on the instance side. Best, Kasper On 10 Feb 2022, at 12.27, Robert Briggs via Pharo-users wrote: I have a subclass of

[Pharo-users] Re: Ghost subclass

2022-01-10 Thread Robert Briggs via Pharo-users
anything left to do? Regards R From: Robert Briggs via Pharo-users Reply to: Any question about pharo is welcome Date: Monday, 10 January 2022 at 10:21 To: Any question about pharo is welcome Cc: Robert Briggs Subject: [Pharo-users] Re: Ghost subclass A thought occurred to me. I use a

[Pharo-users] Re: Ghost subclass

2022-01-10 Thread Robert Briggs via Pharo-users
should have a tear-down method to clean up such references. R From: Guillermo Polito Reply to: Any question about pharo is welcome Date: Monday, 10 January 2022 at 08:47 To: Any question about pharo is welcome Cc: Robert Briggs Subject: [Pharo-users] Re: Ghost subclass Hi Robert

[Pharo-users] Re: Ghost subclass

2022-01-10 Thread Robert Briggs via Pharo-users
packages to a fresh image.  It all seems to work as expected. Regards R From: Guillermo Polito Reply to: Any question about pharo is welcome Date: Monday, 10 January 2022 at 08:47 To: Any question about pharo is welcome Cc: Robert Briggs Subject: [Pharo-users] Re: Ghost subclass Hi

[Pharo-users] Ghost subclass

2022-01-08 Thread Robert Briggs via Pharo-users
Subclass Component and get two (different) subclasses with the same name. Any thoughts as to what is going on and if so how to resolve the problem? Many thanks in advance for any and all feedback. Kind regards Robert Briggs

[Pharo-users] Re: Pharo 9 arbitrarily changes temporary variable names

2021-12-28 Thread Robert Briggs via Pharo-users
Hi Thanks for your interest. Unfortunately I do not know how to check that. In any event, as you see from my earlier email, I have worked around the problem now, Regards R Sent from my iPad > On 28 Dec 2021, at 15:34, Steffen Märcker wrote: > > Hi Robert, > > have y

[Pharo-users] Pharo 9 arbitrarily changes temporary variable names

2021-12-27 Thread Robert Briggs via Pharo-users
. This has happened through my entire model, not just as described above.  What is going on.  Is it a bug, or is there a setting that needs to be changed? Many thanks for any feedback on this. Regards Robert Briggs

Re: [Pharo-users] Move image

2020-08-17 Thread robert
OK, "solved" then next step. When I have started a Image (from a VM) I can save that Image via "Pharo|Sace As" anywhere I want. Then I quit the image. Afterwards I switch back to the Launcher to "Launch Image From Filesystem". However I am greeted with the following error message "#selectedLa

[Pharo-users] Difference between VM and image

2020-08-17 Thread robert
Hi, I am trying to find out what the difference between an VM and an Image is when using Pharo. Can anybody give some hints (links to docs?) Thx Ciao robertj

Re: [Pharo-users] Move image

2020-08-17 Thread robert
this? Thx Ciao robertj Von: rob...@robkuz.com Gesendet: Sonntag, 16. August 2020 17:43 An: Pharo-users@lists.pharo.org Betreff: Move image Hi, when I create a new image using the launcher then the image will be created at the following location (C:\Users\robert\Documents\Pharo

[Pharo-users] GTK3 / PDF Viewer

2020-08-16 Thread robert
Hi, what is the best way to integrate a PDF Viewer with a Spec2 / GTK3 application on Windows? I couldn't find any mentioning of PDF viewer on the GTK3 site. Thx for your help Best Robert

[Pharo-users] Move image

2020-08-16 Thread robert
Hi, when I create a new image using the launcher then the image will be created at the following location (C:\Users\robert\Documents\Pharo\images\Pharo 8.0 - 64bit (stable)). Is there a way to define a different location when creating an image (or afterwards)? Best regards Robert

Re: [Pharo-users] wwwhisper

2016-12-14 Thread Robert Withers
I have no idea if that's true, I like to dream and I am just glad it is here. happy holidays. On 12/14/2016 6:46 PM, Robert Withers wrote: here's a good step I think it settled well. encoders are next. I haven't got any java left . Merry Christmas! Here's the profile. AS

Re: [Pharo-users] csv utf8 etc problem

2016-11-14 Thread Robert Kuszinger
Convention: #crlf; converter: UTF8TextConverter new. cont := mbfs contents. Error as follows. The same happened with the alternative code from Sven. This is a 64bit Windows 7. Should I do any more test for you? regards Robert > > > > > Array(Object)>>prim

Re: [Pharo-users] csv utf8 etc problem

2016-11-14 Thread Robert Kuszinger
:) thanks Robert 2016-11-14 10:05 GMT+01:00 Sven Van Caekenberghe : > Hi Robert, > > You should use more modern stuff ;-) > > This works for me (Pharo 4, macOS), using your file: > > ((FileLocator desktop / 'test1utf8_cut2.csv') readStreamDo: [ :in | >

[Pharo-users] csv utf8 etc problem

2016-11-14 Thread Robert Kuszinger
t;Convert to WideString" self becomeForward: (WideString from: self). ^self at: index put: aCharacter. ... Image is moose_suite_6_0 on windows. What should I do? What is frightening that I linked file and SOMETIMES it raises the error above and sometimes not... ??? (zip file with sample csv...) https://drive.google.com/file/d/0B0JASZM9_9QqX19JZElwMVVXWjA/view?usp=sharing thanks Robert

Re: [Pharo-users] Roassal 2 disable browser and vis. animations

2016-08-27 Thread Robert Kuszinger
tions. However, your comment on general Cairo/Typeset issues is more interesting. I'll take care before offering end-user solutions using these frameworks. Best regards Robert 2016-08-27 12:36 GMT+02:00 Peter Uhnak : > On Sat, Aug 27, 2016 at 12:04:00PM +0200, Robert Kuszinger wrote: &

[Pharo-users] Roassal 2 disable browser and vis. animations

2016-08-27 Thread Robert Kuszinger
ple) I wonder if it would make the windows run more stable. On Linux it is OK but also painfully slow (ok, old machines). I prefer animationless repaint of the visualization canvas and window transitions. thanks Robert

Re: [Pharo-users] [ANN] SpecGenerator: easy CRUD applications with Spec

2016-04-12 Thread Robert J Rothwell
On Apr 12, 2016, at 4:35 PM, Stephan Eggermont wrote: > > Yeah, this is just the first iteration. > The field labels get used as ghost text now, > conserving space. That is an easy change > in the code generation. Hi Stephan, With the availability of Spec, this latest example, and your previous

Re: [Pharo-users] About Box

2016-04-10 Thread Robert J Rothwell
Also, this default behavior can be reproduced with: (LongMessageDialogWindow new entryText: 'Hello') open (well, that doesn't set the title to "About"...) I just can't figure out how to set the text for non-"long message" dialogs! Take care, Rob > > >> On Apr 10, 2016, at 6:44 PM, B

[Pharo-users] MessageDialogWindow(s)

2016-04-10 Thread Robert J Rothwell
Hello, In Pharo 5.0 #50680 MessageDialogWindow new open displays a message box with no text. Should (MessageDialogWindow new text: 'Hello') open work? I get a stack trace on CompositionScanner if I try to set the text. Also, is there a way to display the dialog modally (re

Re: [Pharo-users] About Box

2016-04-10 Thread Robert J Rothwell
Hi Bruce, This is my first week in a LONG time too, so good luck! If you open a Finder (Tools->Finder), and search for "about" (selectors), you will find a bunch of things that respond to "aboutText", like "SystemWindow," and "ComposableModel." The little drop-down arrow in the upper right of

[Pharo-users] Solution: ODBC - could not coerce arguments

2016-04-10 Thread Robert Kuszinger
ute:* and maybe its other messages as well. Best regards Robert

[Pharo-users] ODBC question - could not coerce arguments

2016-04-10 Thread Robert Kuszinger
to CP1250 (which has all the characters I need, actually data comes from a CP1250 txt file and converts well into pharo system) but it also results in a WideString object.. Example: (CP1250TextConverter new convertFromSystemString: 'űáőí')--> shows WideString in debugger. I think CP1250 should result in a ByteString... Is this the problem (could not coerce arguments). thanks Robert

Re: [Pharo-users] How to determine if a file is hidden

2016-04-09 Thread Robert J Rothwell
nvisibility flag (v): > > GetFileInfo -a v /Applications > # should echo 0 (invisibility flag not set) > > GetFileInfo -a v /bin > # should echo 1 > > > On 9 April 2016 at 21:12, Robert J Rothwell <mailto:r.j.rothw...@gmail.com>> wrote: > Hello, > &

[Pharo-users] How to determine if a file is hidden

2016-04-09 Thread Robert J Rothwell
Hello, Is there a way to determine if a file is hidden? I couldn't find that in "Deep into Pharo". For example, I can get my desktop files with: desktopFiles := FileLocator desktop children. And now I would like to filter that collection to the non-hiddent files with something like: desktop

[Pharo-users] SMTPClient further - kind of answer

2016-04-03 Thread Robert Kuszinger
Hello, A few days ago I've posted an SMTP related question about timeouts. (SMTPClient sending). I was able the repeat the situation on Linux as well with Postfix SMTP server on the other side (The original question was Windows / Exchange Server) Now smtp works and there are two consequences, at

[Pharo-users] IIS and Pharo web service solutions

2016-04-01 Thread Robert Kuszinger
p from many of you during the last two months :) Robert

[Pharo-users] SMTPCLient vs Exchange smtp - always timeout

2016-04-01 Thread Robert Kuszinger
r sending the data Is there any idea what else to check? Thanks: Robert Playground code (yes, port 26) *SMTPClient* deliverMailFrom: 'i...@sender.hu' to: #(' laszlo.gom...@recipient.hu') text: ' To: From: Subject: this is

Re: [Pharo-users] Spec ListModel synchronization

2016-03-31 Thread Robert J Rothwell
Thanks Johan, for your reply. That's great that there is a path forward with Spec; I think I'll be able to figure it out! I'll have to dig deeper into updateList, because right now the only thing it seems to do for me is clear any list selections, so I'm not sure if there is supposed to be a r

Re: [Pharo-users] Spec ListModel synchronization

2016-03-31 Thread Robert J Rothwell
Thanks Stephan, this is a very nice example of lots of Spec usage that I'm sure I can learn a lot from! As far as refreshing the list view, you did the same thing that I found to work by using the ListModel>>items: message, which in your case was very natural because you are creating a new, fil

[Pharo-users] minimal image load config question

2016-02-28 Thread Robert Kuszinger
Hello! I'm trying to load my app (config) into the minimal image from the command line. pharo min.image config http://smalltalkhub.com/mc/RobertKuszinger/GcUploader/main ConfigurationOfGiscomKkt --install=stable --username= --password= After a few seconds of working it stops like this (longer ve

Re: [Pharo-users] How to generate "Content-Type: application/octet-stream" with Zinc client

2016-02-10 Thread Robert Kuszinger
OK. I'm an idiot. This is server code, so, another business.... Robert Kuszinger ezt írta (időpont: 2016. febr. 10., Sze, 14:15): > Hello! > > Here is a code snippet: > > > At the trivial pülace you can set whatever mime type yout think will work > for you. >

Re: [Pharo-users] How to generate "Content-Type: application/octet-stream" with Zinc client

2016-02-10 Thread Robert Kuszinger
Hello! Here is a code snippet: At the trivial pülace you can set whatever mime type yout think will work for you. I hope this helps. Robert -- sendFile |contents stream | stream := FileStream readOnlyFileNamed: self file. stream

Re: [Pharo-users] Pharo.ini access

2016-02-08 Thread Robert Kuszinger
Actually, I wanted to be lazier... But all right, I create my onw ini :) Thanks! Hernán Morales Durand ezt írta (időpont: 2016. febr. 8., H, 15:57): > Hi Robert, > > You have a nice INI parser in > http://www.smalltalkhub.com/#!/~TorstenBergmann/INIFile > Cheers, > > He

[Pharo-users] Pharo.ini access

2016-02-08 Thread Robert Kuszinger
o, is Pharo.ini key values are in the image in a class or somewhere? I'd like to add: gcDowloadDir = dirname gcODBCsource = DSN and so on :) thanks Robert

Re: [Pharo-users] Windows headless and service

2016-02-07 Thread Robert Kuszinger
necessary) That's all by far. This seems to be a 100% solution to run Pharo WWW server on Windows as a service. Thanks for the many ideas and support. Later on I may inform you on the results of real life situations (load, stability, etc). Best regards Robert Esteban Lorenzano ezt írta

Re: [Pharo-users] Windows headless and service

2016-02-01 Thread Robert Kuszinger
yer to the system. And this small app also uses ODBC to connect SQL server on the same Win machine. But the key issue is that I cannot add any other component but maybe Smalltalk app. Smalltalk is my choice and preference. And actually, the app is done. Anyway, thanks for the idea :) Best regards Robe

Re: [Pharo-users] Windows headless and service

2016-02-01 Thread Robert Kuszinger
Esteban, thanks, I'll try and keep informed... regards Robert 2016-02-01 11:14 GMT+01:00 Esteban Lorenzano : > Hi Robert, > > First, the option to execute pharo headless is “—headless” (two “-“, not > just one). Maybe the help is bad :) > But that will not solve your p

Re: [Pharo-users] Windows headless and service

2016-02-01 Thread Robert Kuszinger
ge. thanks for any recommendations. Robert Kuszinger ezt írta (időpont: 2016. jan. 31., V, 8:27): > Torsten, thanks. > > Ok, I'll test it. Idon't mind I need SRVANY or other solution on win to > start it. It is not necessary to provide a well formed service. > I'm stop

Re: [Pharo-users] Windows headless and service

2016-01-31 Thread Robert Kuszinger
aunch it at machine start. I'll share my results here. best regards Robert Torsten Bergmann ezt írta (időpont: 2016. jan. 31., V, 1:31): > Running as Windows Service was possible back in Squeak VM days where > Andreas Raab implemented registration into SCM (Service Control Manage

[Pharo-users] Windows headless and service

2016-01-29 Thread Robert Kuszinger
lable books but they mostly talk about mac osx/Linux which is welcome, anyway... Does anyone have experience with pharo (service) on windows? My version is (from readme): *Pharo 4.0 This distribution was built December 07, 2015.* thanks Robert

Re: [Pharo-users] what is Pharo's mission statement? (was Re: Transcendental #new (was Re: why Pillar))

2015-12-29 Thread Robert Withers
, rather than PassByProxy so that code can be locally constituted. I would then work on building a distributed registry and package manager and take a close look at distributed logging. best, robert On 12/29/2015 05:55 AM, Ben Coman wrote: On Tue, Dec 29, 2015 at 6:05 AM, Robert Withers wrote

Re: [Pharo-users] what is Pharo's mission statement? (was Re: Transcendental #new (was Re: why Pillar))

2015-12-28 Thread Robert Withers
On 12/28/2015 01:42 PM, Marcus Denker wrote: On 28 Dec 2015, at 19:33, Robert Withers wrote: On 12/28/2015 01:18 PM, Sven Van Caekenberghe wrote: On 28 Dec 2015, at 19:11, Robert Withers wrote: I got you, stephano. I do not wish to be banned. Leaving aside established spiritual

Re: [Pharo-users] what is Pharo's mission statement? (was Re: Transcendental #new (was Re: why Pillar))

2015-12-28 Thread Robert Withers
On 12/28/2015 01:18 PM, Sven Van Caekenberghe wrote: On 28 Dec 2015, at 19:11, Robert Withers wrote: I got you, stephano. I do not wish to be banned. Leaving aside established spiritual traditions, but picking out the pattern for exploration, what would you say the meta-meme of Pharo is

Re: [Pharo-users] Transcendental #new (was Re: why Pillar)

2015-12-28 Thread Robert Withers
#x27;m sure others in the community are in the same boat, so really you are narrowing your opportunity for useful responses from the community. i'd like to second that. robert, the problem is that we are unfamiliar with the terminology you are using. comparing pharo to religious concepts can be

[Pharo-users] what is Pharo's mission statement? (was Re: Transcendental #new (was Re: why Pillar))

2015-12-28 Thread Robert Withers
and is not a meaningless exercise for the community, from a leadership development perspective.. best, robert On 12/28/2015 12:01 PM, stepharo wrote: To conclude this thread, Robert I suggest that you stay on a technical discussion. Do not force us to ban you (we will do it if you continue

Re: [Pharo-users] Smallworlds - Interactive Fiction Framework

2015-12-28 Thread Robert Withers
I don't believe so. On 12/28/2015 09:02 AM, ericvm wrote: 2015-12-28 11:35 GMT-02:00 Robert Withers [via Smalltalk] <[hidden email] >: Have you seen Quoth? It's sweet. http://netjam.org/quoth/ https://vimeo.com/50530082 Yes, I've seen it before, it i

Re: [Pharo-users] Smallworlds - Interactive Fiction Framework

2015-12-28 Thread Robert Withers
Have you seen Quoth? It's sweet. http://netjam.org/quoth/ https://vimeo.com/50530082 regards, Robert On 12/28/2015 08:31 AM, Eric Velten de Melo wrote: 2015-12-28 11:15 GMT-02:00 Robert Withers <mailto:robert.w.with...@gmail.com>>: Cool, I am stuck in the cloak room and

[Pharo-users] Robotic Avatars

2015-12-28 Thread Robert Withers
On 12/28/2015 08:11 AM, Robert Withers wrote: On 12/28/2015 08:01 AM, Johan Fabry wrote: Robert, Consider it from my point of view: I am not forcing you to think about design decisions of the JIT of the domain-specific language for robotics that am I building. Good Lord in Heaven

Re: [Pharo-users] Smallworlds - Interactive Fiction Framework

2015-12-28 Thread Robert Withers
Cool, I am stuck in the cloak room and can't find the bar. Can you create objects inside the adventure? On 12/28/2015 08:07 AM, Eric Velten de Melo wrote: (AdventureShell world: (CDGameWorld new)) openWithSpec. -- Robert . .. ...^,^

Re: [Pharo-users] Transcendental #new (was Re: why Pillar)

2015-12-28 Thread Robert Withers
On 12/28/2015 08:01 AM, Johan Fabry wrote: Robert, Consider it from my point of view: I am not forcing you to think about design decisions of the JIT of the domain-specific language for robotics that am I building. Good Lord in Heaven, please tell me more! I always love to learn more and

Re: [Pharo-users] Smallworlds - Interactive Fiction Framework

2015-12-28 Thread Robert Withers
This looks interesting. How can it be used and made interactive? I would like to launch the CDGameWorld that did load with this configuration as an interactive session, to see how this package is used. cheers, Robert On 12/27/2015 10:14 PM, Eric Velten de Melo wrote: I think I fixed the

Re: [Pharo-users] Transcendental #new (was Re: why Pillar)

2015-12-28 Thread Robert Withers
Ben, I appreciate your reply. We were both involved in establishing boundaries: yours in the negative (don't post such here) and mine in the positive (I'll feel free to post on such matters). I'll follow your lead and not respond anymore to this thread. Best, Robert On 12/2

Re: [Pharo-users] Transcendental #new (was Re: why Pillar)

2015-12-28 Thread Robert Withers
On 12/28/2015 04:58 AM, Nicolai Hess wrote: 2015-12-28 3:15 GMT+01:00 Robert Withers <mailto:robert.w.with...@gmail.com>>: Here's the thing that gets my goat: I had already acknowledged it was enough for the list and was signing off further comment when Ben dec

Re: [Pharo-users] Transcendental #new (was Re: why Pillar)

2015-12-27 Thread Robert Withers
. I was unwilling to let that go by as an implicit restriction on the substance of my posting, into the future. ...and the thread is twice as long. Not my doing. Some things must be challenged. Do you know what I mean, then? Just say no to intellectual coercion. robert On 12/27/2015 11:33 AM

[Pharo-users] Meta-models (Re: Transcendental #new (was Re: why Pillar))

2015-12-27 Thread Robert Withers
On 12/27/2015 01:50 PM, Johan Fabry wrote: On Dec 27, 2015, at 15:18, Robert Withers <mailto:robert.w.with...@gmail.com>> wrote: Alright, I ask you all. Which meta-model is acceptable for practical work in my stack? I need a meta-model to describe it, or rahter anyone should be abl

Re: [Pharo-users] Transcendental #new (was Re: why Pillar)

2015-12-27 Thread Robert Withers
Thank you Offray, for a way out of this dreadful conversation of opposition to free-thinking. Ahh, irony. You make an exceelent observation of some limitations you say you have also run into and your thoughtful solution to this. best, -- Robert . .. ...^,^ On 12/27/2015 01:54 PM

Re: [Pharo-users] Transcendental #new (was Re: why Pillar)

2015-12-27 Thread Robert Withers
sciences of consciousness. respectfully, robert On 12/27/2015 11:33 AM, Ben Coman wrote: Hi Robert, I'm glad your found someone on the list to connect to on a spiritual level, but could you please keep your public posts to technical matters, (plus keep signatures short and trim old signatures

Re: [Pharo-users] Transcendental #new (was Re: why Pillar)

2015-12-27 Thread Robert Withers
lication to the best damn little programming environment every other language fails to emulate. Once again, my apologies this upsets you. Sincerely, Robert On 12/27/2015 11:33 AM, Ben Coman wrote: Hi Robert, I'm glad your found someone on the list to connect to on a spiritual level,

Re: [Pharo-users] Transcendental #new (was Re: why Pillar)

2015-12-27 Thread Robert Withers
You know Ben, another option is to shun and ostracize me. Those be well oiled options. Truth. On 12/27/2015 12:01 PM, Robert Withers wrote: Sure Ben, I could. My apologies if the paradigm of spirituality bothers you but it is a perfectly legitimate source of analogy AND interactive fiction

Re: [Pharo-users] Transcendental #new (was Re: why Pillar)

2015-12-27 Thread Robert Withers
dead. I've never thought about the arupa of Pharo, yet I was thinking it was the meta layers, where everything has the same amorphic form. Perhaps the analogy starts to fall apart. My apologies...I'll try for #random. :) nameste, robert -- There are five kinds of colorin

Re: [Pharo-users] Transcendental #new (was Re: why Pillar)

2015-12-27 Thread Robert Withers
that have no form, but by name only (#allInstancesDo:). cheers, robert --- And yet everything that is created does not rest in Me. Behold My mystic opulence! Although I am the maintainer of all living entities and although I am everywhere, I am not a part of this cosmic manifestation, for My Self

[Pharo-users] Transcendental #new (was Re: why Pillar)

2015-12-26 Thread Robert Withers
> On Dec 26, 2015, at 2:26 AM, Saša Janiška wrote: > > On Pet, 2015-12-25 at 15:59 -0500, Robert Withers wrote: > > Hello Robert, Good day Saša, > >> Welcome to Pharo! I view use of Pharo (squeak) as a knowledge >> sacrifice eliminating bondage to Karma. This

Re: [Pharo-users] why Pillar

2015-12-25 Thread Robert Withers
Sorry, that was meant to be private. --- robert > On Dec 25, 2015, at 3:59 PM, Robert Withers > wrote: > > >> On Dec 25, 2015, at 1:58 PM, Saša Janiška wrote: >> -- >> As a blazing fire turns firewood to ashes, O Arjuna, so does the >> fire of know

Re: [Pharo-users] why Pillar

2015-12-25 Thread Robert Withers
ed? Hint: it is close to Pharo's arupa-brahma-loka, the highest planes. ;) Hare hare and Merry Christmas, Robert > > > > >

Re: [Pharo-users] [ANN] Pharo Consortium Sponsored Development Effort

2015-12-19 Thread Robert Withers
ither here or on the road. Thanks! robert On 12/19/2015 08:23 AM, Mariano Martinez Peck wrote: Dear all, I am tremendously happy to announce you that Pharo Consortium will sponsor yet another development effort. In this particular case, it's my honor to carry on such an effort and I will be

Re: [Pharo-users] [squeak-dev] Name change: Mushroom ( was Re: evolutions of squeakelib & crypto)

2015-12-18 Thread Robert Withers
I just tried, looking for plugins you know. I get so impatient to get all this to work. It takes lots of effrort. Thanks for the name check, let's go for it! robert On 12/18/2015 11:45 PM, Offray Vladimir Luna Cárdenas wrote: At list it doesn't have a lot of hi

Re: [Pharo-users] [squeak-dev] Name change: Mushroom ( was Re: evolutions of squeakelib & crypto)

2015-12-18 Thread Robert Withers
n't seem to recall the particular moment. Oh@* Community: *looking sideways at each other* "What the hell is a mushoom?" Thank You! so much. On 12/18/2015 10:27 PM, Robert Withers wrote: Ah ha!!! Thank you...how about CryptOCeps? ;) On 12/18/2015 10:22 PM, Offray Vladimir Luna Cárde

Re: [Pharo-users] [squeak-dev] Name change: Mushroom ( was Re: evolutions of squeakelib & crypto)

2015-12-18 Thread Robert Withers
ffsb (2nd link) It didn't happen overnight but was a fluid organic process. So may be "Mushroom crypto" or "Risotto crypto" could be important descriptors in the main web presence sites of your projects (BTW, I can't find the repos and GitHub answers with 404). C

Re: [Pharo-users] PharoJVM

2015-12-13 Thread Robert Withers
That's was it: sanguinity. On 12/14/2015 12:18 AM, Robert Withers wrote: I've always thought that squeak should have a set of measured, communicated emotional layer, but inverted. Measure a positive number that is better when it grows, instead of bad. The system could react to th

Re: [Pharo-users] PharoJVM

2015-12-13 Thread Robert Withers
1/2 layer stack. The half is nexxt to the eighth market/cloud layer, below the 9th meta layer. It is the control layer. Every flow network needs a control layer in control theory. Pi 2 or zero with some boards would be something. regards, robert On 12/13/2015 11:48 PM, EuanM wrote: As a pers

Re: [Pharo-users] PharoJVM

2015-12-13 Thread Robert Withers
of networked actors...real time. Go for the multi-objective genetic approaches, really and truly. That's the best AI. regards, robert On 12/13/2015 08:47 AM, horrido wrote: Why is this "nonsense"? Are you saying it's not important to make Pharo applicable to more problem d

Re: [Pharo-users] [squeak-dev] Name change: Mushroom ( was Re: evolutions of squeakelib & crypto)

2015-12-08 Thread Robert Withers
Mushroom has a reasonable descriptive power when considered in light of mobile code budding out all over the grid. It's a cloud solution. Robert On 12/08/2015 05:10 PM, p...@highoctane.be wrote: Whoever works with Hadoop tech would find names like: Hadoop Spark Cassandra HBase Accumulo Hive Pig

Re: [Pharo-users] [squeak-dev] Name change: Mushroom ( was Re: evolutions of squeakelib & crypto)

2015-12-08 Thread Robert Withers
longer observation times can be maintained" enter the quadcopter. So I thought to addd the third possibility, which is partial descriptive knowledge, communal connectivity, expert availability/receptivity, and descriptive inquiry. Best, Robert On 12/08/2015 04:20 PM, Robert Withe

Re: [Pharo-users] [squeak-dev] Name change: Mushroom ( was Re: evolutions of squeakelib & crypto)

2015-12-08 Thread Robert Withers
On 12/08/2015 04:20 PM, Robert Withers wrote: I would need to disagree with you as inquiry is possible by description, rather than by name, through conversation with those who don't have to inquire, due to their knowledge [see Meno's Paradox...]. So, a third possibility exis

Re: [Pharo-users] [squeak-dev] Name change: Mushroom ( was Re: evolutions of squeakelib & crypto)

2015-12-08 Thread Robert Withers
5, at 07:38, Ben Coman wrote: I like it, but it seems you missed my point :) mushroom --> 117,000,000 is two orders of magnitude more hidden. Anyway, maybe I overplay its significance. cheers -ben On Mon, Dec 7, 2015 at 11:11 PM, Robert Withers wrote: I renamed the project to Mushroom and I also

Re: [Pharo-users] How can we verify that a daemon is listening on a TCP socket

2015-12-05 Thread Robert Withers
Wouldn't it be wonderful to have netstat, ifconfig, route, traceroute, top and other system/networking utilities in Squeak/Pharo. I can see a use for manipulating the routing tables from inside our wonderful world. bonne soirée, Robert On 12/05/2015 11:54 AM, stepharo wrote: Et

Re: [Pharo-users] How can we verify that a daemon is listening on a TCP socket

2015-12-04 Thread Robert Withers
> netstat -a | grep LISTEN | grep that should get you there. Robert On 12/04/2015 10:07 AM, stepharo wrote: Hi guys I would like to know if a daemon (mongo) is listening on a given TCP socket? Stef

Re: [Pharo-users] evolutions of squeakelib & crypto (Reed Solomon)

2015-12-04 Thread Robert Withers
category and consist of a Decoder, Materializer and a Materialization. Robert On 12/04/2015 09:35 AM, Esteban Lorenzano wrote: which squeak version? of what? On 04 Dec 2015, at 12:15, Robert Withers <mailto:robert.w.with...@gmail.com>> wrote: I just realized that the squeak ver

Re: [Pharo-users] evolutions of squeakelib & crypto (Reed Solomon)

2015-12-03 Thread Robert Withers
On 12/03/2015 06:30 AM, Stephan Eggermont wrote: On 03-12-15 09:34, Robert Withers wrote: Hi Stef, Yes, my bailing on a more standard squeak project distribution solution is due to a few factors... 1 - environment confusion between Pharo and Squeak. I choose squeak due it is the native

Re: [Pharo-users] evolutions of squeakelib & crypto (Reed Solomon)

2015-12-03 Thread Robert Withers
do like dropbox cloud storage lots. What is the recommended squeak environmental solution? Is it a SqueakSource project? Which MCZ storage solution would be best? Thank you. --- robert > On Dec 3, 2015, at 3:10 AM, stepharo wrote: > > Hi robert > > thanks but I do not get

Re: [Pharo-users] Very sad day for the world

2015-11-15 Thread Robert Shiplett
pour la transition et NON aux terroristes ! On 14 November 2015 at 15:01, p...@highoctane.be wrote: > These guys are clinging to a model of the past instead of making the > necessary changes to deal with the modernity transition challenge. > > China transitioned, India transitioned, South Asia t

Re: [Pharo-users] Very sad day for the world

2015-11-15 Thread Robert Withers
lence and the Ummah is required to step up, it all rests on the Mu'minoon picking up weapons against these Quranic terrorists and actively sending these Munafiqoon to Jahannam. Peace to Paris, Robert On 11/15/2015 04:23 AM, abdelghani ALIDRA wrote: Indeed, This is a very sad day.

Re: [Pharo-users] fast subclassing/class creation in tests

2015-10-24 Thread Robert Withers
Extend Pharo byte codes to support Newspeak namespaces. #justsayin --- robert > On Oct 24, 2015, at 6:22 PM, Nicolai Hess wrote: > > You can wrap the subclassing and the \removeFromSystem with > SystemAnnouncer uniqueInstance suspendAllWhile: [ ] > > 2015-10-24 20:43 GMT

Re: [Pharo-users] VM crash on Ubuntu 14.04

2015-10-24 Thread Robert Withers
Posting to Pharos-dev or Vm Dev may find you more assistance. My suggestions would be: a) upgrade to Pharo 5 and b) run in gdb so we all can be better informed about the issue you are seeing. Is PhaROS doing low level calls? --- robert > On Oct 24, 2015, at 3:32 PM, Johan Fabry wr

Re: [Pharo-users] distributed peer2peer sharing app in Pharo

2015-10-15 Thread Robert Withers
On 10/15/2015 09:32 PM, Evan Donahue wrote: I remember looking at the project you mention when I was first researching p2p in Pharo. I thought the project description sounded very interesting (Trantor was actually begun with a similar use-case in mind), but alas I was unable to find any informa

Re: [Pharo-users] Pharo and SQLite

2015-10-15 Thread Robert Withers
Thanks to both of you for the links. I appreciate you. Robert On 10/15/2015 02:22 PM, Esteban A. Maringolo wrote: I haven't used SQLite in Pharo, but I used it in Android. It is a pretty complete database solution, self contained in a single file (and a shared library ;-)). I already p

Re: [Pharo-users] Pharo and SQLite

2015-10-15 Thread Robert Withers
Hi Jimmie, Is this SQlite adaptor you wrote published publicly? I'd definitely like to evaluate this technology for my stack. Thank you, Robet On 10/15/2015 01:58 PM, Jimmie Houchin wrote: Hello, I am working on a project for my wife. I initially thought I would keep all my data inside Phar

Re: [Pharo-users] [ANN] Windows support for GitFileTree

2015-10-13 Thread Robert Withers
I just took a quick look. It depends on both LayeredProtocol and SSL, but SSL won't load as HierarchicalUrl is missing. thanks, Robert On 10/13/2015 04:02 AM, Thierry Goubier wrote: 2015-10-13 9:46 GMT+02:00 Robert Withers mailto:robert.w.with...@gmail.com>>: Would the SSH

Re: [Pharo-users] [ANN] Windows support for GitFileTree

2015-10-13 Thread Robert Withers
Would the SSH package in Cryptography help you? thanks, Robert On 10/13/2015 03:36 AM, Thierry Goubier wrote: 2015-10-13 9:29 GMT+02:00 Peter Uhnák mailto:i.uh...@gmail.com>>: On Tue, Oct 13, 2015 at 8:11 AM, Thierry Goubier mailto:thierry.goub...@gmail.com>> wrote:

Re: [Pharo-users] [Pharo-dev] binary serialization

2015-10-13 Thread Robert Withers
Sven and Torsten, that's a binary serialization library! It will take time to learn it and how to use mappers. What is the format; is it language neutral? thanks, Robert On 10/13/2015 01:21 AM, Sven Van Caekenberghe wrote: Yes, it is called FUEL and it is a standard part of the image

  1   2   >