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

[Pharo-users] QCMagritte question- does it have undo?

2016-11-10 Thread PAUL DEBRUICKER
I've never used magritte or QC magritte and was wondering whether with the momento it qas also possible to get multi step undo cheaply if it didn't already exist. Thanks Paul

Re: [Pharo-users] Little challenges for a friday evening

2016-11-10 Thread Ben Coman
First I've heard of an isogram. Wikipedia [1] is ambiguous. Are you considering only single occurrence of letters, or also equal occurrence of letters. I like Sven's answer best, but just as an exercise I thought of an alternative. String>>#isIsogram | letters | letters := Dictionary new

Re: [Pharo-users] Little challenges for a friday evening

2016-11-10 Thread Henrik Nergaard
String>>isIsogram 1 to: self size -1 do: [ :ix | (self findString: (self at: ix) asString startingAt: ix +1 caseSensitive: false ) ~~ 0 ifTrue: [ ^ false ] ].

Re: [Pharo-users] [ALERT] Pharo by Example version 5 is about to be released

2016-11-10 Thread Nicolai Hess
2016-10-27 13:32 GMT+02:00 Dimitris Chloupis : > In case someone missed it I will be doing a release for version 5 (pharo > version = pbe version) this weekend , since we had Pharo 7 initiated few > days ago. > > Essentially that means that the repo will be tagged for version 5, which > means a gi

Re: [Pharo-users] Little challenges for a friday evening

2016-11-10 Thread Sven Van Caekenberghe
you're right, should probably be case insensitive. > On 10 Nov 2016, at 23:14, Cyril Ferlicot D. wrote: > > Le 10/11/2016 à 23:09, Sven Van Caekenberghe a écrit : >> [ :string | string size = string asSet size ] value: 'Pharo'. >> > true >> >> [ :string | string size = string asSet size ]

Re: [Pharo-users] Little challenges for a friday evening

2016-11-10 Thread Cyril Ferlicot D.
Le 10/11/2016 à 23:09, Sven Van Caekenberghe a écrit : > [ :string | string size = string asSet size ] value: 'Pharo'. > true > > [ :string | string size = string asSet size ] value: 'Pharoo'. > false > > String>>#isIsogram > ^ self size = self asSet size > > ? > 'Pharop' size =

Re: [Pharo-users] Little challenges for a friday evening

2016-11-10 Thread Sven Van Caekenberghe
[ :string | string size = string asSet size ] value: 'Pharo'. >>> true [ :string | string size = string asSet size ] value: 'Pharoo'. >>> false String>>#isIsogram ^ self size = self asSet size ? > On 10 Nov 2016, at 22:19, stepharo wrote: > > Hi > > I'm checking how I would implement an

Re: [Pharo-users] connecting to remote pharo 5 image on server.

2016-11-10 Thread itayy
thx :D will do it once there is a fix or a workaround for the image saved on windows cant run on linux in pharo5 :/ -- View this message in context: http://forum.world.st/connecting-to-remote-pharo-5-image-on-server-tp4922378p4922635.html Sent from the Pharo Smalltalk Users mailing list archiv

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

2016-11-10 Thread itayy
having the same issue with pharo5 stable (saving in windows break pharo once i load it on linux), anyone know if if there will be a fix to pharo5 soon? -- View this message in context: http://forum.world.st/Image-freezes-on-Linux-if-it-was-previously-saved-on-Windows-tp4903258p4922634.html Sen

[Pharo-users] Little challenges for a friday evening

2016-11-10 Thread stepharo
Hi I'm checking how I would implement an isogram checker 'Pharo' isogram >>> true because it contains only single letter. I got a stupid bag drivent implementation but I will do another better and faster. Stef PS: after I will do anagram and pangram to have the family of gram checks (thi

Re: [Pharo-users] [ANN] CPPBridge: One Ring to rule them ALL

2016-11-10 Thread Igor Stasenko
On 10 November 2016 at 11:36, Dimitris Chloupis wrote: > > >> Well, a while before that, i wrote own lobotomized smalltalk >> implementation in C and started generating bindings to Ogre3D engine. I >> even had certain success with it, but then i started grand-rewriting of VM >> and abandoned it.

[Pharo-users] Streaming MP3 playlists

2016-11-10 Thread sergio ruiz
Hey, All.. Was wondering what the state of streaming audio was.  I am building a radio API for use in a mobile player using Teapot, but I thought it might be cool to build and actual player using spec and pharo. Any suggestions on where to look for something like this for pharo 5? Thanks! ---

