[Pharo-users] Sorry - Please Stay!!!

2018-04-22 Thread sean
> Well, I guess I don't belong here anymore… Please don't let one personality define our community. I'm sure there are a lot of people, like me, who appreciate your perspective and efforts. Steph has said the same thing to me multiple times about talking vs. action and I've worked on hundreds

[Pharo-users] Re: How can I make this more OOP

2020-09-16 Thread sean
Stéphane Ducasse wrote: > refrain from using respondTo: > I make code difficult to evolve and can introduce vicious bugs. Steph, would you say more about this? It’s something I’ve been wondering about. I was recently reading the Strategy pattern in the Smalltalk Companion to the GOF book.

[Pharo-users] Re: The Greatest Contributors to Smalltalk since 1980

2021-07-29 Thread sean
Wow! What a trip down memory lane and I learned some I didn’t know as well. This thread is inspiring in itself :) And I agree with all those named and that there are many more unnamed!

[Pharo-users] Re: one year contract

2021-07-29 Thread sean
Cool :)

[Pharo-users] Re: [ANN] license selector

2021-12-06 Thread sean
Thanks! Sounds cool…

[Pharo-users] Re: Can traits be removed programatically?

2021-11-21 Thread sean
I thought the question was how to install/duplicate the trait methods on each client (maybe for a deployment image without Traits). I had the same question. Doesn’t the suggestion remove the trait completely or am I missing something?

[Pharo-users] Re: Null Object Pattern

2022-03-16 Thread sean
> if you are using the null object pattern then you should not write those > checks (ifNil:ifNotNil:, isNil, isNotNil). you should send the message to > an instance of the null object and that object should decide what to do. > just an opinion. I agree as a general rule, but it can get

[Pharo-users] Re: Null Object Pattern

2022-03-16 Thread sean
> To start with, why do you CARE whether a particular > method is inlined or not? I care because it makes “everything is a message” a lie! And I suspect (no proof and could be wrong) it’s an optimization that only made sense with the hardware constraints of 40+ years ago. Arguing against

[Pharo-users] Re: BlockClosure folding

2022-03-15 Thread sean
ComplexCondition as described in [Andres Valloud, "A Mentoring Course on Smalltalk"](http://www.lulu.com/product/paperback/a-mentoring-course-on-smalltalk/3788890) is available at http://www.squeaksource.com/ComplexCondition.html With it, you can do something like: ``` ^[a includes: $.], [b

[Pharo-users] Null Object Pattern

2022-03-15 Thread sean
I had some chaining that was getting too complex due to many nil checks, so I started to refactor using a Null Object. However, I’m struggling a bit with the refactor due to inlining. Since #ifNil: variants might be inlined, it seems that something like: anObject with a long chain of

[Pharo-users] Re: Null Object Pattern

2022-03-18 Thread sean
> My *concern* with inlining is that since it is designed to short-circuit > dynamic method lookup, it is impossible to call a *different* implementation. > That is, you lose the opportunity to have the *receiver* decide how to > respond to the message. You may think of it as a message, but the

[Pharo-users] Re: Null Object Pattern

2022-03-18 Thread sean
> My chief concern is that I am a bear of very little brain, > and if you change the meaning of #isNil to anything at all > other than "is the receiver identical to nil" you *WILL* > (not may) confuse me. I can understand your probably well-justified concern that power can always be misused. I

[Pharo-users] Re: Null Object Pattern

2022-03-18 Thread sean
> What you can do is turning it off globally in the setting (all compiler > option are listed there) > > But take care: we can not recompile the image without optimzations as this > adds intererrupt possibilities to code that was not > interruptable before, which breaks the code in for process

[Pharo-users] Re: Too many parenthesis - a matter of syntax

2022-02-28 Thread sean
Marcus Denker wrote: > There are experiments around, for example > > https://github.com/dvmason/Pharo-Functional And https://github.com/juliendelplanque/Iterators, which let’s you do for example: ``` iterator := #(1 2 3) iterator. iterator | [ :x | x * 2 ] collectIt | [ :object

[Pharo-users] Re: Personal wiki / information manager

2023-09-25 Thread sean
Your work is intriguing. I think it would be good to video chat at some point. There are several other people that come to mind that are interested in this space as well. I’m also on Pharo discord and GT discord (which has a PKM channel). Other responses inline… Siemen Baader wrote: > We

[Pharo-users] Re: Null Object Pattern

2022-03-18 Thread sean
> I feel like you’ve latched onto something that is genuinely a non problem… I wouldn’t call complexity and lack of consistency a “non problem”, but it sounds like for you the practical implications outweigh my seemingly-somewhat-ideological/niche concerns. Is that a fair summary? In any case,

[Pharo-users] Re: PDFtalk for Pharo - first fileOut

2022-05-28 Thread sean
This is exciting :) I’m interested in helping. Where can we talk more about specifics? Maybe enable Discussions in the GH repo?

