Re: [Pharo-users] Dawn Theme on Pharo 4.0

2016-04-13 Thread Siemen Baader
ow, but I can make a fork on github and update the installation instructions or publish a package for pharo4 on Smalltalkhub. Do you prefer either site? -- Siemen > I cannot see what is written in red :). > > Stef > > Le 12/4/16 20:47, Siemen Baader a écrit : > > On Tue, Apr

Re: [Pharo-users] Dawn Theme on Pharo 4.0

2016-04-12 Thread Siemen Baader
On Tue, Apr 12, 2016 at 7:43 PM, stepharo wrote: > Check the code because it should just be a subclass of the dark theme > with different colors. > > Stef > Thanks, that helped me to adapt the instructions and make it work! -- Siemen

[Pharo-users] Dawn Theme on Pharo 4.0

2016-04-12 Thread Siemen Baader
Hi all, has anybody had luck using Sebastian's Dawn Theme [1] on Pharo 4.0? The instructions on github are for Pharo 3.0 - what would I do to make it work on my 4.0 image? thanks, Siemen 1: https://github.com/sebastianconcept/Pharo3DawnTheme -- View this message in context:

[Pharo-users] restoring a deleted method

2016-04-24 Thread Siemen Baader
Hi, according to Pharo By Example [1], I should be able to retrieve a deleted method in the Change Sorter by right-clicking it and browsing old versions. However, I get the message 'Sorry, only actual methods have retrievable versions'. Is this a bug, and is there a workaround? best, Siemen 1:

Re: [Pharo-users] restoring a deleted method

2016-04-24 Thread Siemen Baader
ges Browser tool. > > Or grep the *.changes file. > > Peter > > On Sun, Apr 24, 2016 at 2:40 PM, Siemen Baader <siemenbaa...@gmail.com> > wrote: > >> Hi, >> >> according to Pharo By Example [1], I should be able to retrieve a deleted >> method in

Re: [Pharo-users] restoring a deleted method

2016-04-29 Thread Siemen Baader
On Mon, Apr 25, 2016 at 4:50 PM, Nicolai Hess wrote: > > This should work in Pharo 5.0 > Thanks. I'll look forward to that then :) -- Siemen

Re: [Pharo-users] Dawn Theme on Pharo 4.0

2016-04-16 Thread Siemen Baader
weekend all, Siemen On Wed, Apr 13, 2016 at 11:56 AM, Siemen Baader <siemenbaa...@gmail.com> wrote: > > > On Tue, Apr 12, 2016 at 8:54 PM, stepharo [via Smalltalk] < > ml-node+s1294792n4889618...@n4.nabble.com> wrote: > >> Super! >> Could you publish it somew

Re: [Pharo-users] [ANN] Introspect web content (Soup with some GT extensions)

2016-04-16 Thread Siemen Baader
On Thu, Apr 14, 2016 at 1:01 PM, Torsten Bergmann wrote: > Hi, > > I added a few GT inspector extensions to Soup and cleaned up a little bit. > Released as a new version 1.8 of Soup - you will find easily in Catalog > for Pharo 5 or by opening Spotter and entering "Soup" to load.

Re: [Pharo-users] self in Nautilus

2017-01-31 Thread Siemen Baader
On Fri, Jan 27, 2017 at 9:11 PM, stepharong wrote: > I should tell you that I do not like it at all. > Hey students inside comments self means the class and outside the > instance! WTF? > Which behaviour do you no like, Stef? The current or the one we are discussing? > > I

Re: [Pharo-users] self in Nautilus

2017-01-27 Thread Siemen Baader
Hi, On Fri, Jan 27, 2017 at 4:09 PM, Denis Kudriashov wrote: > Hi Tudor. > > 2017-01-27 10:23 GMT+01:00 Tudor Girba : > >> > Is there a rationale why `self` in instance view does not raise an >> error or is nil? >> >> That is because you can write:

[Pharo-users] self in Nautilus

2017-01-27 Thread Siemen Baader
Hi all, in Nautilus, `self` is always the current class instance. This is great for coding class side methods because we can test code fragments live in the editor, but for instance side methods I have not seen the usefulness of it. At times it can even be confusing and cause errors since a

Re: [Pharo-users] self in Nautilus

