Hi Sven,
Yes I was sure. But that's because I was using
Pharo-7.0.0+rc1.build.19.sha.1fcbcd5170ad that was the one loaded from
Pharo launcher 1.6.x from 31.01.2019. Now I have updated Pharo Launcher
to 1.7.2 and it makes available the 7.0.1 versions of Pharo and now that
functionality is working w
On Mon, Feb 18, 2019 at 02:56:10PM -0300, Esteban Maringolo wrote:
> I have the requirement that an app that I'm prospecting must be able
> to work offline and synchronize changes once the connection is
> restored.
>
> I want to avoid having to write "sync" logic manually.
I've not done this for
On Mon, Feb 18, 2019 at 04:39:03PM -0500, sergio ruiz wrote:
> I found my issue.. I need to be running in daemon mode.. i was running with
> &, but as soon as my connection lets go, the app dies..
My daemontools run file:
#!/bin/sh
/usr/bin/setuidgid app1 \
/pkg/vm/pharo -vm-display-null
Hi Guille - thanks for taking the time to write this up… in the middle there I
finally spotted the crucial bit “clone the original, push to your fork”. I
think thats what I’ve been doing wrong - and it leads to all kinds of confusion
(at least I’m hoping this is what it is).
As I have cloned fr
Ok - if its supposed to work in this situation, I will zip up that image and
put it somewhere to try and figure out what happened.
> On 18 Feb 2019, at 17:54, ducasse wrote:
>
> Hi tim
>
> this is strange. Normally epicea logs all the changes. In the past I got
> missing classes.
> Epicea is
Are you really sure ? It works for me, Pharo 7.0.1 macOS.
> On 18 Feb 2019, at 22:57, Offray Vladimir Luna Cárdenas
> wrote:
>
> Hi,
>
> While I'm migrating Grafoscopio to Pharo 7 I get a deprecation warning
> telling me that I need to change the previous code for choosing a file from
> the
There are many options.
Did you read
https://ci.inria.fr/pharo-contribution/job/EnterprisePharoBook/lastSuccessfulBuild/artifact/book-result/DeploymentWeb/DeployForProduction.html
?
You can also study this https://github.com/svenvc/pharo-server-tools
nohup is an easy to use, quick and dirty so
Hi,
While I'm migrating Grafoscopio to Pharo 7 I get a deprecation warning
telling me that I need to change the previous code for choosing a file
from the UI, but now when I proceed as advised (using
|chooseExistingFileReference: title extensions: exts path: path|). It
returns a |FileReference| bu
Hey, all..
I found my issue.. I need to be running in daemon mode.. i was running with
&, but as soon as my connection lets go, the app dies..
I tried using daemon tools, but it looks like the site stays up for one
second, and a new PID is generated..
Anyone have any hints on how people are doin
> On 18 Feb 2019, at 21:42, sergio ruiz wrote:
>
> Snap! i forgot about that!
>
> I really need to get that put behind a password
Yes, and especially disable the dev tools as they contain doit functionality !
> On February 18, 2019 at 1:56:23 PM, Sven Van Caekenberghe (s...@stfx.eu)
> wrot
Snap! i forgot about that!
I really need to get that put behind a password
On February 18, 2019 at 1:56:23 PM, Sven Van Caekenberghe (s...@stfx.eu)
wrote:
Do you know about Seaside's Status page/dev tool.
It is there by default, it has many tabs that give you more information
about the running
Hi Tim.
пн, 18 февр. 2019 г. в 14:48, Tim Mackinnon :
> Hi Dennis - I’ve been reading the book you mentioned and looking through
> the code as well as your examples and I feel a bit more comfortable with
> what’s going on - however I am stumped about how you do an OR context (vs.
> an AND context
Hi Serge.
if it is related to TelePharo then you can register local transcript in
remote image. Evaluate following code in playground:
localTranscript := Transcript.
remotePharo evaluate: [ Smalltalk globals at: #Transcript put:
localTranscript ].
It will be not optimized solution because every
Wondering if my image is dying due to memory usage.
How would I go about getting a realistic measurement?
Thanks!
peace,
sergio
photographer, journalist, visionary
Public Key: http://bit.ly/29z9fG0
#BitMessage BM-NBaswViL21xqgg9STRJjaJaUoyiNe2dV
http://www.codeandmusic.com
http://www.twitt
I have the requirement that an app that I'm prospecting must be able
to work offline and synchronize changes once the connection is
restored.
I want to avoid having to write "sync" logic manually.
Is anybody using Pharo with a database that supports automatic
synchronization (replicas?) like the
Hi tim
this is strange. Normally epicea logs all the changes. In the past I got
missing classes.
Epicea is git ignorant. So I do not see how it could interact.
I would love to see your bug solved. Could you keep your image and may be martin
has some time to have a look (he got flying back to ch
Hi - I’ve got mixed experiences with epicea - having had a few image seg faults
recently its presented some of my changes and let me recover them.
However just now, I had been working for an hour and my whole laptop went black
(and then had the apple logo). I took the opportunity to apply the la
Hi, all.
My seaside image seems to run for an indeterminate amount of time here and
there, then just stops running without writing to PharoDebug. How do I go
about debugging the application crash? Is there another log somewhere?
It looks like there are other (path) issues when the the image star
OK, I that is what I expected.
I will study this again and make a PR with better comments and tests.
> On 18 Feb 2019, at 16:32, ducasse wrote:
>
>>
>>
>> I have been thinking a bit more about this, and I have a lot of problems with
>>
>> Integer>>#putOn: aStream
>> aStream isBinary
>>
Same question on 2019! are you planning to give support to aggregations in
MongoTalk/voyage?
--
Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html
For test and deployment, I have to be sure that I know exactly which versions
I load and I have to be sure to be able to load exactly the same code again.
I do not speak from my projects but from the projects I use.
I found myself asking people again and again to set tags in their projects
and be
Hi, all..
Is it possible to use PharoRemote to watch the remote site’s Transcript?
Thanks!
peace,
sergio
photographer, journalist, visionary
Public Key: http://bit.ly/29z9fG0
#BitMessage BM-NBaswViL21xqgg9STRJjaJaUoyiNe2dV
http://www.codeandmusic.com
http://www.twitter.com/sergio_101
http:
>
> I have been thinking a bit more about this, and I have a lot of problems with
>
> Integer>>#putOn: aStream
> aStream isBinary
> ifTrue: [ self asByteArray do: [ :each | aStream nextPut: each
> ] ]
> ifFalse: [ self asString putOn: aStream ]
>
> I think we
Hi sven
what I do not really with asString is that it potentially created another
stream.
with << the implementation of camillo (if I remember correctly) manages
correctly both
single object and collection and it is nice to have. I do not know if his
implementation
does not create additional s
Yes
18 февр. 2019 г. 14:37 пользователь "sergio ruiz"
написал:
Awesome! is this the one i should be using?
https://github.com/pharo-ide/TelePharo
Thanks!
On February 17, 2019 at 3:06:18 PM, Denis Kudriashov (dionisi...@gmail.com)
wrote:
I released new version of TelePharo adopted for Pharo 7
Whoa! This works! Thank you very much.
Andrei Chis wrote
> In the same image you can do that from the Iceberg user interface. You can
> open Iceberg from the Tools menu.
> Then right click on the Tutorial project and from the context menu select
> Pull.
>
> On Mon, Feb 18, 2019 at 12:29 AM horr
Hi Dennis - I’ve been reading the book you mentioned and looking through the
code as well as your examples and I feel a bit more comfortable with what’s
going on - however I am stumped about how you do an OR context (vs. an AND
context).
I would like my menu item to appear for either a selected
Awesome! is this the one i should be using?
https://github.com/pharo-ide/TelePharo
Thanks!
On February 17, 2019 at 3:06:18 PM, Denis Kudriashov (dionisi...@gmail.com)
wrote:
I released new version of TelePharo adopted for Pharo 7. So now it should
work out of the box
peace,
sergio
photogr
In the same image you can do that from the Iceberg user interface. You can
open Iceberg from the Tools menu.
Then right click on the Tutorial project and from the context menu select
Pull.
On Mon, Feb 18, 2019 at 12:29 AM horrido wrote:
> So how do I force Iceberg to reload?
>
>
> Andrei Chis wr
I confirm again this issue, while annoying, flushing Monticello helps to
get a proper diff.
https://github.com/pharo-project/pharo/issues/2583
Hilaire
Le 16/02/2019 à 11:56, Hilaire a écrit :
> Closing Monticello windows and opening a fresh one helped to get the
> changes right, sometime... Othe
On Mon, Feb 18, 2019 at 7:50 AM Konrad Hinsen
wrote:
> Am 18.02.19 um 01:19 schrieb Tim Mackinnon:
>
> > Hey Ben - I’m not sure that this actually does the same thing. I just
> > tried it now, and it resulted in an extra merge in my forked repo - as I
> > think this effectively pulls down from up
On Mon, Feb 18, 2019 at 2:45 AM Sean P. DeNigris
wrote:
> Tim Mackinnon wrote
> > wouldn’t it be helpful if this was a command in Iceberg?
>
> Yes! This is a super common task and for easy cases would be great to
> automate
> https://help.github.com/articles/syncing-a-fork/
>
>
>
That's useful
On Mon, Feb 18, 2019 at 1:19 AM Tim Mackinnon wrote:
> Hey Ben - I’m not sure that this actually does the same thing. I just
> tried it now, and it resulted in an extra merge in my forked repo - as I
> think this effectively pulls down from upstream into pharo and then if you
> have any differenc
Hi!
On Fri, Feb 15, 2019 at 7:06 PM Tim Mackinnon wrote:
> Hi guys - I’ve spent a few hours scratching my head trying to understand
> why some of my Pull Requests to a project I had forked kept showing my
> previous commits when I thought I was all caught up.
>
> It suddenly dawned on me, that w
Le 18/02/2019 à 02:00, Tim Mackinnon a écrit :
>
> Having said this - I’m still not having the smooth ride others are
> reporting - and 7 is still suspect to me.
Indeed, the Pharo stability (or any other software) depends on several
factors: in your case OSX, fullscreen, P7 image and VM, plugin. A
35 matches
Mail list logo