[Pharo-users] Re: PDFtalk for Pharo - first fileOut

2022-05-29 Thread sean
Great. I started a thread there to continue discussing: [Pair Programming Opportunity!](https://github.com/PortingPDFtalk/PharoPDFtalk/discussions/2)

[Pharo-users] Re: [ANN] Pharo Consortium New Bronze Member: SRA

2022-05-07 Thread sean
Great news :)

[Pharo-users] Re: Omnibase/Monibase repository removal

2022-08-23 Thread sean
I’m not fully understanding the issue. Is it that: * The repos are violating the library license (other than the erroneous MIT license, which could easily be updated)? * The fact that OmniBase is not open source violates a principle you have in continuing to host it? If the latter, may I

[Pharo-users] Re: Version of magritte for Pharo10

2022-10-18 Thread sean
I just load the baseline with no version specified. If that works for you, maybe we should release another version…

[Pharo-users] Re: STON little question

2022-11-11 Thread sean
Can you use [SortFunctions](https://github.com/pharo-open-documentation/pharo-wiki/blob/master/General/SortingCollections.md#sort-functions "SortFunctions") instead of blocks with the SortedCollections? This is what I finally figured out to do with Fuel most of the time after lots of pain

[Pharo-users] Re: [Ann] Bloc v1.0

2022-11-11 Thread sean
Do we have to subscribe to read the archive? I followed the link but didn’t see an archive link

[Pharo-users] Re: Pharo being featured in Exercism's Mind Shifting May

2023-04-29 Thread sean
I clicked on the link and got an error that the page is private or doesn’t exist. Also, what kind of help are you looking for?

[Pharo-users] Re: Personal wiki / information manager

2023-07-13 Thread sean
. It is currently based on GToolkit (itself based on Pharo). There’s no reason the core model couldn’t run on plain Pharo without GT, but it’s been a long time (several years) since I’ve put any love into Morphic UI components. HTH, Sean

[Pharo-users] Re: Help Pharo by tagging your pharo projects on GH

2023-06-21 Thread sean
Done! Thanks for the push :)

[Pharo-users] String to URL Validation

2023-05-19 Thread sean
How would I test whether a string is a valid absolute URL? At first, I thought to attempt a conversion and catch the error, but then I realized that invalid URLs don’t always cause an error e.g. missing scheme and host return relative URLs with the entire string placed in the segments.

[Pharo-users] Re: Backing up data

2024-02-14 Thread sean
I’m happy to answer any questions about Simple Persistence. It is a nice framework around (potentially any) serializer. It’s meant to be pluggable but currently uses Fuel out of the box. You just tell it what classes to persist and then create two methods per class to handle

Re: [Pharo-users] Spotlight Demo

2013-12-31 Thread DeNigris Sean
Thanks for the feedback everyone! A few enhancements: - Close on escape - Select next on down arrow when open - Show all on down arrow when closed - Select previous on up arrow - Accept on enter - requires an override in PluggableTextFieldMorph, but I think the change can be integrated in Core -

Re: [Pharo-users] Pharo and GIT