2017-01-27 Thread Siemen Baader
Hi Tudor, On Fri, Jan 27, 2017 at 10:23 AM, Tudor Girba wrote: > > > > > Is there a rationale why `self` in instance view does not raise an error > or is nil? > > That is because you can write: self new and work with an instance. > ok. > > > And, more importantly, could

[Pharo-users] singleton trait

2017-01-19 Thread Siemen Baader
Is there a trait to quickly create singletons in Pharo, along the way of the Ruby Singleton mixin? https://ruby-doc.org/stdlib-1.9.3/libdoc/singleton/rdoc/Singleton.html (and ideally also observer/observable, which I am going to need next..) -- Siemen

Re: [Pharo-users] singleton trait

2017-01-19 Thread Siemen Baader
cyril.ferli...@gmail.com> > wrote: > > > > On 19/01/2017 11:23, Siemen Baader wrote: > >> Is there a trait to quickly create singletons in Pharo, along the way of > >> the Ruby Singleton mixin? > >> > >> https://ruby-doc.org/stdlib-1.9.3/libdoc/si

Re: [Pharo-users] singleton trait

2017-01-19 Thread Siemen Baader
On Thu, Jan 19, 2017 at 11:33 AM, Cyril Ferlicot D. < cyril.ferli...@gmail.com> wrote: > > You just need a class variable #UniqueInstance and those methods: > > current > "Can also be named #default or #instance" > ^ UniqueInstance > ifNil: [ UniqueInstance := self

Re: [Pharo-users] singleton trait

2017-01-19 Thread Siemen Baader
On Thu, Jan 19, 2017 at 3:51 PM, Siemen Baader <siemenbaa...@gmail.com> wrote: > > On Thu, Jan 19, 2017 at 11:33 AM, Cyril Ferlicot D. < > cyril.ferli...@gmail.com> wrote: > >> >> You just need a class variable #UniqueInstance and those methods: >> >

Re: [Pharo-users] Adopting someone else's image

2016-09-10 Thread Siemen Baader
Thanks. I found out that I had two unrelated problems. Spotter was one and not critical, and the reason I had errors with Monticello was that I had made the mistake to rename the .image file, so it didn't match the changes file anymore. Siemen -- View this message in context:

[Pharo-users] Adopting someone else's image

2016-09-09 Thread Siemen Baader
Hi, I am having a problem using an image that was saved by a different user on a different machine. I'm trying to get started with PharoJS and have downloaded the Pharo 4.0 image from https://pharojs.github.io/faq.html#demoEsug2016. When I load the image Spotter raises errors becasue it holds

Re: [Pharo-users] MOOC TOC cleanup

2016-11-09 Thread Siemen Baader
eph...@free.fr> wrote: > > > Le 3/11/16 à 18:05, Siemen Baader a écrit : > > Hi Stef, > > Sure. >> Let me know how I can help. >> I will forward your mail to christelle that manages the mooc for us >> > > Thanks. I'm looking forward to hear from

Re: [Pharo-users] MOOC TOC cleanup

2016-11-10 Thread Siemen Baader
Hi Offray, I'm not sure if this answers your question, but: the French and English subtitle files in .vtt and .srt format are already online in directories like http://rmod-pharo-mooc.lille.inria.fr/MOOC/Videos/W1/C019SD-W1-sous-titres-EN/ and similar. They are linked from the main page under

Re: [Pharo-users] MOOC TOC cleanup

2016-11-09 Thread Siemen Baader
On 10/11/2016, at 07.32, "Sven Van Caekenberghe-2 [via Smalltalk]" <ml-node+s1294792n4922444...@n4.nabble.com> wrote: > Wow, this is beautiful, well done ! Thanks, I'm glad you like it. I like your zinc docs ;) Siemen > > > On 10 Nov 2016, at 07:21, Siemen B

Re: [Pharo-users] MOOC TOC cleanup

2016-11-12 Thread Siemen Baader
Hi Stef, On Fri, Nov 11, 2016 at 10:44 PM, stepharo [via Smalltalk] < ml-node+s1294792n4922764...@n4.nabble.com> wrote: > > I have a question why the lecture do not have a video icon too? For > example for the first week. > Because now it gives the impression that we do not have videos for the >

[Pharo-users] MOOC TOC cleanup

