Now I wonder if it makes sense to have all the docs of drGeo here. I
can do it but I'm thinking about it.
May be I could create another category. I "read" your handbook and I
do not think that it should be listed among the pharo books.
Now what I would love to have is a handbook: Pharo for the Data
> Am 30.01.2018 um 08:26 schrieb "p...@highoctane.be" :
>
>
>
>> On Tue, Jan 30, 2018 at 12:12 AM, Torsten Bergmann wrote:
>> @Phil: Maybe because I wrote the package back when I was on "Vista" and you
>> should not
>>use on Linux ;)
>>
> :-p
>
> Cursor>>beCursor with Cursor being
On Tue, Jan 30, 2018 at 12:12 AM, Torsten Bergmann wrote:
> @Phil: Maybe because I wrote the package back when I was on "Vista" and
> you should not
>use on Linux ;)
>
> :-p
Cursor>>beCursor with Cursor being a Form makes a lot of sense on any
platform.
On this age of Hi DPI I can't liv
@Phil: Maybe because I wrote the package back when I was on "Vista" and you
should not
use on Linux ;)
To be serious: Yes - changing the cursor in Linux never worked (for me). And
the windows
VM had large cursor introduced as "experimental" in 2009:
http:/
If you need more than just a simple push notification you can try Discord
to send text, pictures, ... into own discord server and channels. Or work with
Bots.
Code is here https://github.com/JurajKubelka/DiscordSt
and techtalk video here: https://www.youtube.com/watch?v=y1EzOnfHUe
Repeat [ More on the image side where we can all see it and work on it in a
proper language, with proper design, using proper tools ]
> On 29 Jan 2018, at 21:17, Stephane Ducasse wrote:
>
> Hi phil
>
> Yes we want to kill all the VM logic related to events because IT GETS
> ON OUR NERVES.
> Ki
> On 29 Jan 2018, at 21:34, Esteban A. Maringolo wrote:
>
> What is the difference between Pushover and other similar services? Do you
> need a Pushover client in the phone to handle such notifications?
Yes, you need to install their client, which then acts as a generic receiver of
notificat
Julien wrote:
Hello,
Maybe what you’re looking for is String>>#asRegexIgnoringCase ?
No, I am looking at what I described (#copyWithIgnoreCase).
'a+' asRegexIgnoringCase matches: ''. "true"
'a+' asRegexIgnoringCase matches: ''. "true"
Cheers,
Julien
---
Julien Delplanque
Doctora
> On 29 Jan 2018, at 21:04, Stephane Ducasse wrote:
>
> Cool sven
> Is is a problem that you send you token/user around?
> Can I publish it on pharo weekly like that?
These are not my real key ;-)
> Stef
>
> On Mon, Jan 29, 2018 at 8:40 PM, Sven Van Caekenberghe wrote:
> Hi,
>
> Just a l
I can relate to that.
Phil
On Jan 29, 2018 21:17, "Stephane Ducasse" wrote:
> Hi phil
>
> Yes we want to kill all the VM logic related to events because IT GETS
> ON OUR NERVES.
> Kill them all. Esteban told me that he is super upset by all the event
> / screen logic and that he is looking at r
Hello,
Maybe what you’re looking for is String>>#asRegexIgnoringCase ?
'a+' asRegexIgnoringCase matches: ''. "true"
'a+' asRegexIgnoringCase matches: ''. "true"
Cheers,
Julien
---
Julien Delplanque
Doctorant à l’Université de Lille 1
http://juliendelplanque.be/phd.html
Equipe Rmod, Inr
VistaCursors worked great on windows. It also led me to the discovery of the
Cursor class, the different cursor types (normal, resizing, etc.) and masks.
Thank you for your help.
PS: I also found out how to register custom settings to be added to the
Settings dialog. That will come in handy at som
Hi!
String >> #asRegex return an instance of RxMatcher, as I tried. Now, I
would like to get an object that behaves exactly as the one I got from
asRegex, just that it ignores case (regardless whether it did or didn't
in the original object).
I understand it is not possible to get that objec
Based on the icon and my mobile dev experience ...
Either you need the Pushover app (hence the 'P' icon) to get a push
notification or you can make your mobile app the recipient of the push
notification (like UrbanAirship does) by including a library in your mobile app.
For SMS I generally use
Hi phil
Yes we want to kill all the VM logic related to events because IT GETS
ON OUR NERVES.
Kill them all. Esteban told me that he is super upset by all the event
/ screen logic and that he is looking at ronie' changes.
Stef
On Mon, Jan 29, 2018 at 8:10 AM, p...@highoctane.be wrote:
> If you a
Guille shows me a filesystem git accessed and browsed from Pharo. Soon
to be public.
On Mon, Jan 29, 2018 at 10:14 AM, Christophe Demarey
wrote:
> Hi Ken,
>
>> Le 27 janv. 2018 à 15:38, kmo a écrit :
>>
>> I don't understand how iceberg handles resource files that you might also
>> like to ver
Thanks all, Sven solution works.
Yes this is not JSON it's some kind of JSON-like format (Is it yml ? I
don't know it might be proprietary).
I was naive and thought there was some metadata in files precising the
encoding used, and that #readStream on FileReference was able to pick
automatically t
Le 29/01/2018 à 18:49, Clément Bera a écrit :
> Hi,
>
> I am currently parsing lua and JSON-like file in Pharo. They contain
> both Simplified and Traditional Chinese characters for comments and for
> strings displayed in the UI. Lua files are parsed correctly. However the
> JSON-like files aren't
Your file is not in UTF-8 but in UTF-16 !
This will do:
(FileLocator desktop / 'schinese.txt') readStreamDo: [ :in |
(ZnCharacterReadStream on: in binary encoding: #utf16) upToEnd ].
BTW, this is not valid JSON.
From Windows, for sure ...
> On 29 Jan 2018, at 18:49, Clément Bera wrote:
>
Are you sure that the file is encoded in utf8? Can you try
stream := ZnCharacterReadStream on: (File named: '...') readStream
encoding: 'utf8'.
stream upToEnd.
?
If that does not work, it could mean that the file is in another encoding...
2018-01-29 18:49 GMT+01:00 Clément Bera :
> Hi,
>
> I a
Hi,
I am currently parsing lua and JSON-like file in Pharo. They contain both
Simplified and Traditional Chinese characters for comments and for strings
displayed in the UI. Lua files are parsed correctly. However the JSON-like
files aren't.
In attachment I put one of the problematic file with Si
> On 29 Jan 2018, at 15:45, Ben Coman wrote:
>
> On 29 January 2018 at 22:40, Ben Coman wrote:
>> On 29 January 2018 at 22:32, Sven Van Caekenberghe wrote:
>>> Ben,
>>>
On 29 Jan 2018, at 15:27, Ben Coman wrote:
Hi Sven,
I'm using your P3 library
https://gi
On 29 January 2018 at 22:40, Ben Coman wrote:
> On 29 January 2018 at 22:32, Sven Van Caekenberghe wrote:
>> Ben,
>>
>>> On 29 Jan 2018, at 15:27, Ben Coman wrote:
>>>
>>> Hi Sven,
>>>
>>> I'm using your P3 library
>>>https://github.com/svenvc/P3
>>>
>>> to connect to TimescaleDB set up like
On 29 January 2018 at 22:32, Sven Van Caekenberghe wrote:
> Ben,
>
>> On 29 Jan 2018, at 15:27, Ben Coman wrote:
>>
>> Hi Sven,
>>
>> I'm using your P3 library
>>https://github.com/svenvc/P3
>>
>> to connect to TimescaleDB set up like this tutorial...
>>http://docs.timescale.com/v0.8/tuto
Ben,
> On 29 Jan 2018, at 15:27, Ben Coman wrote:
>
> Hi Sven,
>
> I'm using your P3 library
>https://github.com/svenvc/P3
>
> to connect to TimescaleDB set up like this tutorial...
>http://docs.timescale.com/v0.8/tutorials/tutorial-hello-nyc
Cool.
> but the following doesn't work un
Hi Sven,
I'm using your P3 library
https://github.com/svenvc/P3
to connect to TimescaleDB set up like this tutorial...
http://docs.timescale.com/v0.8/tutorials/tutorial-hello-nyc
but the following doesn't work unless I un-comment the second line...
(P3Client new url:
'psql://postgres:p
On Mon, Jan 29, 2018 at 6:52 AM, Hernán Morales Durand <
hernan.mora...@gmail.com> wrote:
> 2018-01-28 18:55 GMT-03:00 Stephane Ducasse :
> > Hernan
> >
> > what we can also do is the following: I set up the pillar project on
> > github with travis and bintray and when you commit
> > the book is a
Hi Ken,
> Le 27 janv. 2018 à 15:38, kmo a écrit :
>
> I don't understand how iceberg handles resource files that you might also
> like to version along with the pharo code.
For now, Iceberg do not really handle these files but it is planned in a next
future.
> Say I have an CSV file and a tex
On Sun, Jan 28, 2018 at 8:51 AM, Hernán Morales Durand <
hernan.mora...@gmail.com> wrote:
> Hi Stef,
>
> 2018-01-28 4:15 GMT-03:00 Stephane Ducasse :
> > Ok I see. I think that I never tried this version of Pillar on windows.
> > And I hate make because it is impossible for me to debug it. I will
[JOB][PhD] Infrastructure and Language Kernels for IoT Systems
The RMOD team of INRIA Lille and the CAR theme of IMT Lille Douai have an open
position for a PhD student on Infrastructure and language kernels for IoT
Systems.
Description
==
Over the last years, the RMOD team of INRIA Li
30 matches
Mail list logo