2016-07-25 Thread Sean Glazier
we can do more powerful things with the repository. We can browse the class without loading it but that gets us only so far. Just my 0.02 ;-) Kind Regards, Sean Glazier On Mon, Jul 25, 2016 at 1:28 PM, Peter Uhnak <i.uh...@gmail.com> wrote: > Hi Juraj, > > I've finall

Re: [Pharo-users] Pharo and GIT

2016-07-25 Thread Sean Glazier
I look forward to using Iceberg ! Kind Regards, Sean Glazier On Mon, Jul 25, 2016 at 1:28 PM, Peter Uhnak <i.uh...@gmail.com> wrote: > Hi Juraj, > > I've finally forced myself to finish a guide on using gitfiletree: > https://www.peteruhnak.com/blog/2016/07/25/how-to-

[Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-21 Thread Sean Glazier
on the subject at ESUG. I am wondering what my workflow needs to be. Kind Regards, Sean Glazier

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-21 Thread Sean Glazier
Yes bit bucket is the JIRA tools repo manager and you can create git repositories there. I am wondering if I can publish directly to it or have to first publish to GitHub and then import or pull my changes into bitbucket that does have an import feature for GitHub Kind Regards, Sean Glazier

[Pharo-users] pharo 5 crashing

2016-07-25 Thread Sean Glazier
Morph(MenuItemMorph)>>handleMouseUp: MouseButtonEvent>>sentTo: ToggleMenuItemMorph(Morph)>>handleEvent: MorphicEventDispatcher>>dispatchDefault:with: MorphicEventDispatcher>>handleMouseUp: MouseButtonEvent>>sentTo: [ ^ anEvent sentTo: self ] in MorphicEventDispatcher>>dispatchEvent:with: in Block: [ ^ anEvent sentTo: self ] [0m Kind Regards, Sean Glazier

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-25 Thread Sean Glazier
waitForExit. self assert: command isRunning not. r := command upToEnd. command exitCode > 0 ifTrue: [ | errorString | errorString := command errorUpToEnd. errorString notEmpty ifTrue: [ MCFileTreeGitError new signal: 'Git error: ' , errorString ]. r := '' ] ]. ^ r Kind Regards, Sean Glaz

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-25 Thread Sean Glazier
I guess that is my ignorance showing. I have not used Pharo against a Git repo before. Kind Regards, Sean Glazier

Re: [Pharo-users] UPnP/IGD implementation

2016-07-25 Thread Sean Glazier
, Sean Glazier On Mon, Jul 25, 2016 at 7:13 AM, Norbert Hartl <norb...@hartl.name> wrote: > Does anyone know some code or person that did something with UPnP/IGD in > pharo? > > thanks, > > Norbert > > > >

Re: [Pharo-users] Can GitHubcello be used against BitBucket?

2016-07-24 Thread Sean Glazier
the repository window is below. [image: Inline image 1] Thank you for your help and if you can point me to where I need to added a break point I can provide more information :-) Kind Regards, Sean Glazier On Mon, Jul 25, 2016 at 12:37 AM, Dale Henrichs < dale.henri...@gemtalksystems.

[Pharo-users] magritteXML fixes

2016-07-30 Thread Sean Glazier
Hi, I tried to publish fixes to the Magritte XML package and the Smalltalk hub is not working. I published off to our own repository. I there an ETA on its getting fixed or an alternative repository to publish to? Kind Regards, Sean Glazier

Re: [Pharo-users] An Implementation of JSON Web Tokens

2016-07-21 Thread Sean Glazier
you! Kind Regards, Sean Glazier On Thu, Jul 21, 2016 at 6:04 AM, Norbert Hartl <norb...@hartl.name> wrote: > I uploaded an old implementation of mine. It is not fully implemented but > usable for the easy case. > > http://smalltalkhub.com/#!/~NorbertHartl/JSONWebToken

[Pharo-users] using glorp and active record

2016-08-08 Thread Sean Glazier
Hi, I have been trying to get glorp using active record working in pharo 5. I have a descriptor class for it and the classes inherit from active Record. I describe the table as: tableForAnswer: aTable | vistorId questionId | (aTable createFieldNamed: 'id' type: platform serial) bePrimaryKey.

