Re: [Pharo-users] [ANN] Round 4 Results Are In

2020-02-29 Thread p...@highoctane.be
Nice! ᐧ On Sat, Feb 29, 2020 at 3:59 PM Richard Kenneth Eng < horrido.hobb...@gmail.com> wrote: > https://jrmpc.ca/2020/02/29/round-4-1-leading-team/ > > Next week's final round will be more of the same: > https://jrmpc.ca/2020/02/29/round-5-challenge/. But the competition map > will be considera

Re: [Pharo-users] can I somehow test the contents of a package

2020-02-14 Thread p...@highoctane.be
rely different context. I have not downloaded it, > because I think there is something suspicious about it. Has anyone else any > suspicions? Has someone hacked into my e-mail, or is it this list that has > been hacked? Or am I just neurotic? > > > > Peter Kenny > >

Re: [Pharo-users] can I somehow test the contents of a package

2020-02-14 Thread p...@highoctane.be
y > > -Original Message- > From: Pharo-users On Behalf Of > p...@highoctane.be > Sent: 14 February 2020 18:45 > To: pharo-users@lists.pharo.org > Subject: Re: [Pharo-users] can I somehow test the contents of a package > > I have made some e

Re: [Pharo-users] [Pharo-dev] [ANN] uFFI Booklet v1.0

2020-02-12 Thread p...@highoctane.be
Nice. Are callbacks going to be detailed in a future version? They are pretty powerful as one can write a pharo callback to a c method and for debugging, it is golden. Phil ᐧ On Wed, Feb 12, 2020 at 6:02 PM Stéphane Ducasse wrote: > I’m preparing the website :) > > On 12 Feb 2020, at 10:30, G

Re: [Pharo-users] [FOSDEM] Grafoscopio

2020-02-07 Thread p...@highoctane.be
Same for me! Phil On Fri, 7 Feb 2020, 17:41 Offray Vladimir Luna Cárdenas, < offray.l...@mutabit.com> wrote: > Thanks a lot Santiago! You did a pretty good job representing the > community and is nice to have you also in the community channels. > > I will shared on my networks. > > Offray > > On

Re: [Pharo-users] About "it's not pharo but smalltalk"

2020-02-06 Thread p...@highoctane.be
This is tiring. I like reading those blog posts. And Pharo is not exactly Smalltalk, so what? Syntax close enough, principles close enough. What is there to win in arguing about this point? I have been not using Pharo for a while commercially, because, well, Pharo is a hard sell to companies.

Re: [Pharo-users] Grafoscopio accepted at FOSDEM :-)... Now looking for travel funds :-/

2020-01-14 Thread p...@highoctane.be
Can help too. Need correct version to demo as what I do have is old. Phil On Tue, 14 Jan 2020, 13:49 Santiago Bragagnolo, < santiagobragagn...@gmail.com> wrote: > I am in. I am now organizing the stand. I can participate in a skype (or > what-ever-technology) to help to organize the talk. What

Re: [Pharo-users] BlockClosure

2019-10-23 Thread p...@highoctane.be
On Wed, 23 Oct 2019, 14:25 Kasper Osterbye, wrote: > On Wed, Oct 23, 2019 at 2:21 PM p...@highoctane.be > wrote: > >> It is like Object>>in: aBlock no? >> > Yes. > > But because it is an operator, you can write "obj => block => block => > bl

Re: [Pharo-users] BlockClosure

2019-10-23 Thread p...@highoctane.be
It is like Object>>in: aBlock no? On Wed, 23 Oct 2019, 10:27 Kasper Osterbye, wrote: > You can define a method "=>" in Object as: > > => aBlock > ^ aBlock value: self > > That would allow you to write expressions like this: > 7 => [ :x | x+3 ] => [ :x| x*3 ], > > if you further define "=>" in

Re: [Pharo-users] PharoADO

2019-10-21 Thread p...@highoctane.be
A question: is PharoCOM and PharoWin32 usable in Pharo 32 bits and 64 bits on Windows or is it a 32 bit thing? Phil On Tue, Oct 15, 2019 at 9:36 PM eftomi wrote: > Dear all, > > A working prototype of PharoADO is now available at > https://github.com/eftomi/pharo-ado. I'd be glad if you can fin

Re: [Pharo-users] [ANN] HeySql v1.1

2019-10-21 Thread p...@highoctane.be
Looks interesting. I'll give it a shot. Same feel about ORMs in general here, so, let's see how it goes. Phil On Sat, Oct 19, 2019 at 6:58 PM Petter wrote: > Hi, I have just released HeySql, version 1.1 - a database orm for > Postgresql. > > - Support for migrations > - Generation of migrati

Re: [Pharo-users] [Pharo-dev] [OT] (slightly) What makes other dialects "enjoyable" for you? (WAS: difference between double dispatch...)

2019-04-11 Thread p...@highoctane.be
I second that. A locked up Pharo IDE is infuriating. A dead/broken keyboard is proof of this. I have been using Jetbrains IDEA for a while now and love the embedded terminal, the Ctrl-Tab for tools and Ctrl-f12 for jumping to a method + the shift shift global search (kind of spotter) that matches

Re: [Pharo-users] How exactly is "share repositories between images" supposed to work without tripping each other up?