2016-11-03 Thread Siemen Baader
Hi all, especially Luc, Stéphane and Damien, the Pharo MOOC course was fantastic and I use the archived material for reference quite a lot. It is here: https://www.fun-mooc.fr/courses/inria/41010/session01/b116d12e24ec484c984831440227ac15/ But - the English table of contents is in French, and

Re: [Pharo-users] MOOC TOC cleanup

2016-11-03 Thread Siemen Baader
Hi Stef, Sure. > Let me know how I can help. > I will forward your mail to christelle that manages the mooc for us > Thanks. I'm looking forward to hear from her. > Siemen > did you see the web portal > http://rmod-pharo-mooc.lille.inria.fr/MOOC/WebPortal/co/pharo.html (we > should add a

Re: [Pharo-users] seaside javascript builders

2016-12-10 Thread Siemen Baader
s it is easier to do a JSStream on: 'some js code that does what > you want' instead of wondering for ages how to do the same with the > Javascript classes, subclasses and methods. > > Look into the test packages for lots of examples. That helped me. > > Phil > > On Fri, Dec 9,

[Pharo-users] seaside javascript builders

2016-12-09 Thread Siemen Baader
Hi all, I'm confused about the limitations and intended use of Seaside's javascript builders. I can follow that we can do eg: "(html jQuery: 'div') remove" or "html javascript alert: 'hello'" within the "renderContentOn: html" methods, but how do I deal with logic and variables? How do I eg.

Re: [Pharo-users] seaside javascript builders

2016-12-09 Thread Siemen Baader
Thanks, I was unaware of the seaside list! cheers, Siemen On Fri, Dec 9, 2016 at 5:18 PM, Ben Coman <b...@openinworld.com> wrote: > > > On Fri, Dec 9, 2016 at 9:20 PM, Siemen Baader <siemenbaa...@gmail.com> > wrote: > >> Hi all, >> >> I'm co

[Pharo-users] making scroll smooth

2017-01-10 Thread Siemen Baader
Hi All, I'm used to and like the smooth scrolling of modern browsers and OS'es and miss it in Pharo. It as discrete scroll deltas; when I scroll it moves the window content by several pixels or not at all if the movement is below a certain threshold. How can I enable smooth scroll / set that

[Pharo-users] Google visibility?

2017-01-12 Thread Siemen Baader
Has anybody looked into SEO'ing any of the great documentation and archived questions on the mailing list? It strikes me that I often can't find the answer to questions I have on Google, but they are often answered in material that I can find when I look manually for some time or am pointed at it

Re: [Pharo-users] making scroll smooth

2017-01-13 Thread Siemen Baader
There must be a place that defines that scroll should happen by a line height, rather than continuously... Does anyone know where to look? -- Siemen

Re: [Pharo-users] Google visibility?

2017-01-13 Thread Siemen Baader
On Fri, Jan 13, 2017 at 11:14 AM, jtuc...@objektfabrik.de < jtuc...@objektfabrik.de> wrote: > To be honest, I think our answer doesn't really fit to the original post > ;-) > > It's like "once you are in front of the store, you'll know how to find > it!". ;-) > > So the topic of this thread is

Re: [Pharo-users] making scroll smooth

2017-01-11 Thread Siemen Baader
t;p...@highoctane.be> wrote: > Try this: > > WorldState MinCycleLapse: 16. > > Should make things better. > > Phil > > On Tue, Jan 10, 2017 at 5:40 PM, Siemen Baader <siemenbaa...@gmail.com> > wrote: > >> Hi All, >> >> I'm used to and lik

Re: [Pharo-users] understanding existing code

2017-01-07 Thread Siemen Baader
Thanks for all these tips and reflections. There are a number of things for me to try now. @Hilaire: I'll try try Calypso. There are indeed several things one could experiment with in making the important connections more visible in the development tools. I have also been thinking of a more

Re: [Pharo-users] understanding existing code

2017-01-06 Thread Siemen Baader
/agilevisualization.com/ > > Also RTUMLClassBuilder can be useful. > > http://forum.world.st/Addling-lines-to-RTUMLClassBuilder-td4876221.html > > > > Phil > > On Thu, Jan 5, 2017 at 8:24 PM, Siemen Baader <siemenbaa...@gmail.com> > wrote: > >> Hi Al

Re: [Pharo-users] understanding existing code