Re: [Pharo-users] [ANN] JSONWebToken

2016-07-23 Thread Sean Glazier
still trying to figure out how to get a commit to a git repository hosted of bit buck to commit etc. The customer set it there not me. I just have to get it to work ;-) Sean Kind Regards, Sean Glazier On Fri, Jul 22, 2016 at 5:45 PM, Norbert Hartl <norb...@hartl.name> wrote: >

[Pharo-users] Stack trying to use Pier 3 with Pharo 5

2016-07-23 Thread Sean Glazier
uide>>visitPresenter: WAVisiblePresenterGuide(WAPainterVisitor)>>visitComponent: PRAdminSetupChooseDistribution(WAComponent)>>accept: WAVisiblePresenterGuide>>visitDecoration: WAAnswerHandler(WADecoration)>>accept: WAVisiblePresenterGuide(WAPainterVisitor)>>visitDecorationsOfCompo

Re: [Pharo-users] using glorp and active record

2016-09-27 Thread Sean Glazier
ON DELETE SET NULL ) WITH ( OIDS=FALSE ); ALTER TABLE answers OWNER TO sean; COMMENT ON COLUMN answers.optionid IS 'options for licence scans can havedirect answers for them so we nee to add pointers and backpointer to them in this table as well'; -- Index: answers_questionid_idx -- DROP INDEX

Re: [Pharo-users] Image freezes on Linux if it was previously saved on Windows

2016-11-01 Thread Sean Glazier
did you get a fix for this? I am seeing this in pharo 5 image and I have not seen a fix yet -- View this message in context: http://forum.world.st/Image-freezes-on-Linux-if-it-was-previously-saved-on-Windows-tp4903258p4921007.html Sent from the Pharo Smalltalk Users mailing list archive at

Re: [Pharo-users] [ANN] OpenSSL-Pharo works on Windows

2017-12-20 Thread Sean Glazier
OK now my cell is finally working again! I can now be reached at 603 957 2705 Kind Regards, Sean Glazier On Wed, Dec 20, 2017 at 2:57 PM, Stephane Ducasse <stepharo.s...@gmail.com> wrote: > great news. > And this is super great that you plan to work on different platfor

Re: [Pharo-users] ApplicationSecurity Questions

2018-06-29 Thread Sean DeNigris
Moved from Pharo-Dev… > Please let me know how it is going I’m at the point where I seem to have a basic understanding of the library and I’m ready to integrate into an app I’m writing. Here are a few questions, which I put into an issue [1] to fold back into the docs when the conversation is

Re: [Pharo-users] InputEventSensor and polling

2013-05-16 Thread Sean P. DeNigris
Eric Clack wrote I've been working on Phratch, a port of MIT Scratch to Pharo...I can't bear to see it end up in Flash. Amen! What a great, important project. Please ask whatever you need to get this done. We will support you as much as we can :) - Cheers, Sean -- View this message

Re: [Pharo-users] baseline for seaside 3.0

2013-06-10 Thread Sean P. DeNigris
/MetacelloRepository which loads seaside 30 - Cheers, Sean -- View this message in context: http://forum.world.st/baseline-for-seaside-3-0-tp4692630p4692696.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] inspect returns iOf SystemWindow and not receiver

2013-06-11 Thread Sean P. DeNigris
Marcus Denker-4 wrote So maybe we can - add #inspector that returns the tool - make inspect be like it was before (with documentation). +1. Great idea. Seems best from both viewpoints. - Cheers, Sean -- View this message in context: http://forum.world.st/inspect-returns-iOf

Re: [Pharo-users] #stable not defined

2013-06-11 Thread Sean P. DeNigris
a lot of discussion about Cairo/Athens/NativeBoost on the developer list. I would search the archives... [1] http://www.moosetechnology.org/download/pharo http://forum.world.st/ConfigurationOfMoose-Error-in-Pharo-2-0-td4692881.html - Cheers, Sean -- View this message in context: http

[Pharo-users] Zinc: Posting aString

