[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. On

[Pharo-users] Re: one year contract

2021-07-29 Thread sean
Cool :)

[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: 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: [ANN] license selector

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

[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 o

[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: 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 inc

[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 messag

[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 prematu

[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 complicated

[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 sw

[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: [ANN] Pharo Consortium New Bronze Member: SRA

2022-05-07 Thread sean
Great news :)

[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: 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 sug

[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] 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: Help Pharo by tagging your pharo projects on GH

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

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

2023-07-13 Thread sean
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: 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 coul

[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 materialization/seri

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 wrote: > great news. > And this is super great that you plan to work on different platforms! > THANKS > > On Wed, Dec 2

[Pharo-users] Fwd: test

2013-05-13 Thread DeNigris Sean
>> please ignore ___ Pharo-users mailing list Pharo-users@lists.pharo.org http://lists.pharo.org/mailman/listinfo/pharo-users_lists.pharo.org

[Pharo-users] Nabble is back online

2013-05-13 Thread DeNigris Sean
Nabble is again mirroring the (now new) dev and user lists :) ___ Pharo-users mailing list Pharo-users@lists.pharo.org http://lists.pharo.org/mailman/listinfo/pharo-users_lists.pharo.org

[Pharo-users] Spec #add:withSpec: Bug?

2013-05-28 Thread DeNigris Sean
)>>doesNotUnderstand: #subwidget: After I added it, I got: DNU SpecLayoutAddWithSpec(Object)>>doesNotUnderstand: #layoutFrame: After I added that, I got: UndefinedObject(Object)>>doesNotUnderstand: #asSymbol SpecInterpreter>>interpretASpec: What do you think? Thanks, Sean

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 -

[Pharo-users] [ANN]: Tiny Gmail Contact Importer

2014-05-16 Thread Sean DeNigris
I wrote a tiny utility to work with Gmail contacts. It is very basic and just maps an export file in the Outlook format to GmailContact objects. It doesn't support the Google CSV format - the field order and names are different, and the file is UTF16-encoded. Enjoy! Gofer it smalltalkhu

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 wrote: > I uploaded an old implementation of mine. It is not fully implemented but > usable for the easy case. > > http://smalltalkhub.com/#!/~NorbertHartl/JSONWebToken > > Hope it helps,

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

2016-07-21 Thread Sean Glazier
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

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 wrote: > Hey Johan, > > didn'

[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] 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.

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

2016-07-25 Thread Sean Glazier
t;' , (MCFileTreeFileUtils current directoryPathString: aDirectory) , '" ' , aCommandString; yourself. command waitForExit. self assert: command isRunning not. r := command upToEnd. command exitCode > 0 ifTrue: [ | errorString | errorString := command errorUpToEnd. errorString notEmpt

[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
s 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 wrote: > Does anyone know some code or person that did something with UPnP/IGD in > pharo? > > thanks, > > Norbert > > > >

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 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-use-git-and-github

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 wrote: > Hi Juraj, > > I've finally forced myself to finish a

[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

[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. que

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 --

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 Nabb

Re: [Pharo-users] How to fix the Pharo launcher Windows installation! (WAS: Windows installation broken?)

2018-06-18 Thread Sean Glazier
Do you need more smalltalkers on your team who have real-time control experience? I would love to contribute. I agree more windows support is needed My linked in profile is at https://www.linkedin.com/in/seanglazier Sean Glazier On Mon, Jun 18, 2018 at 3:29 PM wrote: > Hi all, > > &

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] Traits, method flatten

2017-06-07 Thread Sean P. DeNigris
ere saved as part of the package containing the extended class, as well as the package containing the Trait itself. Ugh. Was this ever fixed by Pharo 6? ----- Cheers, Sean -- View this message in context: http://forum.world.st/Traits-method-flatten-tp4941799p4950378.html Sent from the Pharo Sma

[Pharo-users] NeoCSV on Irregular Files

2017-07-26 Thread Sean P. DeNigris
I have a CSV file that has several subsections, each with its own format. What I'd like to do is parse one, reset the NeoCSVReader, set it up for the next section, and continue. I didn't see an API for this. Is it possible? Thanks. - Cheers, Sean -- View this message in cont

[Pharo-users] Adaptable Tree-Based Cherry-Pick Tool

2017-07-29 Thread Sean P. DeNigris
Do we have something like a merge UI that can be used on an underlying model that may have nothing to do with VCS? - Cheers, Sean -- View this message in context: http://forum.world.st/Adaptable-Tree-Based-Cherry-Pick-Tool-tp4957766.html Sent from the Pharo Smalltalk Users mailing list

Re: [Pharo-users] NeoCSV on Irregular Files

2017-07-29 Thread Sean P. DeNigris
Sven Van Caekenberghe-2 wrote > creating new readers for each section is one option Thank you both. This worked quite well (23 LOC) vs. parsing the raw file with NeoCSV and then trying to clean up and interpret the resulting arrays (126 LOC). - Cheers, Sean -- View this message in cont

[Pharo-users] PetitParser: Parse X as long as it's not Y

2017-08-05 Thread Sean P. DeNigris
How do I tell Petit Parser to parse a string of certain allowable characters as long as the final result isn't a particular string? E.g. consume an identifier as long as it's not 'Baz' or 'Bar' Thanks - Cheers, Sean -- View this message in context: http://fo

Re: [Pharo-users] PetitParser: Parse X as long as it's not Y

2017-08-05 Thread Sean P. DeNigris
vonbecmann wrote > did you try with negate? That is the standard trick with PP, but the problem here is that I'm trying to say, not just "anything which is not Y", but "any string of these characters as long is it doesn't also match Y" - Cheers, Sean -- Vi

Re: [Pharo-users] PetitParser: Parse X as long as it's not Y

2017-08-08 Thread Sean P. DeNigris
end. parser parse: ' Paul Jr'. parser parse: ' Paul'. parser parse: ' Jr'. This really had me baffled. Thanks again!! - Cheers, Sean -- View this message in context: http://forum.world.st/PetitParser-Parse-X-as-long-as-it-s-not-Y-tp4958895p4959268.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] PetitParser: Parse X as long as it's not Y

2017-08-09 Thread Sean P. DeNigris
Peter Kenny wrote > You may need to post-process the parse to get what you > want. Good point. I omitted several ` ==> #second` in several places for readability on the list, but we should mention that for posterity. Also, duh `gen negate and` should be `gen not`! - Cheers, Sea

Re: [Pharo-users] [Ann] Blog entry about using Pharo / Smalltalk to build a bot

2017-08-19 Thread Sean P. DeNigris
etc. I love this idea! Take a task no one is particularly invested in and show off Pharo's advantages by adding real value to the team. Very sneaky... I mean effective... indeed! - Cheers, Sean -- View this message in context: http://forum.world.st/Ann-Blog-entry-about-using-Pharo-Sma

Re: [Pharo-users] Pharo on the SqueakJS virtual machine

2017-08-19 Thread Sean P. DeNigris
mitiveFetchMourner is missing. Please upgrade your virtual machine..." - Cheers, Sean -- View this message in context: http://forum.world.st/Re-PharoJS-tp4952267p4962614.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] How do I get at the Morphic halos in Pharo 6.0?

2017-08-28 Thread Sean P. DeNigris
Tim Mackinnon wrote > On OSX, you hold the Shift and Alt keys and then click on something. There is also `Morph cycleHalosBothDirections: true.` to re-enable non-Shift (i.e. bidirectional) cycling a la Squeak - Cheers, Sean -- View this message in context: http://forum.world.st/How-d

Re: [Pharo-users] sharing context/variables between multiple playgrounds

2017-08-31 Thread Sean P. DeNigris
Pavel Krivanek-3 wrote > In that cases I simply make them global. It seems that a variable defined with a capitalized name in an inspector is still local. How do you make it global? Something like: `Smalltalk globals at: #MyVar put: expression`? - Cheers, Sean -- Sent from: h

[Pharo-users] Bitbucket CI

2017-08-31 Thread Sean P. DeNigris
I know we have Travis support for GH. Does anyone have glue for CI-Support in BitBucket? I'm specifically wondering about private repos… - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Small background picture extension for DesktopManager

2017-09-02 Thread Sean P. DeNigris
Torsten Bergmann wrote > In latest DesktopManager… Sounds interesting! How does your project compare to TilingWindowManager? - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Bitbucket CI

2017-09-02 Thread Sean P. DeNigris
so many frameworks - are these for distinct use cases, or more like different flavors? - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

[Pharo-users] Standalone HTML Model

2017-09-08 Thread Sean P. DeNigris
I'd like to create HTML via a DSL, like Seaside's canvas builder, but without loading a whole web framework. Any ideas? - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

[Pharo-users] STON: Skip Inst Var

2017-09-08 Thread Sean P. DeNigris
STON API? - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Standalone HTML Model

2017-09-09 Thread Sean P. DeNigris
So my goal is to have something which outputs HTML suitable for an email signature based on HTML which I already have in text/file form. - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] STON: Skip Inst Var

2017-09-09 Thread Sean P. DeNigris
Sven Van Caekenberghe-2 wrote > You would have to change the way the offending object get handled. Any suggestions on how to do that? Is there a particularly good place to hook in? - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Standalone HTML Model

2017-09-09 Thread Sean P. DeNigris
Sven Van Caekenberghe-2 wrote > not really a DSL I disagree ;) It looks perfect! - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] STON: Skip Inst Var

2017-09-09 Thread Sean P. DeNigris
Sven Van Caekenberghe-2 wrote > Implement... Thanks! I added this to the wiki so we don't lose track of it: https://github.com/svenvc/ston/wiki/Cookbook - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] (no subject)

2017-09-16 Thread Sean P. DeNigris
haro.app and unzip 70.zip (which btw maybe should have been deleted > during cleanup after > the dl) to ./vms/70, the error disappears! [1] From http://forum.world.st/Launcher-Error-w-Pharo-7-tt4959777.html#a4960417 - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] execute a code block at a given time in pharo ?

2017-09-17 Thread Sean P. DeNigris
Daniel BLANC wrote > I feel like I have new negociations superpowers... The magic of Smalltalk ha ha :) - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Standalone HTML Model

2017-09-17 Thread Sean P. DeNigris
hought, darn it feels like unnecessary fragmentation here because these are all common, well-defined concepts! - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] (no subject)

2017-09-18 Thread Sean P. DeNigris
demarey wrote > It is a workaround but maybe I will add a strategy to use the unzip exe if > I can find it on the system. That should solve most problems. > WDYT? Sounds like a reasonable workaround for now. - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users

Re: [Pharo-users] Standalone HTML Model

2017-09-19 Thread Sean P. DeNigris
Craig Latta wrote > Oh, it wasn't clear to me that this was one of Sean's requirements. I would say "sorry" but I'm glad I wasn't clear because I learned something cool from your reply ;) - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

[Pharo-users] ZnHtmlOutputStream Attributes

2017-09-20 Thread Sean P. DeNigris
Any reason to pass as a flat collection of pairs rather than a collection of associations or a dictionary? IMHO the former is less intention revealing and potentially confusing… - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

[Pharo-users] PetitParser Mystery

2017-09-20 Thread Sean P. DeNigris
astName, generationalPart optional) They look the same to me. What is the difference? Thanks! - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] PetitParser Mystery

2017-09-21 Thread Sean P. DeNigris
ally outside the US, I think you will have some fun. Ha ha, no doubt. I am not presuming to capture the whole domain, just an interesting - and thankfully very limited - subset! Thanks for all the help :) - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Usability issues with Calypso