2017-01-06 Thread Siemen Baader
On Thu, Jan 5, 2017 at 9:33 PM, Dimitris Chloupis wrote: > After 5 years of using Pharo by far the best way to understand code is to > ask questions here. > > I have read and still read a fair amount of code, but in 50% of the cases > I have no clue what I am reading

[Pharo-users] diff'ing with metacello

2017-03-28 Thread Siemen Baader
Hi all, is there a tool to diff two Metacello versions with different baselines? I tried MetacelloBrowser ( http://www.squeaksource.com/@6xz1bzmNF75EduBA/vZ263dVA) but it does not install on Pharo 5.0. I need it to see what has changed when I install a new release of PharoJS and to bisect in

Re: [Pharo-users] diff'ing with metacello

2017-03-28 Thread Siemen Baader
eople must be doing it all the time, or...? cheers, Siemen > As a workaround, perhaps load one and then from Monticello, > "start" to merge the other from Monticello and you will see a diff between > them. > > cheers -ben > > On Tue, Mar 28, 2017 at 7:06 PM, S

Re: [Pharo-users] diff'ing with metacello

2017-03-28 Thread Siemen Baader
Sent from my iPhone On 28/03/2017, at 14.56, Ben Coman <b...@openinworld.com> wrote: > Can you provide a concrete case of two versions you want to compare? > cheers -ben > Sure! I'm away from the computer but will post one ASAP! > On Tue, Mar 28, 2017 at 8:51 PM, Siemen

Re: [Pharo-users] diff'ing with metacello

2017-03-30 Thread Siemen Baader
l operate on you" ^true! ! On Tue, Mar 28, 2017 at 2:56 PM, Ben Coman <b...@openinworld.com> wrote: > Can you provide a concrete case of two versions you want to compare? > cheers -ben > > On Tue, Mar 28, 2017 at 8:51 PM, Siemen Baader <siemenbaa...@gmail.com> > wrote: &g

Re: [Pharo-users] diff'ing with metacello

2017-03-31 Thread Siemen Baader
il.com> >> wrote: >>> >>> >>> 2017-03-30 16:42 GMT+02:00 Ben Coman <b...@openinworld.com>: >>>> On Thu, Mar 30, 2017 at 2:58 PM, Siemen Baader <siemenbaa...@gmail.com> >>>> wrote: >>>> > Below is a fileout of 'C

[Pharo-users] object serialization, STON & PharoJS

2017-07-16 Thread Siemen Baader
Hi all, I’m trying to transpile the STON class to JavaScript with PharoJS to use it in a client side web application. The goal is it to retrieve object(graphs) from the server and deserialize them in the frontend via xhr. But PharoJS doesn't support thisContext, I think that's a limitation of

Re: [Pharo-users] vested interest in PharoJS?

2017-06-22 Thread Siemen Baader
make". > Exactly. It would be cool if we could unite a few competent people with self-interest to help the project forward. I have this self-interest, but not the skills (or time to acquire them) to do it alone. Have tried ;) -- Siemen > > > On Wed, Jun 14, 2017 at 12:

Re: [Pharo-users] vested interest in PharoJS?

2017-06-22 Thread Siemen Baader
On Thu, Jun 15, 2017 at 7:03 PM, Brad Selfridge wrote: > I'm very interested in it as I'm programming in Node.js and Typescript as > we > speak. However, I so busy I'm having a hard time just keeping up with the > PharoJS progress. > Would you be able to use PharoJS in

Re: [Pharo-users] [Pharo-dev] vested interest in PharoJS?

2017-06-22 Thread Siemen Baader
alls > javascript functions which are OS-native functions. > > Norbert > > > Am 14.06.2017 um 11:46 schrieb Siemen Baader <siemenbaa...@gmail.com>: > > > > Hi all, > > > > Is anyone else interested in PharoJS and making it mature for their own >

[Pharo-users] vested interest in PharoJS?

2017-06-14 Thread Siemen Baader
Hi all, Is anyone else interested in PharoJS and making it mature for their own commercial mobile and single page web app (and node.js) development? I think it has a huge potential because it brings the browser runtime and many libraries and online services from the JS world to us Smalltalkers

[Pharo-users] Soup bug(fix)

2017-11-08 Thread Siemen Baader
Hi all, who maintains Soup, the HTML parser? Stef? It seems to auto-close (and ) tags when nested inside another element. I wrote this test that fails: testNestedButton "this works with nested tags instead of and when there is no enclosing at all. but here is auto-closed." "a does

Re: [Pharo-users] reading from a named pipe in Pharo

2018-05-07 Thread Siemen Baader
Wow, thanks for your help, Alistair! I'll try it out. cheers, Siemen On Sun, May 6, 2018 at 7:47 PM, Alistair Grant wrote: > Hi Siemen & Mariano, > > On 5 May 2018 at 16:26, Mariano Martinez Peck > wrote: > > Hi Siemen, > > > > You may want to

[Pharo-users] reading from a named pipe in Pharo

2018-05-05 Thread Siemen Baader
Hi, I'd like to use an external tool to edit HTML code and then store and version it in my Pharo image. I'd like to create a named pipe that the external application will save to, and then have Pharo watch for whenever the named pipe is written to and then execute code to handle the data from

Re: [Pharo-users] reading from a named pipe in Pharo

2018-05-05 Thread Siemen Baader
cess. You can read the > documentation as well as the unit tests for the pipes. > > Cheers, > > [1] https://github.com/marianopeck/OSSubprocess > > On Sat, May 5, 2018 at 8:29 AM, Siemen Baader <siemenbaa...@gmail.com> > wrote: > >> Hi, >> >> I'd like to use an e

Re: [Pharo-users] Raspberry Pi

2018-04-26 Thread Siemen Baader
t; > The Pi vm link is different: > http://files.pharo.org/vm/pharo-spur32/linux/armv6/latest.zip > > > > Never tried though ! > > Hth, > > Cedrick > > >> Le 26 avr. 2018 à 21:19, Siemen Baader <siemenbaa...@gmail.com> a écrit : >>

[Pharo-users] cancel changes in Nautilus broken on 6.1?

2018-02-09 Thread Siemen Baader
Hi all, I downloaded Pharo 6.1 for OSX and whenever I revert changes in Nautilus with CMD-L, the content is reverted and the orange dirty marker triangle disappears. But when I switch to a different method, Nautilus shows the 'Content has been modified. What do you want to do?' dialog, as it only

Re: [Pharo-users] cancel changes in Nautilus broken on 6.1?

2018-02-12 Thread Siemen Baader
haro 70. > Can you try to see how to address it? > Yes, I can try to look into it. I don't have any clear idea where to start other than browsing Nautilus code and perhaps uses of NautilusChanged, but perhaps it is not that hard to find. -- Siemen > > Stef > > On Fri, F

Re: [Pharo-users] [Iliad] raw HTML in Iliad

2018-02-13 Thread Siemen Baader
Thanks! On Tue, Feb 13, 2018 at 9:51 AM, Cyril Ferlicot <cyril.ferli...@gmail.com> wrote: > On Tue, Feb 13, 2018 at 9:20 AM, Siemen Baader <siemenbaa...@gmail.com> > wrote: > > Formulating the question helped me to find the solution after I posted: > > &g

[Pharo-users] [Iliad] raw HTML in Iliad

2018-02-13 Thread Siemen Baader
Hi all, is there a way to render raw HTML from Iliad widgets, or perhaps mustache templates? I'm interested in not using the builders always because I use an external web editor that generates plain HTML and that has some advantages in my workflow. Is it possible do it with Seaside & Reef

Re: [Pharo-users] cancel changes in Nautilus broken on 6.1?

2018-02-13 Thread Siemen Baader
Thanks for the tip! -- Siemen On Mon, Feb 12, 2018 at 11:34 PM, Ben Coman <b...@openinworld.com> wrote: > > > On 13 February 2018 at 01:57, Siemen Baader <siemenbaa...@gmail.com> > wrote: > >> Hi Stef, >> >> On Sat, Feb 10, 2018 at 6:22 PM, Stephan

Re: [Pharo-users] [Iliad] raw HTML in Iliad

2018-02-13 Thread Siemen Baader
Formulating the question helped me to find the solution after I posted: index ^ [ :e | e add: (ILRawHtmlElement new contents: 'hello world') ] :) cheers, Siemen On Tue, Feb 13, 2018 at 9:14 AM, Siemen Baader <siemenbaa...@gmail.com> wrote: > Hi all, > > is there a way to