2013-06-12 Thread Sean P. DeNigris
) - Cheers, Sean -- View this message in context: http://forum.world.st/Zinc-Posting-aString-tp4693047.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Looking for old Linux vm

2013-06-17 Thread Sean P. DeNigris
this: PharoCore1.0rc1 Latest update: #10500 Any help will be much appreciated! Cheers, Monty - Cheers, Sean -- View this message in context: http://forum.world.st/Looking-for-old-Linux-vm-tp4693798p4693817.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

[Pharo-users] Scoped Senders

2013-09-26 Thread Sean P. DeNigris
How do I find the senders of a message, but just in a certain set of packages? Thanks. - Cheers, Sean -- View this message in context: http://forum.world.st/Scoped-Senders-tp4710563.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Scoped Senders

2013-09-26 Thread Sean P. DeNigris
Original message From: Camillo Bruni-3 [via Smalltalk] ml-node+s1294792n4710572...@n4.nabble.com Date: 09/26/2013 10:45 AM (GMT-05:00) To: Sean P. DeNigris s...@clipperadams.com Subject: Re: Scoped Senders = create a refactoring scope (I don't know the menu entry

Re: [Pharo-users] NYC for a group?

2013-10-04 Thread Sean P. DeNigris
the organizer to do an Amber presentation, but no luck so far. If I don't hear back in a reasonable time, we could just set one up on our own... p.s. there are a few other NYC Smalltalkers that I know of. The meetings that I went to usually had about 6-8. - Cheers, Sean -- View this message

Re: [Pharo-users] Halos in pharo 3

2013-10-04 Thread Sean P. DeNigris
btc wrote Except for me (Windows 7) this seems reversed from what you say in the second paragraph. By default, I can only Alt-Shift-click . Enabling Cycle both directions allows Alt-click to work Quite right... copy-paste error ;) - Cheers, Sean -- View this message

Re: [Pharo-users] Simple Spec Examples

2013-10-12 Thread Sean P. DeNigris
... - Cheers, Sean -- View this message in context: http://forum.world.st/Spec-Lists-setting-the-selection-tp4713776p4714058.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

[Pharo-users] ImageMorph scaling

2013-11-04 Thread Sean P. DeNigris
. The form shows up as the full original size, but strangely if I bring up the halos on the ImageMorph and just wiggle the scaling halo, it resizes to fit the PanelMorph. But then if I resize the window again, the image doesn't rescale. Thanks. - Cheers, Sean -- View this message in context: http

[Pharo-users] Wiki PetitParser

2013-11-05 Thread Sean P. DeNigris
Is there a parser for Wiki (i.e. Wikipedia) syntax somewhere Thanks... - Cheers, Sean -- View this message in context: http://forum.world.st/Wiki-PetitParser-tp4719456.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Adjusting the size of a window using Spec

2013-11-09 Thread Sean P. DeNigris
Benjamin Van Ryseghem-2 wrote You just need to override the method #initialExtent Cool! I didn't know that one. I've been writing ugly #open methods which call #extent:... - Cheers, Sean -- View this message in context: http://forum.world.st/Adjusting-the-size-of-a-window-using-Spec

Re: [Pharo-users] ImageMorph scaling

2013-11-11 Thread Sean P. DeNigris
Sean P. DeNigris wrote How would I get an ImageMorph to automatically resize inside a Spec UI? The following must be called /after/ the ImageMorph is added to the parent... imageMorph addFlexShell hResizing: #spaceFill; vResizing: #spaceFill. The resizing

Re: [Pharo-users] PetitParser and external streams

2013-11-12 Thread Sean P. DeNigris
that StreamasPetitParser do this: asPetitStream ^ self contents asPetitStream Thanks! Federico - Cheers, Sean -- View this message in context: http://forum.world.st/PetitParser-and-external-streams-tp4721440p4721531.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] PetitParser and external streams

2013-11-13 Thread Sean P. DeNigris
Norbert Hartl wrote Producing the output immediately often has the drawback that it is hard to alter the stream in between... I've had success outputting-as-I-go in the == block, instead of, or in addition to returning the token... - Cheers, Sean -- View this message in context: http