2019-03-06 Thread p...@highoctane.be
And then the Pharo launcher folder suddenly appears as a 20GB folder... Same league as a Maven .m2, albeit with a messier structure, full of copies all over the place. Is Cargo going to help us there? Phil On Wed, Mar 6, 2019 at 5:18 PM Sean P. DeNigris wrote: > Tim Mackinnon wrote > > how

Re: [Pharo-users] Why can't a Bag answer as a dictionary?

2019-03-06 Thread p...@highoctane.be
And when asking the object: #(1 2 4 5 6 7 2 1 4 3) asBag isDictionary we get false. So, not, not a dictionary. I still have been using #valuesAndCounts to get the dictionary out of a bag on several occasions. And is useful indeed. #(1 2 4 5 6 7 2 1 4 3) asBag occurrencesOf: 2 and #(1 2 4 5

Re: [Pharo-users] How do you avoid loading master code which is indirectly referenced by a version in the baseline?

2019-02-19 Thread p...@highoctane.be
Same boat here. Phil On Tue, Feb 19, 2019, 13:05 Tim Mackinnon Hi Sabine - you raise an important point, and I am interested in us > getting better answers to this too. Hopefully Dale see’s this and is > thinking about this in Rowen. Repeatable loading is an important enterprise > feature. > > T

Re: [Pharo-users] how to rewrite this to use a stream

2018-12-15 Thread p...@highoctane.be
Thx for those reviews. And interesting paper. Phil On Sat, Dec 15, 2018, 04:20 Richard O'Keefe Starting from the top:\ > (0) It's not *wrong* to start a selector with a capital letter, but > it is certainly unusual. > (1) Intention-revealing names are good. That's why this name is bad. >

Re: [Pharo-users] can I avoid the nested loops

2018-12-04 Thread p...@highoctane.be
ing >> point the length and the width >> > > Use Spotter to bring up the System Browser on the Rectangle class. > Then right-click >> Class-refs > to look at how the class is used directly to create new instances. > > cheers -ben > > > >> >&g

Re: [Pharo-users] can I avoid the nested loops

2018-12-04 Thread p...@highoctane.be
Use Rectangle class and intersect: method? On Tue, Dec 4, 2018 at 5:07 PM Roelof Wobben wrote: > Hello, > > For adventofCode I had to write some code that calculates the overlap that > multiple rectangles have. > > Fo far I have it working for 1 rectangle but I do not like the code > because

Re: [Pharo-users] UFFI and opaque(ish) types

2018-12-03 Thread p...@highoctane.be
> > https://clang.llvm.org/docs/PCHInternals.html#declarations-block > > > > On Sun, Dec 02, 2018 at 04:41:38PM +0100, p...@highoctane.be wrote: > > No, but what about FFIExternalPackedStructureTest and FFITestStructure ? > > > > Never tried with a typedef in the

Re: [Pharo-users] can I improve this

2018-12-02 Thread p...@highoctane.be
Also, given the time that some people solve the puzzle, doing it too nice is actually not the best use of time in AoC. Now, I'll try to solve quick and this will for sure lead to interesting things in Pharo. >From Reddit, people solve it quick then make it nice. Phil On Mon, Dec 3, 2018, 03:45

Re: [Pharo-users] UFFI and opaque(ish) types

2018-12-02 Thread p...@highoctane.be
example of > actually retrieving a structure member such as "typeA" in my example, my > apologies and please let me know where it is. > > Thanks again, > Alistair > > > On Fri, 30 Nov 2018 at 23:46, Esteban Lorenzano > wrote: > > > > On 30 Nov 20

Re: [Pharo-users] My Keynote at the Salta Conference

2018-11-18 Thread p...@highoctane.be
A good way to do this is to align it with Advent of Code 2018. AoC is actually full of interesting challenges and one can do private leaderboards. This will also put Pharo on the AoC map/subreddit where challenges are discussed. Phil On Sun, Nov 18, 2018, 15:29 Richard Kenneth Eng Some of you

Re: [Pharo-users] Pharo for PWAs and Web Push Notifications

2018-10-23 Thread p...@highoctane.be
Last spam bit: https://www.youtube.com/watch?v=iHqqUoqvYx4 On Tue, Oct 23, 2018 at 11:32 AM Rafael Luque wrote: > Hi all, > > I'm interested in developing progressive web applications (PWA) [1] in > Pharo, so I'd like to know if anyone has been involved in such kind of task > before and could s

Re: [Pharo-users] Pharo for PWAs and Web Push Notifications

2018-10-23 Thread p...@highoctane.be
https://firebase.google.com/docs/hosting/ has some more info on PWAs On Tue, Oct 23, 2018 at 11:32 AM Rafael Luque wrote: > Hi all, > > I'm interested in developing progressive web applications (PWA) [1] in > Pharo, so I'd like to know if anyone has been involved in such kind of task > before an

Re: [Pharo-users] Pharo for PWAs and Web Push Notifications

2018-10-23 Thread p...@highoctane.be
On Tue, Oct 23, 2018 at 11:32 AM Rafael Luque wrote: > Hi all, > > I'm interested in developing progressive web applications (PWA) [1] in > Pharo, so I'd like to know if anyone has been involved in such kind of task > before and could share his experiences. > The best thing I used for such stuff