Re: [Pharo-users] Status of Caffeine

2018-07-26 Thread Siemen Baader
an exception in code in a DOM callback like xhr completed or a click event? Does it pop up a real Squeak debugger and allows coding in the debugger like real smalltalk? Cheers, Siemen Sent from my iPhone > On 20 Jul 2018, at 11.27, Siemen Baader wrote: > > Ok, Thanks! > &

Re: [Pharo-users] Pillar Book Tester

2018-08-05 Thread Siemen Baader
Very cool, this should be very useful to keep documentation up-to-date. Good job! cheers Siemen On Tue, Jul 31, 2018 at 11:25 AM Quentin DUCASSE (CI_2020) < quentin.duca...@ensta-bretagne.org> wrote: > Hello everyone! > > I am currently in an internship within the RMoD team and would like to >

Re: [Pharo-users] Status of Caffeine

2018-07-20 Thread Siemen Baader
Ok, Thanks! :) Siemen Sent from my iPhone > On 20 Jul 2018, at 10.08, Craig Latta wrote: > > >> What about the UI lag and the occasional spinner that blocks the UI, >> is this related to the debugging protocol (I see that the IDEs are >> loaded in iframes) that will go away when run from

Re: [Pharo-users] Status of Caffeine

2018-07-19 Thread Siemen Baader
Thanks! My idea was to use it in a similar manner to e.g. Angular, with a full app being loaded into the browser which communicates with a backend API. But this requires the load time to be acceptable.. another direction would be to embed it in a phone gap app and use it to build DOM-based