Re: [Pharo-users] PharoLauncher howto (was: SimplePersistence ...)

2013-11-21 Thread Sean P. DeNigris
no longer an item in the World Menu, one has to dig into the core to find out how to un-fullscreen oneself. IMHO, I would not open in fullscreen by default. - Cheers, Sean -- View this message in context: http://forum.world.st/PharoLauncher-howto-was-SimplePersistence-tp4724028p4724042.html

Re: [Pharo-users] NativeBoost Questions while wrapping FMOD

2013-11-21 Thread Sean P. DeNigris
initialized by the callout. I also played around with NBExternalObject, but couldn't get that to work either... Thanks for all the support. This is fun!! - Cheers, Sean -- View this message in context: http://forum.world.st/NativeBoost-Questions-while-wrapping-FMOD-tp4724116p4724158.html

[Pharo-users] Programmatic Scoped Browsing

2013-11-24 Thread Sean P. DeNigris
. Thanks. - Cheers, Sean -- View this message in context: http://forum.world.st/Programmatic-Scoped-Browsing-tp4724820.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] reporting bugs

2013-11-29 Thread Sean P. DeNigris
Stéphane Ducasse wrote ***EXCELLENT*** +1. Really nice job. Thanks for taking the time :) I edited the wiki welcome page to make your instructions more prominent, linking to them in the 1st section and giving them a separate line in section 2. - Cheers, Sean -- View this message

Re: [Pharo-users] Finalization

2013-11-29 Thread Sean P. DeNigris
up. Does that sound like a good idea? Overkill? - Cheers, Sean -- View this message in context: http://forum.world.st/Finalization-tp4726046p4726257.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

[Pharo-users] Phexample question

2013-12-02 Thread Sean P. DeNigris
Would it be difficult to be able to supply tests from other TestCases to #given:? Something like #given: aSelector in: #aTestCaseClass... - Cheers, Sean -- View this message in context: http://forum.world.st/Phexample-question-tp4726864.html Sent from the Pharo Smalltalk Users mailing list

Re: [Pharo-users] command line command from pharo image

2013-12-03 Thread Sean P. DeNigris
... HTH - Cheers, Sean -- View this message in context: http://forum.world.st/command-line-command-from-pharo-image-tp4727022p4727098.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] command line command from pharo image

2013-12-05 Thread Sean P. DeNigris
Sabine Knöfel wrote Which is the Class and the message in NB then? not sure which class and on holidays with no computer :) the Mac message is #run: which wraps system in libc, and the Windows version, which I haven't committed yet is #winExec:show which wraps WinExec. HTH - Cheers, Sean

Re: [Pharo-users] command line command from pharo image

2013-12-05 Thread Sean P. DeNigris
there. We could really use a PharoMap... I will take a look at your project. Maybe something could be integrated with NB core. Executing an external command on all the common platforms is a good demonstration of NB - Cheers, Sean -- View this message in context: http://forum.world.st/command

Re: [Pharo-users] OSProcess command: 'something' does not work on windows

2013-12-05 Thread Sean P. DeNigris
If you search the mailing list for OSProcess Windows, you will find a list that says that your need to get our bills the plugin which is not included by default. HTH - Cheers, Sean -- View this message in context: http://forum.world.st/OSProcess-command-something-does-not-work-on-windows

[Pharo-users] Fwd: NativeBoost and standard out

2013-12-23 Thread Sean P. DeNigris
Emilio Oca-3 wrote Hi Is it possible to get the stdout results when running WinProcess createAndWaitForProcess: aCommand?. If it is not, any alternative? Best Emilio Bump... - Cheers, Sean -- View this message in context: http://forum.world.st/Fwd

Re: [Pharo-users] Fwd: NativeBoost and standard out

2013-12-24 Thread Sean P. DeNigris
Hernán Morales Durand wrote Maybe does this help ProcessWrapper new useStdout; startWithShellCommand: 'dir | sort'; upToEnd Intriguing! I'll try it when I get access to a Windows machine... Thanks :) - Cheers, Sean -- View this message in context