Re: [Pharo-users] MOOC TOC cleanup

2016-11-10 Thread Offray Vladimir Luna Cárdenas
Seems really good Siemen! Just a minor suggestion maybe you could link to the subtitles files or some way to choose between them when the video is streaming. I would like to help with subtitles using Amara[1] with the people here in our workshops next year. [1] https://amara.org/en/ Thanks a

Re: [Pharo-users] Is Package Browser kaputt ?

2016-11-10 Thread Dimitris Chloupis
same problems on Pharo 5 too i assume this is an ubuntu problem FFI also acts all crazy , it does not execute pharo methods after ffi calls this is fun On Thu, Nov 10, 2016 at 3:49 PM Dimitris Chloupis wrote: ok its even worse I cannot load my project even with Metacello new baseline:'CPPBrid

Re: [Pharo-users] AWS libraries

2016-11-10 Thread Jan van de Sandt
Hi, The Cloudfork code is available on SmalltalkHub: http://smalltalkhub.com/#!/~JanVanDeSandt/Cloudfork I'm afraid the code is a bit outdated by now. I have not used in the last three years. It has support for S3, SQS and SimpleDB. Jan. On Thu, Nov 10, 2016 at 2:45 PM, François Stephany < tuli

Re: [Pharo-users] [Pharo-dev] [ANN] Pharo Association has a new Website!