[Pharo-users] Status of Caffeine

2018-07-19 Thread Siemen Baader
What is the status of Caffeine now - is it production-ready with Pharo, and how large is a minimal (not development) image with everything required to run a production system - i.e. what would be the load time of a Caffeine web app? Thanks, Siemen Sent from my iPhone

Re: [Pharo-users] Status of Caffeine

2018-07-19 Thread Siemen Baader
Hi Craig, Great, thanks! The minimal example seems to load fast enough. Do you think there is a potential to slim it down even further for a production system that uses the DOM as its UI, ie remove morphic and others and use the image in headless mode? Thanks for the offer to work together on

Re: [Pharo-users] Status of Caffeine

2018-07-19 Thread Siemen Baader
Very good! What about the UI lag and the occasional spinner that blocks the UI, is this related to the debugging protocol (I see that the IDEs are loaded in iframes) that will go away when run from local, or is this something that can be optimized away? Thanks for the details so far! Siemen

Re: [Pharo-users] cancel changes in Nautilus broken on 6.1?

2018-03-08 Thread Siemen Baader
The regression happens between Nautilus-TheIntegrator1352.mcz and Nautilus-TheIntegrator1351.mcz. Pharo 6.0 uses Nautilus-TheIntegrator1366.mcz I'll look more to find the actual code that breaks. -- Siemen On Mon, Feb 12, 2018 at 6:57 PM, Siemen Baader <siemenbaa...@gmail.com> wrote:

Re: [Pharo-users] cancel changes in Nautilus broken on 6.1?

2018-03-09 Thread Siemen Baader
I suppose I can get the builds from https://ci.inria.fr/pharo/ ? cheers, Siemen > > cheers -ben > > On 9 March 2018 at 14:30, Siemen Baader <siemenbaa...@gmail.com> wrote: > >> The regression happens between Nautilus-TheIntegrator1352.mcz and >> Nautilus-TheInte

Re: [Pharo-users] casting to subclass

2018-03-06 Thread Siemen Baader
=10.1.1.31.4708 but no Pharo implementation. Was it available in Pharo at some point? cheers Siemen Cheers, > > Hernán > > 2018-03-02 15:45 GMT-03:00 Siemen Baader <siemenbaa...@gmail.com>: > > Hi all, > > > > it seems like we cannot cast the class of object to its su

Re: [Pharo-users] casting to subclass

2018-03-06 Thread Siemen Baader
On Fri, Mar 2, 2018 at 9:08 PM, Stephan Eggermont <step...@stack.nl> wrote: > Siemen Baader <siemenbaa...@gmail.com> wrote: > > > > What else could I do, apart from removing the element from its tree, > > creating a new (subclass) instance and then putting this el

Re: [Pharo-users] casting to subclass

2018-03-06 Thread Siemen Baader
of `ILHTMLBuilderElement` will know what to look > and what to omit from the `XMLElement` parameter. > > Regards! > > Esteban A. Maringolo > > > 2018-03-02 17:08 GMT-03:00 Stephan Eggermont <step...@stack.nl>: > > Siemen Baader <siemenbaa...@gmail.com> wrote: &

