>Hello - can my address please be removed from the Pharo mail list. I
>will likely rejoin later, but for now I am receiving too many emails per
>day from the list. Greatly appreciated, cheers, Josh Panar
You do not have to unsubscribe to stop getting all these mails. Just go to
http://lists.ph
Hi Joshua,
Like most mailing lists, you control your own access; you can’t terminate my
access and I can’t terminate your access. When you joined the list you did so
through the web page at
http://lists.pharo.org/mailman/listinfo/pharo-users_lists.pharo.org and this is
how you can change your
Hello - can my address please be removed from the Pharo mail list. I
will likely rejoin later, but for now I am receiving too many emails per
day from the list. Greatly appreciated, cheers, Josh Panar
--
Dr Joshua D Panarjpa...@cs.ryerson.ca
Department of Computer Scien
On Wed, Jan 28, 2015 at 2:09 AM, Sven Van Caekenberghe wrote:
> Hi Ben,
>
> I totally understand your question, but I known from experience that
> things are always very hectic and connecting with off-site people is
> usually quite hard.
>
cool. just giving it a bump ;).
>
> The main thing aro
Hi Laura, Can you provide some more context by pasting code for how you
expect both your UI and calculation methods to interact? What is the
application?
cheers -ben
On Wed, Jan 28, 2015 at 5:49 AM, Laura Risani
wrote:
> Hi all,
> Thank you for your answers.
>
> But i yet can't see how to imple
Hi all,
Thank you for your answers.
But i yet can't see how to implement the method i wanted, because #fork
schedules the process and immediately returns but i'd like to wait and only
then return the answer.
Best,
Laura
On Tue, Jan 27, 2015 at 3:46 PM, Laura Risani
wrote:
> Hi all,
>
> I need
Hi Laura,
You can also use:
1 second wait.
2 seconds wait.
I particularly like these kind of writings ;-)
Cheers,
#Luc
2015-01-27 20:21 GMT+01:00 Nicolai Hess :
>
> 2015-01-27 19:46 GMT+01:00 Laura Risani :
>
>> Hi all,
>>
>> I need an object/method like this one
>>
>> Waiting>> wait : secon
Hello,
Or simpler:
1 second wait.
In your example:
Transcript open.
[
10 timesRepeat:[Transcript crShow:(DateAndTime now).
1 second wait]
] fork.
2015-01-27 20:21 GMT+01:00 Nicolai Hess :
>
> 2015-01-27 19:46 GMT+01:00 Laura Risani :
>
>> Hi all,
>>
>> I need an object/method lik
It's how the examples of spec are presented in the website
http://spec.st
cheers
*Lic. Ignacio Sniechowski, MBA*
*Prosavic SRL*
*Tel: (011) 4542-6714*
On Tue, Jan 27, 2015 at 4:26 PM, sergio_101 wrote:
> just out of curiousity.. what is that a screenshot of? my pharo looks
just out of curiousity.. what is that a screenshot of? my pharo looks
nothing like that.. nice font!
On Tue Jan 27 2015 at 11:02:50 AM Mark Rizun wrote:
> Hi,
>
> Not sure if it helps but for morphs you have next "transformation to
> model":
>
> | morph |
>
> morph := CalendarMorph on: Date
2015-01-27 19:46 GMT+01:00 Laura Risani :
> Hi all,
>
> I need an object/method like this one
>
> Waiting>> wait : seconds
> "i take the flow control during 'seconds' without halting image morphs
> stepping/handling (as Delay>>wait: does) and then return to the sender "
>
Hi Laura,
Delay>>wait:
http://moosetechnology.org/#learn
;-)
> On 27 Jan 2015, at 20:16, sergio_101 wrote:
>
> is there a place where we can systematically learn more about moose?
> thanks!
>
>
> On Tue Jan 27 2015 at 3:20:01 AM Sven Van Caekenberghe wrote:
> Nice, thank you.
>
> > On 27 Jan 2015, at 08:32, Tudor
is there a place where we can systematically learn more about moose?
thanks!
On Tue Jan 27 2015 at 3:20:01 AM Sven Van Caekenberghe wrote:
> Nice, thank you.
>
> > On 27 Jan 2015, at 08:32, Tudor Girba wrote:
> >
> > Hi,
> >
> > I put together an A4 Moose poster:
> > http://moosetechnology.org
I love your answers they are straight to the point, easy to understand and
very useful, this one is no different, thank you :)
I have another questions but I will make a separate thread for it so its
easier for users to google and search for it, including me .
By the way the official docs are onl
Hi all,
I need an object/method like this one
Waiting>> wait : seconds
"i take the flow control during 'seconds' without halting image morphs
stepping/handling (as Delay>>wait: does) and then return to the sender "
How can i implement it?
Where can i borrow for reuse an existing one from?
Best
Kilon,
I don't use tags a lot in my own projects, but if someone is using your
project in a production situation, then using tags is a good idea (if
you follow semantic versioning) so that the users can tell when and if
you have made api-breaking changes...
Since the Smacc project looks like
Hi Ben,
I totally understand your question, but I known from experience that things are
always very hectic and connecting with off-site people is usually quite hard.
The main thing around your Delay work is to find someone knowledgeable enough
;-)
Sven
> On 27 Jan 2015, at 18:46, Ben Coman w
I see some sprints are scheduled. I wonder if at one of them you might
get some group discussion around my Delay refactoring. (The monkey reports
are building up.)
https://pharo.fogbugz.com/default.asp?14669
https://pharo.fogbugz.com/default.asp?14353
I can try to get online at the sam
ditto. Also helps spread the "word" wider.
On Wed, Jan 28, 2015 at 1:19 AM, Andy Burnett <
andy.burn...@knowinnovation.com> wrote:
> Any chance that the presentations will be video recorded? I can't attend
> but I would love to watch.
>
> Cheers
> Andy
>
>
>
>
Any chance that the presentations will be video recorded? I can't attend but I
would love to watch.
Cheers
Andy
Hi,
We updated the schedule (programme) for the Pharo Days, adding names to the
talks, shifting some timings and other details a bit.
http://pharodays2015.pharo.org
We're happy that about 75 people registered. It will be fun and intense.
Sven
Thanks Nicolai,
I used an approach suggested by Merwan Ouddane in a private mail that
consisted in changing "UITheme>>taskListFillStyleFor:" inside
PolymorphWidgets Themes package changing the GradientFillStyle
This is my result:
===
taskListFillSt
Hi,
Not sure if it helps but for morphs you have next "transformation to model":
| morph |
morph := CalendarMorph on: Date today.
^ morph asSpecAdapter
Please read details here:
http://spec.st/docs/insert-morph/
Mark
2015-01-27 16:57 GMT+01:00 Sebastian Heidbrink :
> Hi!
>
> Okay so
Hi!
Okay so I am currently trying Spec out and I need some advice.
Which is the Model to use for a ASVGMorph ("AthensSvgMorph")?
Is there an example availabel somewhere?
Thanks
Sebastian
On 1/27/15 7:10 AM, Thierry Goubier wrote:
Hi Dale,
The wildcards on tags, are they available on branch names as well?
The wildcards are only applied to tags ... branch names are not expected
to look like version numbers with `.` and `-` separated "possibly
numeric" fields.
I wonder about
No I have not used git tags so far, so I am not familiar with them. But I
will keep in mind, I am considering not having versions at all, I find it a
curious concept.
Dale there is one thing I wanted to ask you , would it possible put in my
github repo installation instructions for installing prer
Kilon,
One more point that you might find useful ... If you use tags (i.e.,
v1.0.0, v1.0.1, v1.1.0), you can specify tag wildcards in the branch
field of the github repository description.
Using Thierry's example the following resolves the latest commit on the
master branch (bleeding edge):
Hi Dale,
The wildcards on tags, are they available on branch names as well?
I wonder about the choice for ? and *, because:
- In RE(s), ? is 0 or 1 occurence, * is 0 or any number of occurences.
- In shells (bash?), ? is any one character, * is 0 or any number of
characters.
i.e. ? matches less
This is great news!!!
<3
Congratulations to all that helped make it happen!
> On Jan 27, 2015, at 10:29 AM, Marcus Denker wrote:
>
> The Pharo Consortium is very happy to announce that the FAST: Fundación
> Argentina de Smalltalk has joined the Consortium as an Academic Partner.
>
> About
The Pharo Consortium is very happy to announce that the FAST: Fundación
Argentina de Smalltalk has joined the Consortium as an Academic Partner.
About
- FAST: Fundación Argentina de Smalltalk: http://www.fast.org.ar
- Pharo Consortium: http://consortium.pharo.org
The goal of the
Hi Udo,
I've sent you an email.
There will be two streams recorded from
each room, one from the speakers laptop (needs to be vga)
one from the camera. Camera operator only needs to point
the camera in the right direction and press start/stop at the
appropriate times. Organisation will either p
beautiful it worked like a charm following your instructions , I now can
brake my project to smaller ones, each one with each own github repo and
use Baselines to load each one and still allow the user to load my Project
in one single click from Configuration Browser. Love it how Pharo make this
al
Hi Kilon,
a simple way to do that is to change your configuration so that it uses the
baseline in your github. The SmaCC configuration for Pharo 4.0 is written
in this way for the stable version.
version204: spec
spec
for: #'pharo4.x'
do: [
spec
So I have a Configuration in the Meta repo of pharo 4 and 3 that loads the
latest version of my project Ephestos.
However I have moved my development to github since I am very happy with
the workflow and since I discovered loading github repos via a baseline I
have little use for smalltalkhub.
So
Nice, thank you.
> On 27 Jan 2015, at 08:32, Tudor Girba wrote:
>
> Hi,
>
> I put together an A4 Moose poster:
> http://moosetechnology.org/res/artwork/moose-poster.pdf
>
> Cheers,
> Doru
>
> --
> www.tudorgirba.com
>
> "Every thing has its own flow"
35 matches
Mail list logo