Re: [Pharo-users] Store a png in a class variable

2015-05-16 Thread Leonardo Silva
On Sat, May 16, 2015 at 5:28 PM, Merwan Ouddane wrote: > You can encore your image in base64 > anImage := 'holidays.png' asFileReference readStream binary. > encodedImage := Base64MimeConverter mimeEncode: anImage. > > > Then you can decode it with: > ImageReadWriter formFromStream: (

Re: [Pharo-users] Check element in array

2015-05-16 Thread jtuc...@objektfabrik.de
myArray includes: 5 Am 17.05.15 um 07:03 schrieb Cristian Vazquez: hi! How to check Integer belongs in array? Thanks -- Saludos. Cristian -- --- Objektfabrik Joachim Tuchel mailto:jtuc...@objektfabrik.de Flieder

[Pharo-users] Check element in array

2015-05-16 Thread Cristian Vazquez
hi! How to check Integer belongs in array? Thanks -- Saludos. Cristian

Re: [Pharo-users] Alt-tab between windows

2015-05-16 Thread Sebastian Heidbrink
See, this is why I love Smalltalk Tell me a different environment where you can actually have such discussion. To make this a little clearer. Pharo and Squeak are solely open source. So one might say, well this can be done/extended/changed in Eclipse, too. How about VW and VAST? Well,

Re: [Pharo-users] Alt-tab between windows

2015-05-16 Thread jtuc...@objektfabrik.de
Avdi, I mostly work in other Smalltalk environments than Pharo, like VA Smalltalk. It has native windows and so the ability to switch between windows using alt-tab is there. I must admit that there is a certain threshold in the number of open windows when this is not really helpful any more.

Re: [Pharo-users] Alt-tab between windows

2015-05-16 Thread Tudor Girba
Hi Avdi, Welcome. As the others mentioned, this part of Pharo is not at all ideal. Please bare with us. Cheers, Doru On Sat, May 16, 2015 at 12:52 AM, Avdi Grimm wrote: > Hey folks! I've dabbled with smalltalk here and there over the years, but > recently I've settled in to learn Pharo in e

Re: [Pharo-users] Problems getting a png image with ZnEasy

2015-05-16 Thread Sven Van Caekenberghe
> On 16 May 2015, at 03:15, Offray Vladimir Luna Cárdenas > wrote: > > Hi all, > > When I try to do: > > ~~~ > ZnEasy getPng: > 'https://pbs.twimg.com/profile_images/3179579549/f83f0e935fb5eff6d967e37e1a3efe5c_normal.png' > ~~~ > > I get "MessageNotUnderstood: receiver of "bitShift:" is nil

Re: [Pharo-users] Alt-tab between windows

2015-05-16 Thread stepharo
Hey folks! I've dabbled with smalltalk here and there over the years, but recently I've settled in to learn Pharo in earnest. A few of you might have seen the videos I've been putting up; they seem to be making the rounds on Twitter. I just want to say I've felt really welcomed by all the peo

Re: [Pharo-users] Cannot load Pillar

2015-05-16 Thread stepharo
thanks cyril Stef Le 14/5/15 22:00, Cyril Ferlicot a écrit : Should be fine now On 14 May 2015 at 17:54, Cyril Ferlicot wrote: I'll make a new configuration un few hours Le jeudi 14 mai 2015, Alexandre Bergel a écrit : Hi! When I load Pillar, I have the following: This package depends o

Re: [Pharo-users] Alt-tab between windows

2015-05-16 Thread stepharo
Le 16/5/15 01:22, Avdi Grimm a écrit : On Fri, May 15, 2015 at 7:12 PM Carlo > wrote: Pressing Alt-Tab brings up a debugger. Debugging the method shows: Thanks! Any idea where the keyboard shortcut is assigned? On the only systems I have handy to test this

Re: [Pharo-users] Alt-tab between windows

2015-05-16 Thread stepharo
Le 16/5/15 01:05, Carlo a écrit : Hi Avdi Enjoyed listening to your ruby rogues podcasts and tapas and now finally Smalltalk;) Regarding your pain points on keyboard vs mouse; I've seen this come up before. There has been lot's of improvement, but still a way to go. I tested cycling between

Re: [Pharo-users] Enhancing ICal library

2015-05-16 Thread Julien Delplanque
Hi Paul, So the abstraction layer already exists it's good. Ok, so merging my changes to the original repository should not be that hard. I'll check out how to do it and mail you when it's ready to be done. I understand it will be annoying for people that have to choose between the two ical f

Re: [Pharo-users] Store a png in a class variable

2015-05-16 Thread Merwan Ouddane
You can encore your image in base64 anImage := 'holidays.png' asFileReference readStream binary. encodedImage := Base64MimeConverter mimeEncode: anImage. Then you can decode it with: ImageReadWriter formFromStream: (Base64MimeConverter mimeDecodeToBytes: encodedImage). Is this what