[Pharo-users] casting to subclass

2018-03-02 Thread Siemen Baader
Hi all, it seems like we cannot cast the class of object to its subclass if that subclass has had new instance variables added to it: http://forum.world.st/changing-the-class-of-an-existing-object-to-a-subclass-td4239041.html But I (think) I need it - I'm transforming a DOM tree from

[Pharo-users] Raspberry Pi

2018-04-26 Thread Siemen Baader
Hi, I'm trying to run a headless Pharo 6.1 server on a Raspberry Pi following the instructions on https://medium.com/concerning-pharo/pharo-pi-9eef257b6a21. The latest vm I can download is from 14 dec 2017 (see http://files.pharo.org/vm/pharoS/raspbian/) and only works with Pharo 4.0. Are Pharo

[Pharo-users] Seaside or Iliad for business applications?

2019-01-23 Thread Siemen Baader
Hi, I’m a very happy Iliad user but I’m wondering if it would make sense to switch to Seaside for commercial development since it has a larger user base. I have only used Seaside briefly to try it out and found I was more happy with Iliad back then, but now I’d like to hear your input. Especially

[Pharo-users] Iliad & disbled JS

2019-02-22 Thread Siemen Baader
Hi, has support for disabled JavaScript been removed from Iliad? When I do $ curl http://localhost:/examples/counters I get [...] 0++ [...] So it works only with JS enabled. It would be nice to be able to make requests from non-JS-capable clients such as ZnEasy for testing purposes. Can

Re: [Pharo-users] Seaside or Iliad for business applications?

2019-02-01 Thread Siemen Baader
Thanks to you both, Cyril and Esteban! On 23 Jan 2019, at 14:22, Cyril Ferlicot wrote: You can use JQuery with ajax to refresh part of the page. You can check for example this component in MDL that is working with ajax: https://mdl.ferlicot.fr/mdl/Widgets/DatePicker Nice demo! Ok, so it is

[Pharo-users] Iliad on Pharo 7.0

2019-02-05 Thread Siemen Baader
Hi, is anyone planning to port Iliad to Pharo 7.0? The Grease package seams to have been removed from 7.0 so Iliad does not work out of the box. cheers, Siemen

[Pharo-users] recovering non-ascii code in 6.1