2017-09-23 Thread Sean P. DeNigris
- When Calypso is set to be the default browser, it would be helpful if the World menu item changed from "Calypso Browser" to "Nautilus" - Lack of word wrapping is becoming teeedious - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Bloc Space within a Space

2017-09-23 Thread Sean P. DeNigris
he dependencies and have full control over a world within a world. There seemed to be agreement in principle, but it always seemed "just around the bend". I loaded Bloc in latest Pharo to play around, but am not quite sure if this is yet possible. Thanks! - Cheers, Sean --

Re: [Pharo-users] Usability issues with Calypso

2017-09-25 Thread Sean P. DeNigris
gt; Calypso gives you the tools for this. Aha! Cool and agreed. However, when I check the box on an existing method and select a package, the method doesn't seem to move to the over package :/ - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Bloc Space within a Space

2017-09-25 Thread Sean P. DeNigris
e-blue-plane ideas in the past. If we had a UI where we could sub out and control all the events/time/cursor, we would have something unimaginably cool :) - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Equals and HashCode Builder

2017-10-02 Thread Sean P. DeNigris
ould we change it to that? 2. #hash ^ var1 hash bitXor: (var2 hash bitXor: var3 hash) Is this implementation always safe? It's what I usually hand roll based on what I've seen, but Andres Valloud wrote a whole (large) book on hashing, so I've always wondered if I was missing