Re: [Pharo-users] ZnClient 403 but 200 in Firefox

2018-10-10 Thread p...@highoctane.be
Works for me in a 5.0 Did this c :=ZnClient new systemPolicy; beOneShot; accept: ZnMimeType textPlain; timeout: 6000; url: 'http://ifconfig.me/ip'; yourself. c request headers at: 'User-Agent' put: 'Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0

Re: [Pharo-users] Windows installation broken?

2018-06-18 Thread p...@highoctane.be
I am developing on Windows and using the launcher. Also on Linux and macOS. In a corp environment, Windows rules. So make it work there if you want any traction. The laucher now works nicely on Windows. But the files are not the right ones on the download page. So fixing that will go a long

Re: [Pharo-users] Windows installation broken?

2018-06-17 Thread p...@highoctane.be
Install for the msi on the CI. https://ci.inria.fr/pharo-ci-jenkins2/job/PharoLauncher/ On Sun, Jun 17, 2018 at 7:02 PM PBKResearch wrote: > Tried ‘Run as administrator’ – same result. Also tried to uninstall > launcher, both by double-clicking ‘uninstall.exe’ and via Windows settings > menu. N

Re: [Pharo-users] Windows installation broken?

2018-06-17 Thread p...@highoctane.be
The current website shows the wrong link, the installer for the bleeding edge is the wrong one in files. The situation on the Windows front is very very bad and not really improving. That being said, the installer on the CI is the right one and works. so, steal the installer from here: https://ci

Re: [Pharo-users] Code completion in Pharo?

2018-05-26 Thread p...@highoctane.be
Try Cmd-q or Ctrl-q ( and right alt click on Windows). Spotter also has suffixes like #im #cl #sen to be put after a few keystrokes. Spotter: shift-enter (who knows). Phil On Sat, May 26, 2018, 22:16 Tim Mackinnon wrote: > That’s exactly the exploratory attitude we like to see... > > I think

Re: [Pharo-users] Showcasing Pharo, Roassal and Grafoscopio at re:publica 2018

2018-05-06 Thread p...@highoctane.be
Offray, On Sun, May 6, 2018 at 1:14 PM, Offray Vladimir Luna Cárdenas < offray.l...@mutabit.com> wrote: > Hi Sean, > > This was a crazy week! Lot of stuff happening, but the important was > getting the people network stronger by meeting again, talking, drinking, > dancing, besides all talks, wor

Re: [Pharo-users] Showcasing Pharo, Roassal and Grafoscopio at re:publica 2018

2018-05-06 Thread p...@highoctane.be
On Sun, May 6, 2018 at 1:14 PM, Offray Vladimir Luna Cárdenas < offray.l...@mutabit.com> wrote: > Hi Sean, > > This was a crazy week! Lot of stuff happening, but the important was > getting the people network stronger by meeting again, talking, drinking, > dancing, besides all talks, workshops and

Re: [Pharo-users] Showcasing Pharo, Roassal and Grafoscopio at re:publica 2018

2018-05-06 Thread p...@highoctane.be
On Sun, May 6, 2018 at 2:34 PM, Offray Vladimir Luna Cárdenas < offray.l...@mutabit.com> wrote: > > > On 06/05/18 07:16, p...@highoctane.be wrote: > > > > > I actually restarted the loading process and then, magic, no more error. > > Seems like a known probl

Re: [Pharo-users] Showcasing Pharo, Roassal and Grafoscopio at re:publica 2018

2018-05-06 Thread p...@highoctane.be
Hi Offray, On Sun, May 6, 2018 at 1:47 PM, Offray Vladimir Luna Cárdenas < offray.l...@mutabit.com> wrote: > Hi Phil, > > On 27/04/18 03:02, p...@highoctane.be wrote: > > > On Thu, Apr 26, 2018 at 3:57 PM, Offray Vladimir Luna Cárdenas < > offray.l...@mutabit.com>

Re: [Pharo-users] How to LAN feature

2018-05-06 Thread p...@highoctane.be
On Sun, May 6, 2018 at 1:31 PM, Norbert Hartl wrote: > If it is on a single network this should be doable by using UDP broadcast > announcements. The share server can announce some information and its IP in > a UDP packet being broadcasted. Every client receives that and then knows > the address

Re: [Pharo-users] Showcasing Pharo, Roassal and Grafoscopio at re:publica 2018

2018-05-06 Thread p...@highoctane.be
On Sun, May 6, 2018 at 1:14 PM, Offray Vladimir Luna Cárdenas < offray.l...@mutabit.com> wrote: > Hi Sean, > > This was a crazy week! Lot of stuff happening, but the important was > getting the people network stronger by meeting again, talking, drinking, > dancing, besides all talks, workshops and

[Pharo-users] Pharo Laucher > Copy and subfolders

2018-05-02 Thread p...@highoctane.be
In the Pharo Launcher (Windows 19 here), I do a copy of an existing "image" (actually an entry in the right pane). The copy copies everything which is at the root and the subfolders but the subfolders end up being empty (apparently pharo-local and github-cache included). That's pretty annoying an