2019-11-15 Thread Siemen Baader
Hi, I have a broken 6.1 image and uncommited code with non-ascii characters in it. When I drag the .changes file onto a new 6.1 image it won't import due to the non-ascii code, but I can rename the .changes file so it matches the new image's filename and import individual code changes (also with

[Pharo-users] transactional saving of images

2019-11-15 Thread Siemen Baader
Hi, I have had a few occasions where I broke an image because I either ran out of disk space or had an endless loop that grew my image endlessly (I think). But why does Pharo not save the image & .changes file in hidden files named eg ~Pharo.image while it saves? Then it can rename them when

Re: [Pharo-users] Zinc & IdentityServer4

2019-11-15 Thread Siemen Baader
;> you have to really understand how it works in order to set it up and debug >> it. You have to start by reading a couple of good tutorials. >> >> I am not using this, but others are, so maybe they can help you further. >> >> Sven >> >> >

Re: [Pharo-users] Zinc & IdentityServer4

2019-11-04 Thread Siemen Baader
using this, but others are, so maybe they can help you further. > > Sven > > > On 4 Nov 2019, at 10:37, Siemen Baader wrote: > > > > Hi, > > > > I’m trying to log a registered user into a webshop (https://mad.coop.dk) > using Zinc, but it uses IdentitySer

[Pharo-users] Zinc & IdentityServer4

2019-11-04 Thread Siemen Baader
Hi, I’m trying to log a registered user into a webshop (https://mad.coop.dk) using Zinc, but it uses IdentityServer4 ( https://github.com/IdentityServer/IdentityServer4) for authentication (at https://accounts.cl.coop.dk/). So there are more steps involved than just submitting credentials.

[Pharo-users] pharo books as audiobooks

2020-08-28 Thread Siemen Baader
Hi all, I'm interested in listening to the pharo books as audiobooks, away from my desk. I read them to learn higher level concepts and can get back to the code boxes later to look up the details, so I'm not too worried about how to exactly convert the code boxes to audio. One way to enable this

Re: [Pharo-users] [Ann] Workshop: IndieWeb with pocket infrastructures

2020-08-29 Thread Siemen Baader
> On 29 Aug 2020, at 02.07, Offray Vladimir Luna Cárdenas > wrote: > > Hi all, > > Due to the confinement in the pandemic, our forms of telepresence become > more important and many suddenly got even more immersed into an > Oligopoly cyberspace (Zoom, Google, Facebook, Twitter, Apple,

Re: [Pharo-users] pharo books as audiobooks

2020-08-29 Thread Siemen Baader
Hi Marek, Thanks for the pointer. This is useful and interesting, but I wasn't clear enough - I need the audio on my mobile phone and it needs to bookmark where I left off, like audio book players and podcast apps do. Pocket has a very nice workflow for this because I can bookmark a web site in

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

2022-02-26 Thread Siemen Baader
Hi Kasper, perhaps not what you are asking, but I find that this kind of nesting happens to me when parsing serialized data (web page sources or JSON as in your example). For me, the root cause of the problem is that these data structures are not represented by real classes in my code. I often

[Pharo-users] caching proxy for domain data

2023-11-02 Thread Siemen Baader
Hi, I'm looking for something to hold a cached version of a parsed domain model, typically from large HTML or CSV files on disk, parsed with XMLHTTPParser or NeoCSV. Occasionally also JSON and HTML from a web service. The files are frequently updated, so it should check for this at least on disk

[Pharo-users] Pharo CMS

2022-08-26 Thread Siemen Baader
Hi everyone, I was looking for a Pharo CMS. I got the Pier one-click image from www.piercms.com, but it seems there is a hardcoded path in the image. I get the error message: Pharo cannot write to the changes file named

[Pharo-users] mapping CamelCase to

2022-10-22 Thread Siemen Baader
Hi, I'm looking for an elegant way to convert class names with optional namespace prefixes to names for custom html elements. MYCustomElement and CustomElement to and There must be an elegant way to do it with regex or inject, but I'm embarrassed to say I can't get my head around it. I can

[Pharo-users] Re: mapping CamelCase to

2022-10-24 Thread Siemen Baader
a new word. I do not know of anyway to express that in > smalltalk regular expressions. > > > > So I believe this is one of the cases where you add an extension method > to string which does the job using plain coding. > > > > Best, > > > > Kasper > &g

[Pharo-users] Re: mapping CamelCase to

2022-11-05 Thread Siemen Baader
d you decide to solve it with > a regular expression. Now you have TWO problems. > I was not, but I like it :) > > MYWeirdName and MyWeirdName both map to my-weird-name, > but perhaps you are happy with that. > Indeed - that is not a problem in my situation. cheers Siemen &

[Pharo-users] searching for pharo code on disk

2023-03-21 Thread Siemen Baader
Hi, I'm looking for some code I wrote maybe 7 years ago. A web scraper that collected data from a specific web shop. It must be somewhere in my home dir in an image, perhaps Pharo 4.0, or in .mcz files stored by Monticello. What would be a good way to search for it? I tried `grep -r --include

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

2023-08-12 Thread Siemen Baader
On Fri, Jul 14, 2023 at 4:21 AM wrote: > TheProjectProject > is the GTD component of my Dynabook project > . Behind it is about 20 years > of work incorporating ideas from countless productivity

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

2023-06-26 Thread Siemen Baader
On Mon, Jun 26, 2023 at 2:36 PM Craig Johnson wrote: > > I'm in CAT time, which is the same as CEST at the moment. Let's wait a > bit to see if others jump-in. > Great! I'm curious to hear what has happened to these older projects discussed in the thread.

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

2023-06-26 Thread Siemen Baader
Hi Craig, On Mon, Jun 26, 2023 at 12:48 PM Craig Johnson wrote: > > I'd be interested in joining you on this journey. I'm a complete novice > to Pharo, but will be willing to help where I can. > that's great to hear! Lets see what people on this list chips in with to build on top of, and then

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

2023-07-01 Thread Siemen Baader
Hi Offray, that is very interesting material, and well described. No, it doesn't have to be OrgMode per se, I just wanted to make use of something that already can support a GTD workflow and implement something on top of it gradually. I look deeper into this - thanks a lot! cheers, Siemen