Re: [Pharo-users] Equals and HashCode Builder

2017-10-02 Thread Sean P. DeNigris
Denis Kudriashov wrote > I just use RBGenerateEqualHashRefactoring for this: I added your answer to the Pharo wiki. Is this available through the UI? If not, maybe it should be! - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Organisation and workflows

2017-10-02 Thread Sean P. DeNigris
fferent possibilities. I can't help on the other parts of your question, but am eager to hear any answers! [1] Although the beauty of Smalltalk is that there's (almost) always a way forward (see http://forum.world.st/Fwd-Oops-I-put-a-halt-in-a-startup-method-tp3800729.html) [2] https://github.com/seandenigris/Small-World - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

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

2017-10-04 Thread Sean P. DeNigris
areas of the system into top-notch solutions which then become core parts of Pharo ha ha ;) - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] execute a code block at a given time in pharo ?

2017-10-04 Thread Sean P. DeNigris
re say enjoy working with! Daniel BLANC wrote > I'll continue playing/hacking on this small app and I'll publish the end > result. Great! Looking forward to it. This is a great time to share even toy projects because GitHub et al have made the effort/pain/cost so low. - Che

Re: [Pharo-users] [Ann] PharoLauncher v1.0.1 released!

2017-10-06 Thread Sean P. DeNigris
Stephane Ducasse-3 wrote > Tx Christophe +100. Launcher has become indispensable! - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Behold Pharo: The Modern Smalltalk