Re: [Pharo-users] Pharo 7 image, some more size reducation

2018-05-01 Thread p...@highoctane.be
On Tue, May 1, 2018 at 9:35 AM, Hilaire wrote: > I would love to be able to select another palette than the existing one > for figures and points etc. > >> Something somewhat more subtle instead of 255,255,0 variations. >> > > For what kind of usage will you want to switch palette? First these

Re: [Pharo-users] Pharo 7 image, some more size reducation

2018-04-29 Thread p...@highoctane.be
On Sun, Apr 29, 2018 at 10:35 AM, Hilaire wrote: > Le 28/04/2018 à 12:11, p...@highoctane.be a écrit : > >> >> Very interesting to read that code. (There is a typo in workstation at >> one point). >> > Thanks, fixed. > >> >> >> >&

Re: [Pharo-users] Pharo 7 image, some more size reducation

2018-04-28 Thread p...@highoctane.be
On Sat, Apr 28, 2018 at 11:16 AM, Hilaire wrote: > Hi, > > Pharo7 has proven to be a reliable host for Dr. Geo, and thank you for > your advices and helps. In the past weeks several screenshots were posted > on DrGeo twitter, all based on P7 built. Many notable tools or frameworks > like Tonel,

Re: [Pharo-users] Showcasing Pharo, Roassal and Grafoscopio at re:publica 2018

2018-04-27 Thread p...@highoctane.be
On Thu, Apr 26, 2018 at 3:57 PM, Offray Vladimir Luna Cárdenas < offray.l...@mutabit.com> wrote: > Hi, > > I will be showcasing Pharo, Roassal and Grafoscopio at re:publica 2018, > next week. As you may know, re:publica[2] is one of the most important > and visible media & digital culture conventi

Re: [Pharo-users] treemap of memory use for an object?