Re: [Pharo-users] Spotlight Demo

2013-12-31 Thread Sean P. DeNigris
not disappear each time I click away. I don't see why not... - Cheers, Sean -- View this message in context: http://forum.world.st/Spotlight-Demo-tp4733077p4733328.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] [Pharo-dev] Spotlight Demo

2013-12-31 Thread Sean P. DeNigris
Stéphane Ducasse wrote How about to add Packages? Sure! It's completely configurable via the API. In the example it was showing classes and selectors, but you could show files, or your own domain objects (which is how I'm using it). - Cheers, Sean -- View this message in context: http

Re: [Pharo-users] Spotlight Demo

2013-12-31 Thread Sean P. DeNigris
what you mean. Will you say more about these? - Cheers, Sean -- View this message in context: http://forum.world.st/Spotlight-Demo-tp4733077p471.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Spotlight Demo

2013-12-31 Thread Sean P. DeNigris
it is entered into the text field. - Cheers, Sean -- View this message in context: http://forum.world.st/Spotlight-Demo-tp4733077p4733364.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Spotlight Demo

2013-12-31 Thread Sean P. DeNigris
results. Mac's Spotlight seems to take the total screen height available and divide it equally among the groups, but I'm not going to write that algorithm now... - Cheers, Sean -- View this message in context: http://forum.world.st/Spotlight-Demo-tp4733077p4733376.html Sent from the Pharo

Re: [Pharo-users] Spotlight Demo

2014-01-01 Thread Sean P. DeNigris
You would recommend 3.0 even for production systems? Original message From: Tudor Girba-2 [via Smalltalk] ml-node+s1294792n473339...@n4.nabble.com Date: 01/01/2014 1:23 AM (GMT-05:00) To: Sean P. DeNigris s...@clipperadams.com Subject: Re: Spotlight Demo Hi, I am

Re: [Pharo-users] New Pharo based solution in the wild

2014-01-04 Thread Sean P. DeNigris
, Sean -- View this message in context: http://forum.world.st/New-Pharo-based-solution-in-the-wild-tp4734212p4734216.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

[Pharo-users] Submorph centering

2014-01-07 Thread Sean P. DeNigris
white; changeTableLayout; listCentering: #center; cellPositioning: #center; extent: 500@500; addMorph: labelMorph; openInWorld. How do I get labelMorph centered on the width of its parent without labelCenteringMorph? - Cheers, Sean -- View

[Pharo-users] World to Morph Local Co-ordinates

2014-01-08 Thread Sean P. DeNigris
). screen point: 0@0 from: screen. Is there an easy built-in way to convert points from World to the bounds of another (assume rectangular) morph? Thanks. - Cheers, Sean -- View this message in context: http://forum.world.st/World-to-Morph-Local-Co-ordinates-tp4735247.html Sent from

Re: [Pharo-users] World to Morph Local Co-ordinates

2014-01-08 Thread Sean P. DeNigris
Markus Schlager-2 wrote http://lists.pharo.org/pipermail/pharo-users_lists.pharo.org/2013-September/008493.html Interesting thread - thanks! - Cheers, Sean -- View this message in context: http://forum.world.st/World-to-Morph-Local-Co-ordinates-tp4735247p4735265.html Sent from the Pharo

[Pharo-users] Smalltalkhub Embed Youtube Video

2014-01-12 Thread Sean P. DeNigris
/iframe Thanks. - Cheers, Sean -- View this message in context: http://forum.world.st/Smalltalkhub-Embed-Youtube-Video-tp4736265.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

[Pharo-users] Open a Browser Selector of Class

2014-01-28 Thread Sean P. DeNigris
Used to be Browser class#newOnClass: aClass selector: aSymbol. How do we do it in 3.0? I hunted around but couldn't find exactly that (a lot of other browseXyz's though). - Cheers, Sean -- View this message in context: http://forum.world.st/Open-a-Browser-Selector-of-Class-tp4739945.html

Re: [Pharo-users] Open a Browser Selector of Class

