Re: [Pharo-users] question on message passing.

2016-06-08 Thread stepharo
Keep us up to date It looks like an exciting project. BTW I love the audio stuff made by sven (I did not buy because I have too many loud speakers around me) but they keep telling me that I should buy them. Stef Le 7/6/16 à 20:42, sergio ruiz a écrit : On Jun 7, 2016, at 2:36 PM, Peter U

Re: [Pharo-users] question on message passing.

2016-06-08 Thread sergio ruiz
wow! on it! thanks! > On Jun 8, 2016, at 4:53 AM, Sven Van Caekenberghe wrote: > > Sergio, > > Here is my code: https://github.com/svenvc/mpdclient - the README.md should > get you started. peace, sergio photographer, journalist, visionary #BitMessage BM-NBaswViL21xqgg9STRJjaJaUoyiNe2d

Re: [Pharo-users] question on message passing.

2016-06-08 Thread Sven Van Caekenberghe
Sergio, Here is my code: https://github.com/svenvc/mpdclient - the README.md should get you started. Have fun ! Sven > On 07 Jun 2016, at 22:17, sergio ruiz wrote: > >> >> I have a (almost complete) MPD client in Pharo, talks the protocol directly. >> As well as a simple web UI to control

Re: [Pharo-users] question on message passing.

2016-06-07 Thread sergio ruiz
> > I have a (almost complete) MPD client in Pharo, talks the protocol directly. > As well as a simple web UI to control music selection/playback. > wow! this sounds like a good building block for what i am doing. i am building a standalone/headless player that just uses buttons to select tag

Re: [Pharo-users] question on message passing.

2016-06-07 Thread Sven Van Caekenberghe
> On 07 Jun 2016, at 20:42, sergio ruiz wrote: > > >> On Jun 7, 2016, at 2:36 PM, Peter Uhnák wrote: >> >> (PipeableOSProcess command: 'mpc status') output lines first >> >> (also +1 for mpd :)) > > got it! thanks! > > you might like this project.. > > this is going to run on raspberry pi

Re: [Pharo-users] question on message passing.

2016-06-07 Thread sergio ruiz
> On Jun 7, 2016, at 2:36 PM, Peter Uhnák wrote: > > (PipeableOSProcess command: 'mpc status') output lines first > > (also +1 for mpd :)) got it! thanks! you might like this project.. this is going to run on raspberry pi.. the reason i am doing mpc status is to get the first line, and send

Re: [Pharo-users] question on message passing.

2016-06-07 Thread Peter Uhnák
You can just do (PipeableOSProcess command: 'mpc status') output lines first (also +1 for mpd :)) On Tue, Jun 7, 2016 at 8:27 PM, sergio ruiz wrote: > I have a feeling this is wrong, but I am not sure how to make it work > cleanly.. > > This: > > |s| > > s := (((PipeableOSProcess command: '/us

[Pharo-users] question on message passing.

2016-06-07 Thread sergio ruiz
I have a feeling this is wrong, but I am not sure how to make it work cleanly.. This: |s| s := (((PipeableOSProcess command: '/usr/local/bin/mpc status') output) findTokens: Character lf) first should i have all the parenthesis in there? is there a cleaner way to do this? thanks! peace