Re: [Pharo-users] Enhancing ICal library

2015-05-16 Thread Paul DeBruicker
Hi Julien, The only reason I mind that you forked it is that you now force every person that isn't yet using iCal in their project, but that wants to adopt it, to have to decide and evaluate both projects to see which one to adopt for their own use. So instead of you adopting the burden of integr

Re: [Pharo-users] Generate latex from Pharo

2015-05-16 Thread Cyril Ferlicot
Pillar-ExporterLaTeX but they inherit from Pillar-ExporterCore I think On 16 May 2015 at 15:30, Julien Delplanque wrote: > From which package does these classes come from? > > > On 16/05/15 15:26, Cyril Ferlicot wrote: >> >> Hi, >> I don't know if there is a framework but if you don't find you ca

Re: [Pharo-users] Generate latex from Pharo

2015-05-16 Thread Julien Delplanque
From which package does these classes come from? On 16/05/15 15:26, Cyril Ferlicot wrote: Hi, I don't know if there is a framework but if you don't find you can still take a look at the class PRLaTeXCanvas and PRLaTeXWriter from Pharo. Maybe that'll help you to make something. On 16 May 2015 at

Re: [Pharo-users] Generate latex from Pharo

2015-05-16 Thread Cyril Ferlicot
Hi, I don't know if there is a framework but if you don't find you can still take a look at the class PRLaTeXCanvas and PRLaTeXWriter from Pharo. Maybe that'll help you to make something. On 16 May 2015 at 14:42, Julien Delplanque wrote: > Hi everyone, > > Is there any framework to generate latex

[Pharo-users] Generate latex from Pharo

2015-05-16 Thread Julien Delplanque
Hi everyone, Is there any framework to generate latex code from Pharo? I would like to give a latex representation to some objects so I can export the latex code to a file I would include to my latex main file (for example). For example for a matrix I would like to do something like: fileStr

Re: [Pharo-users] Alt-tab between windows

2015-05-16 Thread Sean P. DeNigris
Avdi Grimm wrote > Messing around, I've gotten the impression that Morphic doesn't really > have > the concept of a window manager. Hee hee. Like most things in Smalltalk, there is much more here than meets the eye! While pharo's main window looks like a desktop with windows, it is actually a worl

Re: [Pharo-users] Alt-tab between windows

2015-05-16 Thread Laurent
Hi Avdi, you may be interested in http://smalltalkhub.com/#!/~LaurentLaffont/TilingWindowManager that offers more keyboard control (Emacs inspired) on window management. Regards, Laurent Laffont Le sam. 16 mai 2015 à 0:52, Avdi Grimm a écrit : Hey folks! I've dabbled with smalltalk here an

Re: [Pharo-users] Quuve in action

2015-05-16 Thread Mariano Martinez Peck
On Sat, May 16, 2015 at 5:34 AM, p...@highoctane.be wrote: > Nice. > > What lib are you using for the charts? HighCharts? > Yes: http://smalltalkhub.com/#!/~Mercap/HighchartsSt/ Cheers, > > Phil > > On Sat, May 16, 2015 at 12:52 AM, Cameron Sanders via Pharo-users < > pharo-users@lists.pharo.

Re: [Pharo-users] Alt-tab between windows

2015-05-16 Thread Esteban Lorenzano
my answer on stackoverflow: well... you hit one of our weaker spots :) Keybindings are not in his best shape, but: - Actually, alt+tab is already set to "switch window" activity. The problem is that does not work all the time (for example, it does not work on Playground). - This is because th

Re: [Pharo-users] Alt-tab between windows

2015-05-16 Thread Dimitris Chloupis
does not work for me in macos. Ctrl+left/right is reserved by MACOS for switching workspaces but even other key combinations i tried do not work at all. Alt+Tab is also reserved in macos. On Sat, May 16, 2015 at 9:14 AM Carlo wrote: > Hi > > See my earlier email was bounced. > ... > > Ok, hacked

Re: [Pharo-users] Garage and SQLite file databases, general project structure

2015-05-16 Thread Pierce Ng
On Tue, May 12, 2015 at 08:35:23PM +0200, Torsten Bergmann wrote: > Also I do not understand: while "Garage-Postgres" uses the Postgres > project PostgresV2 as a backend the "Garage-Sqlite3" does not use > NBSqlite3 or SQlite3 projects as backend. > > So "GASqlite3FFI" copies many methods of the

Re: [Pharo-users] Quuve in action

2015-05-16 Thread p...@highoctane.be
Nice. What lib are you using for the charts? HighCharts? Phil On Sat, May 16, 2015 at 12:52 AM, Cameron Sanders via Pharo-users < pharo-users@lists.pharo.org> wrote: > > > -- Forwarded message -- > From: Cameron Sanders > To: Any question about pharo is welcome > Cc: > Date: F