2014-01-28 Thread Sean P. DeNigris
Pharo4Stef wrote because I wanted to be able to browse code when any clever browser is not in the image. Yes it's valuable to have simple backups - Cheers, Sean -- View this message in context: http://forum.world.st/Open-a-Browser-Selector-of-Class-tp4739945p4739960.html Sent from

Re: [Pharo-users] finding the parent of a filereference

2014-01-31 Thread Sean P. DeNigris
Tudor Girba-2 wrote I would like to find the parent of a FileReference. For example: You're going to like the answer… #parent ;-) - Cheers, Sean -- View this message in context: http://forum.world.st/finding-the-parent-of-a-filereference-tp4740763p4740770.html Sent from the Pharo

Re: [Pharo-users] Nautilus error

2014-02-03 Thread Sean P. DeNigris
. They probably still work on latest pharo. - Cheers, Sean -- View this message in context: http://forum.world.st/Nautilus-error-tp4741184p4741232.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

[Pharo-users] Instance-specific behavior

2014-02-04 Thread Sean P. DeNigris
What would be the best way (as an experiment) to change the behavior of just one instance. For example, say: SpecialMorph#color ^ Color blue. but (the effect of) aSpecialMorph#color ^ owner color. - Cheers, Sean -- View this message in context: http://forum.world.st/Instance

Re: [Pharo-users] Instance-specific behavior

2014-02-04 Thread Sean P. DeNigris
Pharo4Stef wrote Have a look at my old JOOP paper on message passing control Found it - thanks :) - Cheers, Sean -- View this message in context: http://forum.world.st/Instance-specific-behavior-tp4741502p4741597.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Using/editing external packages..

2014-02-11 Thread Sean P. DeNigris
this to be true (with Pharo, Magritte, BabyMock…) - Cheers, Sean -- View this message in context: http://forum.world.st/Using-editing-external-packages-tp4742801p4742832.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] branching with monticello

2014-02-11 Thread Sean P. DeNigris
as MyPackage.issue101.MyName.mcz (instead of just MyPackage.MyName.mcz). IIRC these would be listed separately in the MC tools at least... - Cheers, Sean -- View this message in context: http://forum.world.st/branching-with-monticello-tp4742815p4742840.html Sent from the Pharo Smalltalk Users mailing

Re: [Pharo-users] Streaming API for Pharo?

2014-02-13 Thread Sean P. DeNigris
Arturo Zambrano wrote I would like to know if Zn allows to get data incrementally The Nabble mirror (http://forum.world.st/Pharo-f1294836.html will check both dev and user lists) has a great search feature. Zinc stream returned some interesting results... - Cheers, Sean -- View

Re: [Pharo-users] How is the screenshot tool supposed to work?

2014-02-16 Thread Sean P. DeNigris
kmo wrote How is it supposed to work? It looks like it saves it as {imageDirectory}/PharoScreenshot.png - Cheers, Sean -- View this message in context: http://forum.world.st/How-is-the-screenshot-tool-supposed-to-work-tp4744162p4744166.html Sent from the Pharo Smalltalk Users mailing

Re: [Pharo-users] How is the screenshot tool supposed to work?

2014-02-16 Thread Sean P. DeNigris
kmo wrote this information could have been added... Why not ;) 12896 Screenshot tool: tell save location https://pharo.fogbugz.com/default.asp?12896 Slice in inbox - Cheers, Sean -- View this message in context: http://forum.world.st/How-is-the-screenshot-tool-supposed-to-work

Re: [Pharo-users] Madrid SUG

2014-02-17 Thread Sean P. DeNigris
Rafael Luque wrote I've just started a meetup for the Madrid Smalltalk User Group buena suerte :) - Cheers, Sean -- View this message in context: http://forum.world.st/Madrid-SUG-tp4744257p4744350.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] How to look for local senders/implementors in a hierarchy

2014-02-17 Thread Sean P. DeNigris
. - Cheers, Sean -- View this message in context: http://forum.world.st/How-to-look-for-local-senders-implementors-in-a-hierarchy-tp4744357p4744369.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

  1   2   3   4   5   6   7   8   9   >