2018-04-23 Thread p...@highoctane.be
I do.not know about variable sizes but I've made a treemap of database table size grouped by some grouping. I'll fetch the code and post it when home. Phil On Mon, Apr 23, 2018, 19:42 PAUL DEBRUICKER wrote: > Hi, > > With Roassal is it possible to make a treemap ( > https://en.wikipedia.org/wi

Re: [Pharo-users] C struct in 32 bits vs 64 bits VM

2018-04-19 Thread p...@highoctane.be
A C long is guaranteed to be at least 32 bits in size. long long is guaranteed to be 64 bits. int depends on the platform. Phil On Thu, Apr 19, 2018 at 10:30 AM, Andres Valloud < avall...@smalltalk.comcastbiz.net> wrote: > The relevant spec does not state 'long' is of any particular size. > >

Re: [Pharo-users] C struct in 32 bits vs 64 bits VM

2018-04-19 Thread p...@highoctane.be
On Thu, Apr 19, 2018 at 10:32 AM, Thierry Goubier wrote: > > > 2018-04-19 10:24 GMT+02:00 Serge Stinckwich : > >> >> >> On Thu, Apr 19, 2018 at 9:13 AM, Serge Stinckwich < >> serge.stinckw...@gmail.com> wrote: >> >>> I try to understand differences between 32 bits and 64 bits FFI support >>> for

Re: [Pharo-users] Pharo Launcher

2018-04-15 Thread p...@highoctane.be
Go to http://files.pharo.org/pharo-launcher/bleedingEdge/ Install using the MSI, the laucher should go into %APPDATA% and images/vms to %DOCUMENTS%/Pharo/... This is the observed behavior of that new version. Older versions worked differently on Windows 10. Best, Phil On Mon, Apr 16, 2018 at

Re: [Pharo-users] Pharo Launcher

2018-04-15 Thread p...@highoctane.be
Install the bleeding edge thing, it works for me on win 10. I also noticed that the launcher runs images with VMs that do have a weird management of cursors in the dark themes, it seems that there the masks are not used properly and so, the dark arrow has no white border making it impossible to se

Re: [Pharo-users] Where do we go now ?

2018-04-13 Thread p...@highoctane.be
A somewhat unique name makes it easier to google for it (like Roassal Pharo, or DeepTraverser Pharo, or Zinc Pharo). These will give us hits that are relevant. Try System Browser, Inspector... And Apple has worked with NSObject and stuff like that without too much trouble (at a much larger scale

Re: [Pharo-users] Where do we go now ?

2018-04-13 Thread p...@highoctane.be
much as I'd like. I have found that the real issues show up with cases I face in such projects. Phil On Fri, Apr 13, 2018 at 11:39 AM, Alistair Grant wrote: > On 13 April 2018 at 11:04, Sven Van Caekenberghe wrote: > > > > > >> On 13 Apr 2018, at 08:43, p...@hig

Re: [Pharo-users] Where do we go now ?

2018-04-12 Thread p...@highoctane.be
It is true that there are many things in there. New tools have to be finished before the old ones can be removed (there was a time where refactorings were not in Calypso). But for a real project, one is settling for a version and a toolset. I am not really keen to migrate Pharo projects from one

Re: [Pharo-users] Slower

2018-04-05 Thread p...@highoctane.be
On Thu, Apr 5, 2018, 16:09 Henrik Sperre Johansen < henrik.s.johan...@veloxit.no> wrote: > HilaireFernandes wrote > > After some more investigation, I think it is not the greated bottleneck. > > > > When I render points not as discs but as Square, Athens is happy. I > > guess the Cairo way of doin

Re: [Pharo-users] Yet another Pharo in docker

2018-03-22 Thread p...@highoctane.be
I am currently looking into deploying Pharo in Kubernetes. Not the same as Docker but quite close. Phil On Thu, Mar 22, 2018, 17:14 Sean P. DeNigris wrote: > Marcus Denker-4 wrote > > I would like to coordinate to have something official in April. > > As you investigate this, check out the bar

Re: [Pharo-users] Please rejoin Discord

2018-03-10 Thread p...@highoctane.be
Same here, no more admin On Sat, Mar 10, 2018 at 12:15 PM, Clément Bera wrote: > I think the roles got changed I am no longer admin (Note that it does not > really matter since I did not do much admin work but still) > > On Sat, Mar 10, 2018 at 11:48 AM, Dimitris Chloupis > wrote: > >> Hey guys

Re: [Pharo-users] Pharo IDE - change mouse cursor color/size

2018-01-30 Thread p...@highoctane.be
sing proper tools ] > >> > >> > On 29 Jan 2018, at 21:17, Stephane Ducasse > wrote: > >> > > >> > Hi phil > >> > > >> > Yes we want to kill all the VM logic related to events because IT GETS > >> > ON OUR NERVES. &g

Re: [Pharo-users] New booklets organisation and new booklet

2018-01-30 Thread p...@highoctane.be
ls > > and playing well with others, can be a strong point of advocacy about > what > > is possible within this ecosystem, tech and community for a wider > audience > > beyond programmers, like kids, school teachers, journalist, hacktivist, > > librarians, and so on.

Re: [Pharo-users] Pharo IDE - change mouse cursor color/size

2018-01-30 Thread p...@highoctane.be
On Tue, Jan 30, 2018 at 9:50 AM, Esteban Lorenzano wrote: > > > > On 30 Jan 2018, at 09:46, K K Subbu wrote: > > > > On Tuesday 30 January 2018 01:06 PM, Norbert Hartl wrote: > >> Am 30.01.2018 um 08:26 schrieb "p...@highoctane.be p...@highoctane.be>&q

Re: [Pharo-users] Pharo IDE - change mouse cursor color/size

2018-01-29 Thread p...@highoctane.be
Hi phil > > > > > > Yes we want to kill all the VM logic related to events because IT GETS > > > ON OUR NERVES. > > > Kill them all. Esteban told me that he is super upset by all the event > > > / screen logic and that he is looking at ronie'

Re: [Pharo-users] Pharo IDE - change mouse cursor color/size

2018-01-29 Thread p...@highoctane.be
ic and that he is looking at ronie' changes. > Stef > > On Mon, Jan 29, 2018 at 8:10 AM, p...@highoctane.be > wrote: > > If you are on Windows you can load Vista cursors from the catalog. Then > you > > will have settings for the size. > > > > Not all

Re: [Pharo-users] Pharo IDE - change mouse cursor color/size

2018-01-28 Thread p...@highoctane.be
If you are on Windows you can load Vista cursors from the catalog. Then you will have settings for the size. Not all cursors are implemented but it is easy to do. On Linux I had VM crashes when doing #beCursor. Maybe is it fixed these days. Phil On Jan 29, 2018 06:22, "Animosity" wrote: > Hi

Re: [Pharo-users] New booklets organisation and new booklet

2018-01-28 Thread p...@highoctane.be
Looks nice. We should also put the books of Dr Geo in there but maybe they are GPL. But at least a link to http://www.drgeo.eu/help would be nice. Phil On Sun, Jan 28, 2018 at 10:47 AM, Esteban Lorenzano wrote: > +1 > > > On 27 Jan 2018, at 20:55, Stephane Ducasse > wrote: > > > > Hi > > > >

Re: [Pharo-users] Running headless on Windows

2017-12-29 Thread p...@highoctane.be
If you want to run Pharo as a service, I have found nssm to be working well. https://nssm.cc Phil On Dec 29, 2017 09:25, "Nicolai Hess" wrote: > > > 2017-12-29 3:07 GMT+01:00 Andrei Stebakov : > >> Pierce, I tried all of those "no display" options, the result is the same >> >> On Dec 28, 2017

Re: [Pharo-users] How do you store and manage small programs?

2017-11-27 Thread p...@highoctane.be
It is useful for presentations. https://www.youtube.com/watch?v=JhmmoEtAq20&t=269s Phil On Mon, Nov 27, 2017 at 1:06 PM, Tim Mackinnon wrote: > Wow - I never noticed that extension - that’s amazing. > > On 27 Nov 2017, at 10:56, p...@highoctane.be wrote: > > QuickAccess is

Re: [Pharo-users] How do you store and manage small programs?

2017-11-27 Thread p...@highoctane.be
QuickAccess is also a great option. *https://pharoweekly.wordpress.com/2015/11/06/quickaccess/ * On Mon, Nov 27, 2017 at 11:16 AM, Alistair Grant wrote: > On 26 November 2017 at 13:07, Stephane Ducasse > wrote: > > Hi Andy > > > > As y

Re: [Pharo-users] How to write a little REPL

2017-11-27 Thread p...@highoctane.be
Or https://github.com/guillep/Scale but linux. Phil On Nov 27, 2017 03:56, "Holger Freyther" wrote: > > > On 27. Nov 2017, at 05:38, Stephane Ducasse > wrote: > > > > Hi > > Hey! > > > > I'm working on a mini scheme implementation and I would like to add a > REPL and > > I wonder how I can su

Re: [Pharo-users] How to write a little REPL

2017-11-27 Thread p...@highoctane.be
NeoConsole could be an option. https://github.com/svenvc/pharo-server-tools/blob/master/README.md Phil On Nov 27, 2017 03:56, "Holger Freyther" wrote: > On 27. Nov 2017, at 05:38, Stephane Ducasse wrote: > > Hi Hey! > I'm working on a mini scheme implementation and I would like to add a R

Re: [Pharo-users] I love the launcher!!!!

2017-11-26 Thread p...@highoctane.be
So, I try it on my CentOS 7 64 bit and... as there is no 64 bit version of the launcher... pharo6-64-ui PharoLauncher.image This interpreter (vers. 68021) cannot read image file (vers. 6521). Press CR to quit... How is one using the launcher for 64 bit stuff? Phil On Sun, Nov 26, 2017 at 9:45 P

Re: [Pharo-users] Travis build failing because of bad CRC

2017-11-24 Thread p...@highoctane.be
Same issues for me. I actually use an older thing that I know works instead of using zeroconf etc anymore. Others may just walk away from Pharo silently. Look in an age of Docker and multi gig successful downloads, a couple megs sjouldn't be that hard. S3 or whatever works for millions of podca

[Pharo-users] DDD (Domain Driven Design) framework

2017-11-23 Thread p...@highoctane.be
I saw in a success story (http://pharo.org/success/Contestia) that a DDD framework was created and used. Is there any way to have it available in some form? No need for it to be open source. I am writing code for a specific domain where Pharo can really shine due to the exploratory nature of the

Re: [Pharo-users] Smalltalk Argument

2017-10-29 Thread p...@highoctane.be
Pharo can read Avro when this will be UFFI'ed https://avro.apache.org/docs/1.7.3/api/c/index.html But that is eminently doable. Phiil On Sun, Oct 29, 2017 at 7:13 PM, henry wrote: > I have heard this summarized by the term: "build it and they will come". I > think the data visualization aspec

Re: [Pharo-users] Smalltalk Argument

2017-10-26 Thread p...@highoctane.be
> I try posting with a smaller image. > > [image: ""hubbub.jpg""] > > - HH > > > ——— Original Message ——— > Subject: Re: [Pharo-users] Smalltalk Argument > Local Time: October 26, 2017 8:52 AM > UTC Time: October 26, 2017 12:52 PM > From: he...@callist

Re: [Pharo-users] Smalltalk Argument

2017-10-26 Thread p...@highoctane.be
is not exactly what you were looking for but yet > interesting perhaps? > > > - HH > > > On Thu, Oct 26, 2017 at 02:17, p...@highoctane.be > wrote: > > I like that piece a lot, seeing exactly the described situation in large > enterprises. > > I made a strat

Re: [Pharo-users] Smalltalk Argument

2017-10-25 Thread p...@highoctane.be
I like that piece a lot, seeing exactly the described situation in large enterprises. I made a strategic decision to go with Pharo for the long run for my solutions because it is a stable base on which to build (ok, there are evolutions, but fundamentally, I can rely on it being under control and

Re: [Pharo-users] UFFI with asynchronous callbacks

2017-10-23 Thread p...@highoctane.be
I've callbacks all over in https://github.com/Pharophile/XmppTalk They do work. Phil On Mon, Oct 23, 2017 at 8:13 PM, Ben Coman wrote: > > > On Mon, Oct 23, 2017 at 11:46 PM, Jan Cada wrote: > >> Hi, >> >> I would like to connect fingerprint reader to pharo - so far I am able to >> use C libr

Re: [Pharo-users] Music beat detection and 60FPS graphics on Pharo?

2017-10-14 Thread p...@highoctane.be
tFromHeader: header > ^ header channels = 1 > ifTrue: [ > header bitsPerSample = 8 > ifTrue: [ AL_FORMAT_MONO8 ] > ifFalse: [ AL_FORMAT_MONO16 ] ] > ifFalse: [ > header bitsPerSample = 8 > ifTrue: [ AL_FORMAT_STEREO8 ] > ifFalse: [ AL_FORMAT_STEREO16 ] ] > > I

[Pharo-users] Music beat detection and 60FPS graphics on Pharo?

2017-10-14 Thread p...@highoctane.be
I'd like to do something like this: https://www.youtube.com/watch?v=vL7D4eU0lYE to showcase FFI, Bloc, and the Pharo liveliness. And once I get the basics working, level up in getting it working in a VR headset. Is there anyone having a binding to a library for dealing with the sound part, like

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

2017-10-10 Thread p...@highoctane.be
A Bluebook updated picture would be great. And I am sure Roassal could produce it right away. Phil On Oct 10, 2017 15:58, "horrido" wrote: > Interestingly, I'm getting a fair amount of pushback on this. Personally, I > think it would be very helpful to have a live (updatable, so as to keep it >

Re: [Pharo-users] How to make pharo find sqlite?

2017-10-08 Thread p...@highoctane.be
Oh my, am doing too much Windows at the moment. Phil On Sat, Oct 7, 2017 at 11:47 PM, Alistair Grant wrote: > On Sat, Sep 30, 2017 at 01:28:06PM +0200, Herby Vojk wrote: > > p...@highoctane.be wrote: > > >What about > > > > > >LD_LIBRARY_PATH=;$L

Re: [Pharo-users] Deploying on Linux with LibC version < 2.15

2017-10-07 Thread p...@highoctane.be
I would rather qualify Ubuntu as hell when deploying large setups of machines that have to be kept in working order for a long while. We should give top notch support for RHEL if we want to be relevant in spaces like Hadoop for example as the reference platform is RHEL/CentOS. Phil On Oct 6, 20

Re: [Pharo-users] Embeddable Smalltalk (was: Re: Behold Pharo: The Modern Smalltalk)

2017-10-07 Thread p...@highoctane.be
https://github.com/guillep/Scale is quite cool for quick scripts on *nix. Now for embeddable, yes it would help. Bootstrapping will be helpful but the current main issue is the VM interpret loop that is in the current VMs. It is not an intrinsic problem. Telepharo is also a great step to enable t

Re: [Pharo-users] Deploying on Linux with LibC version < 2.15

2017-10-05 Thread p...@highoctane.be
Any developer can get a free RHEL license and a dev account for accessing docs and what not. This includes CVE fixes etc. CentOS is close but not always the same. e.g. no security fixes are included vs RHEL when updating (even if the flag is accepted). I am going next week to the RedHat forum in

Re: [Pharo-users] Deploying on Linux with LibC version < 2.15

2017-10-05 Thread p...@highoctane.be
CentOS6.9 for one. Phil On Thu, Oct 5, 2017 at 11:30 AM, Holger Freyther wrote: > > > On 4. Oct 2017, at 17:39, Cyril Ferlicot > wrote: > > > > Hi, > > > > I am migrating some applications from Pharo 4 to Pharo 6. The new > > deployment of those applications needs to work on linux with LibC <

Re: [Pharo-users] How to make pharo find sqlite?

2017-10-03 Thread p...@highoctane.be
Nice. We should make a booklet of all this. There is also the Ansible playbook we have and the Docker story as well. Phil On Tue, Oct 3, 2017 at 3:12 AM, Pierce Ng wrote: > On Sat, Sep 30, 2017 at 10:16:47PM +0200, Herby Vojčík wrote: > > case the library name used is the plain 'sqlite3', I

Re: [Pharo-users] How to make pharo find sqlite?

2017-10-02 Thread p...@highoctane.be
Yes, all of this should work and we need to improve on this. I am willing to do something about that because it frustrates me too. Herby, How would you see it working? Phil On Mon, Oct 2, 2017 at 1:45 PM, Herby Vojčík wrote: > Renaud de Villemeur wrote: > >> Hi >> > > [...snip...] > > The re

Re: [Pharo-users] How to set library path for UFFI on Linux?

2017-09-30 Thread p...@highoctane.be
Usually there are a number of names to try but on Linux, there are less users and more distros, so people are not adding more libs to try. So, yes, symlink in the plugin directory works usually. Alternative would be to use LD_LIBRARY_PATH or pkg_config support to do this cleanly (not done at this

Re: [Pharo-users] How to make pharo find sqlite?

2017-09-30 Thread p...@highoctane.be
I am using UDBCSQLite on Windows without problems. Phil On Sat, Sep 30, 2017 at 9:11 PM, Herby Vojčík wrote: > p...@highoctane.be wrote: > >> Also, did you try with this VM: >> >> http://get.pharo.org/vmTLatest60 >> > > 18:51:46.191 + curl get.pharo.org/

Re: [Pharo-users] How to make pharo find sqlite?

2017-09-30 Thread p...@highoctane.be
Also, did you try with this VM: http://get.pharo.org/vmTLatest60 Phil On Sat, Sep 30, 2017 at 1:28 PM, Herby Vojčík wrote: > p...@highoctane.be wrote: > >> What about >> >> LD_LIBRARY_PATH=;$LD_LIBRARYPATH ./pharo-ui some.image >> >> Phil >> > &

Re: [Pharo-users] How to make pharo find sqlite?

2017-09-30 Thread p...@highoctane.be
Is https://pharo.fogbugz.com/f/cases/19990 showing again? What is the module being loaded ? Phil On Sat, Sep 30, 2017 at 1:28 PM, Herby Vojčík wrote: > p...@highoctane.be wrote: > >> What about >> >> LD_LIBRARY_PATH=;$LD_LIBRARYPATH ./pharo-ui some.image >> &g

Re: [Pharo-users] How to make pharo find sqlite?

2017-09-28 Thread p...@highoctane.be
What about LD_LIBRARY_PATH=;$LD_LIBRARYPATH ./pharo-ui some.image Phil On Thu, Sep 28, 2017 at 7:40 PM, Herby Vojčík wrote: > Hello! > > I try to deploy UDBCSQLite-using image in a 32bit ubuntu 16.04.3. > > I do have libsqlite3: > > root@32bit-agent:~# find / -name '*libsqlite*' -type f 2>>/

Re: [Pharo-users] Continued Fractions

2017-09-19 Thread p...@highoctane.be
ath it is the the object PMContinuedFraction. > > werner > > > > > > On 09/17/2017 08:38 PM, p...@highoctane.be wrote: > > > > Ah, I see there is something in the Numerical Methods book. :rolleyes: > > > > Phil > > > > On Sun, Sep 17, 2017 at 8:30

Re: [Pharo-users] Continued Fractions

2017-09-17 Thread p...@highoctane.be
Ah, I see there is something in the Numerical Methods book. :rolleyes: Phil On Sun, Sep 17, 2017 at 8:30 PM, p...@highoctane.be wrote: > Do we have anything related to continued fractions in Pharo? > > https://en.wikipedia.org/wiki/Continued_fraction > > I need that to mat

[Pharo-users] Continued Fractions

2017-09-17 Thread p...@highoctane.be
Do we have anything related to continued fractions in Pharo? https://en.wikipedia.org/wiki/Continued_fraction I need that to match rectanges to aspect ratios etc. TIA Phil

Re: [Pharo-users] Pharo 6.0 Generating Ruby-on-Rails Applications

2017-09-08 Thread p...@highoctane.be
Nice. I'll definitely have a look because I need to prototype something quite domain heavy and it may help a lot. Phil On Fri, Sep 8, 2017 at 5:09 PM, Peter Fisk wrote: > Hi Phil, > > I already have PHP support for CodeIgniter and Laravel. > > Adding support for Zend Framework might take a day

Re: [Pharo-users] Pharo 6.0 Generating Ruby-on-Rails Applications

2017-09-08 Thread p...@highoctane.be
Peter, How hard would it be to generate other languages? e.g. PHP for Zend Framework 2. Best, Phil On Sep 7, 2017 14:54, "Peter Fisk" wrote: > Hi everyone, The RailsExpress.com website will be updated over the coming > days to reflect what I am currently working on in Pharo 6.0. I have found

Re: [Pharo-users] Dark Mode

2017-08-29 Thread p...@highoctane.be
White all over Smalltalks UIs are a reason why I do *not* use them. Dark Pharo: good. Properly themeable Pharo with a palette and logical color mappings: nirvana. I hope to contribute to that. I did some GToolkit dark theming but it was too late for 6.0 so maybe for 7. Try to code against a whi

Re: [Pharo-users] Dark Mode

2017-08-28 Thread p...@highoctane.be
t; Yes, I wrote a FIT file parser. FIT is used to store “scientific” >>> images, in particular for astronomy and medicine. >>> Do you want the code? >>> >>> Alexandre >>> -- >>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: >>> Alexandre Bergel http://www.bergel.eu >>>

Re: [Pharo-users] Dark Mode

2017-08-28 Thread p...@highoctane.be
t;> wrote: >> >> Hi Phil, >> >> Yes, I wrote a FIT file parser. FIT is used to store “scientific” images, >> in particular for astronomy and medicine. >> Do you want the code? >> >> Alexandre >> -- >> _,.;:~^~:;._,.;:~^~:;._,.;:~

Re: [Pharo-users] Dark Mode

2017-08-28 Thread p...@highoctane.be
used to store “scientific” images, > in particular for astronomy and medicine. > Do you want the code? > > Alexandre > -- > _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: > Alexandre Bergel http://www.bergel.eu > ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.

Re: [Pharo-users] Dark Mode

2017-08-28 Thread p...@highoctane.be
You can eat eggs all you want provided you burn the calories. They are shock full of amino acids. Cholesterol is a precursor of testosterone, so, no cholesterol is going to put a man in a bad place. Eggs and heavy deadlifts and squats. Yay, feel the burn. Speaking of which: anyone have a .fit fi

Re: [Pharo-users] Dark Mode

2017-08-28 Thread p...@highoctane.be
t; Ah ah, 1/2 italian with green eyes here. I feel you. I am running with shades. Phil > On Mon, Aug 28, 2017 at 2:05 PM p...@highoctane.be > wrote: > >> On Mon, Aug 28, 2017 at 12:10 AM, Dimitris Chloupis < >> kilon.al...@gmail.com> wrote: >> >>> Also

Re: [Pharo-users] Dark Mode

2017-08-28 Thread p...@highoctane.be
On Mon, Aug 28, 2017 at 12:10 AM, Dimitris Chloupis wrote: > Also most don't know this but light themes of Pharo were in part hard > coded. Esteban in order to create the dark theme which is based on the most > popular dark theme ( if my memory serves correctly) , Darcula , he had to > remove all

Re: [Pharo-users] Zinc Crash / semaphores

2017-07-31 Thread p...@highoctane.be
; > On 31 Jul 2017, at 12:40, p...@highoctane.be wrote: > > > > I have this crash log on a server. > > > > https://gist.github.com/philippeback/9527b74c081629c2b05466353c4326b3 > > > > It is running on Windows 2012 R2 with a Pharo 5.0 > > There is a Seaside

  1   2   3   4   5   6   7   >