2017-10-06 Thread Sean P. DeNigris
Maybe this [1] or this [2] (the two might be the same thing) 1. http://forum.world.st/Online-Pharo-Documentation-tp3468690.html 2. http://forum.world.st/webdoc-tt3654967.html - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Behold Pharo: The Modern Smalltalk

2017-10-06 Thread Sean P. DeNigris
Sven Van Caekenberghe-2 wrote > But the point remains, given an image and all our tools, why go to the > web. It seems like the value would be more as a PR tool than a development tool. - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Equals and HashCode Builder

2017-10-07 Thread Sean P. DeNigris
Noury Bouraqadi-2 wrote > The code + tests are here > http://smalltalkhub.com/#!/~CAR/ReusableBricks/packages/Equals I forked to https://github.com/seandenigris/Pharo-Equals with a baseline to make it easier to try out/possibly-integrate. - Cheers, Sean -- Sent from: http://forum.wo

Re: [Pharo-users] FocusFrog

2017-10-07 Thread Sean P. DeNigris
Steven R. Baker wrote > I am not sure how to manage projects, or even how someone goes about > importing this stuff. It looks like you've already grasped package management. The next level up in project management is Metacello, which let's you declare the dependency relationships between packages

Re: [Pharo-users] Behold Pharo: The Modern Smalltalk

2017-10-10 Thread Sean P. DeNigris
f the brain damage from C and C++ ha ha. - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Behold Pharo: The Modern Smalltalk

2017-10-12 Thread Sean P. DeNigris
d todo list ----- Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Bloc Example Errors & question

2017-10-14 Thread Sean P. DeNigris
Aliaksei Syrel wrote > During esug Ronie told me that using UFFI-OpenGL is not the best approach. > ​ Don't leave us hanging! What is the right/better approach?! ----- Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] UFFI and Fortran

2017-10-27 Thread Sean P. DeNigris
it! - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] UK Smalltalk User Group Meeting - Monday, October 30th - PharoLambda: Smalltalk running serverless on AWS

2017-10-27 Thread Sean P. DeNigris
Tim Mackinnon wrote > Tim Mackinnon will show… So jealous! That sounds like an awesome presentation :) - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

  1   2   3   4   5   6   7   8   9   10   >