2016-11-10 Thread Marcus Denker
> On 10 Nov 2016, at 14:44, Esteban A. Maringolo wrote: > > Great! > > What do we do with the current BountySource salt? > (https://salt.bountysource.com/teams/pharo) > Should we move directly to the new Wild Apricot backend? > Salt is just one payment possibiliy. Salt is a bit strange, e.g.

Re: [Pharo-users] Is Package Browser kaputt ?

2016-11-10 Thread Dimitris Chloupis
ok its even worse I cannot load my project even with Metacello new baseline:'CPPBridge' ; repository: 'github://kilon/CPPBridger:master';load. it does not download the zip file and of course complains that it cannot find it what you people have done to my beloved Pharo ? . OrderedCollection

Re: [Pharo-users] [Pharo-dev] [ANN] Pharo Association has a new Website!

2016-11-10 Thread Esteban A. Maringolo
Great! What do we do with the current BountySource salt? (https://salt.bountysource.com/teams/pharo) Should we move directly to the new Wild Apricot backend? Accepting Bitcoin payments would be a plus ;-) (https://bitpay.com/tour) Best regards! Esteban A. Maringolo 2016-11-10 6:22 GMT-03:00 M

Re: [Pharo-users] AWS libraries

2016-11-10 Thread François Stephany
Back in the days, I used CloudFork (http://www.slideshare.net/esug/cloudfork) to interact with S3. I don't know the current status of the lib though... On Thu, Nov 10, 2016 at 2:21 PM, Esteban Lorenzano wrote: > I know about this: > > https://github.com/newapplesho/aws-sdk-smalltalk > > Esteban

[Pharo-users] Is Package Browser kaputt ?

2016-11-10 Thread Dimitris Chloupis
I try to open Package Browser on Ubuntu with alpha+vmLatest pharo set up and gives me an error Also last time I checked it refused to add my CPPBridge project even though I added over a day ago does not like my code ? Thats rude :D Dictionary>>errorKeyNotFound: [ self errorKeyNotFound: key ]

Re: [Pharo-users] AWS libraries

2016-11-10 Thread Esteban Lorenzano
I know about this: https://github.com/newapplesho/aws-sdk-smalltalk Esteban > On 10 Nov 2016, at 12:45, Norbert Hartl wrote: > > What libraries exist these days for amazon services? I may need a library for > SNS service so is there anybody

[Pharo-users] 2nd Call for papers - 2017

2016-11-10 Thread Tim Molderez
2017 : The Art, Science, and Engineering of Programming April 3-6, 2017, Brussels, Belgium http://2017.programming-conference.org We started a new conference and journal focused on everything to do with programming, including the experience of programming. We call the conference for short.

[Pharo-users] OopluCon 2017

2016-11-10 Thread Chris Cunnington
http://www.ooplu.com/ Chris

Re: [Pharo-users] connecting to remote pharo 5 image on server.

2016-11-10 Thread Denis Kudriashov
Hi 2016-11-09 16:52 GMT+01:00 itay yahalom : > Hi all, > is there any RFB or VNC to use with pharo 5? > i want to connect to my pharo 5 environment remotly, the image sit on a > linux server that is hosted on digital-ocean . > all of this is so i can control and see if something go bad with the

Re: [Pharo-users] connecting to remote pharo 5 image on server.

2016-11-10 Thread Pierce Ng
On Wed, Nov 09, 2016 at 05:52:43PM +0200, itay yahalom wrote: > is there any RFB or VNC to use with pharo 5? > i want to connect to my pharo 5 environment remotly, the image sit on a > linux server that is hosted on digital-ocean . Yes there is an RFB server implemented in Smalltalk. The GUI inte

[Pharo-users] AWS libraries

2016-11-10 Thread Norbert Hartl
What libraries exist these days for amazon services? I may need a library for SNS service so is there anybody working on it? thanks, Norbert

Re: [Pharo-users] Can pharo association web page point to association.pharo.org, like the consortium one?

2016-11-10 Thread Norbert Hartl
> Am 10.11.2016 um 09:44 schrieb Marcus Denker : > > >> On 5 Nov 2016, at 12:31, Marcus Denker > > wrote: >> >> Hi, >> >> Current Status: >> >> - SPF record DONE, mails are now send from @association.pharo.org >> - DNS setup now uses association.pharo.org

Re: [Pharo-users] [ANN] CPPBridge: One Ring to rule them ALL

2016-11-10 Thread Dimitris Chloupis
> > Well, a while before that, i wrote own lobotomized smalltalk > implementation in C and started generating bindings to Ogre3D engine. I > even had certain success with it, but then i started grand-rewriting of VM > and abandoned it. > That was before i switched to Squeak, then Pharo. So, your in

Re: [Pharo-users] about balkanisation

2016-11-10 Thread p...@highoctane.be
On Thu, Nov 10, 2016 at 10:12 AM, Thierry Goubier wrote: > Hi Dale, > > 2016-11-10 6:04 GMT+01:00 Dale Henrichs > : > >> >> >> On 11/8/16 7:09 AM, Thierry Goubier wrote: >> >> Hi Dale, >> >> 2016-11-08 2:03 GMT+01:00 Dale Henrichs > >: >> >>> [ snip ... ] >>> >>> yes I think this is the area whe

Re: [Pharo-users] Can pharo association web page point to association.pharo.org, like the consortium one?

2016-11-10 Thread Tudor Girba
Great work, Marcus! This type of work often goes unnoticed and under appreciated. But, it is acts like this that make Pharo more than a language, environment or even code. Pharo is a community. A way of working. Pharo is a project. Cheers, Doru > On Nov 10, 2016, at 9:44 AM, Marcus Denker wr

Re: [Pharo-users] [ANN] Pharo Association has a new Website!

2016-11-10 Thread Marcus Denker
> On 10 Nov 2016, at 10:22, Marcus Denker wrote: > > Hello, > > We have changed the backend of the Pharo Association. > > https://association.pharo.org > > If you ever joined the association in the past, please consider to > re-subscribe. > > We have a

[Pharo-users] [ANN] Pharo Association has a new Website!

2016-11-10 Thread Marcus Denker
Hello, We have changed the backend of the Pharo Association. https://association.pharo.org If you ever joined the association in the past, please consider to re-subscribe. We have added already all existing active members, in this case you should have al

Re: [Pharo-users] about balkanisation

2016-11-10 Thread Thierry Goubier
Hi Dale, 2016-11-10 6:04 GMT+01:00 Dale Henrichs : > > > On 11/8/16 7:09 AM, Thierry Goubier wrote: > > Hi Dale, > > 2016-11-08 2:03 GMT+01:00 Dale Henrichs > : > >> [ snip ... ] >> >> yes I think this is the area where a Metallo Project Browser comes into >> play. The technology for committing

Re: [Pharo-users] Can pharo association web page point to association.pharo.org, like the consortium one?

2016-11-10 Thread Marcus Denker
> On 5 Nov 2016, at 12:31, Marcus Denker wrote: > > Hi, > > Current Status: > > - SPF record DONE, mails are now send from @association.pharo.org > - DNS setup now uses association.pharo.org > for normal viewing, just forms forward to https://pharo. >

Re: [Pharo-users] about balkanisation

2016-11-10 Thread Igor Stasenko
On 10 November 2016 at 06:07, Dale Henrichs < dale.henri...@gemtalksystems.com> wrote: > > > On 11/8/16 11:04 PM, Igor Stasenko wrote: > > > > On 7 November 2016 at 14:28, stepharo wrote: > >> >> [ ... ] >> >> >> And this one I don't understand. A smooth, git / iceberg oriented >> transition over