[Pharo-users] [ANN] Libusb binding + HID support for Pharo

2017-10-12 Thread Julien
is to provide the ability to use USB devices directly from Pharo. For example, one could get data from a PS3 controller, a mouse, a keyboard, an Arduino device, etc… Cheers, Julien PS: I realised this project during an internship in TaMère SCRL company [5]. Thanks to them! Links: [1]: http

Re: [Pharo-users] [ANN] Libusb binding + HID support for Pharo

2017-10-12 Thread Julien
You’re welcome! :-) > Le 12 oct. 2017 à 14:36, Guillermo Polito a écrit > : > > Nice!!! Thanks for sharing :) > > On Thu, Oct 12, 2017 at 1:29 PM, Julien <mailto:julien.delplan...@inria.fr>> wrote: > Hello, > > A bit late, there is a Libusb [1] bind

Re: [Pharo-users] [ANN] Libusb binding + HID support for Pharo

2017-10-12 Thread Julien
Normally, it should be possible. Libusb can be compiled for 64bits architectures. I don’t know if it changes something in the UFFI binding side? Julien > Le 12 oct. 2017 à 14:41, Thierry Goubier a écrit : > > Very cool. Would that be doable to adapt for a 64bits version? >

Re: [Pharo-users] [ANN] Libusb binding + HID support for Pharo

2017-10-12 Thread Julien
al. The only problem with PS3 controller is that the HID descriptor is hidden (you have to get it from the internet, it is not stored in the device). Julien

[Pharo-users] Rép: Re: I need to put smalltalkhub down (max 30m)

2015-03-09 Thread julien
; Am 09.03.2015 um 14:56 schrieb Julien Delplanque : >> >> All my projects disappears should I be worried? >> >> On 09/03/15 14:45, Esteban Lorenzano wrote: >>> no, not yet… just wait a few minutes more please. >>> >>>> On 09 Mar 2015, at 14:43, E

[Pharo-users] Rép: How to display Dictionary using TreeModel

2016-02-09 Thread julien
Hi, try something like: tm := TreeModel new. tm roots: yourCollection. tm hasChildrenBlock: [ :item | item isDictionnary ]. tm childrenBlock: [ :item | item keysAndValues ]. I wrote that from my phone but I think it is working. Else it shows you the idea :) Julien Khrystyna Mykhailiuk a

Re: [Pharo-users] [Pharo-dev] Publishing a book with Pillar

2017-11-13 Thread Julien
> Le 13 nov. 2017 à 21:01, Stephane Ducasse a écrit : > > Hi guys > > we are working on pillar and we will probably release a new alph version soon. > I'm updating the doc. But I found that the doc I was writing can help > some of you. > > Julien is written a n

[Pharo-users] Travis build failing because of bad CRC

2017-11-19 Thread Julien
fault? Thanks in advance, Julien

Re: [Pharo-users] Travis build failing because of bad CRC

2017-11-19 Thread Julien
So the fix is just to relaunch the build? :-) Julien > Le 19 nov. 2017 à 19:56, Cyril Ferlicot D. a écrit > : > > Le 19/11/2017 à 19:54, Julien a écrit : >> Hello, >> >> I’m trying to set up continuous integration for one of my project but I >> have an e

[Pharo-users] PetitCompiler loading problem

2017-11-23 Thread Julien
load. (Smalltalk at: #ConfigurationOfPetitCompiler) perform: #'loadStable'. « Error : Name not found : Magritte-Tests-Pharo-Model » Can someone help me? I haven't tried in older images. Julien

Re: [Pharo-users] PetitCompiler loading problem

2017-11-24 Thread Julien
Hi, Thanks for you answer. I already tried and I do encounter the same issue with #development version. Julien > Le 24 nov. 2017 à 09:40, Tudor Girba a écrit : > > Hi, > > PetitCompiler is not released for 6.1. Please try with #development and let > me know if you still e

Re: [Pharo-users] PetitCompiler loading problem

2017-11-28 Thread Julien
Hello, Sorry for the late answer. I use the following script: Gofer new smalltalkhubUser: 'JanKurs' project: 'PetitParser'; configurationOf: #PetitCompiler; load. (Smalltalk at: #ConfigurationOfPetitCompiler) perform: #'loadDevelopment’. Julien -

[Pharo-users] The Advent Of Code 2017

2017-11-30 Thread Julien
a lot of people playing with us at solving these puzzles. :-) Cheers, Julien Links: [1]: http://adventofcode.com <http://adventofcode.com/> [2]: https://github.com/juliendelplanque/AdventOfCode2017WithPharo <https://github.com/juliendelplanque/AdventOfCode2017WithPharo> [3]: https:

Re: [Pharo-users] Reporting Pharo issues without FogBugz account

2017-12-06 Thread Julien
Any way to integrate a simple UI to report an issue from Pharo directly then? Since there is no need to log in. This is cool anyway. :-) --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, avenue Halley 59650 Villeneuve

[Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-01 Thread Julien
type not available yet, please tell me. So, it is announced, if someone want to do something with those, please do it! Happy new year. Regards, Julien [1]: https://github.com/juliendelplanque/Python3Generator <https://github.com/juliendelplanque/Python3Generator> [2]: https://

[Pharo-users] [ANN] Orientation

2018-01-01 Thread Julien
oes its job well. So if you need to model orientation, consider to use it. :-) If any ideas of what I could add to this API, I’m interested. Regards, Julien [1]: https://github.com/juliendelplanque/Orientation --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/

[Pharo-users] Solver for the Stable Marriage problem in Pharo

2018-01-02 Thread Julien
to its preferences. The stable marriage algorithm find the best matches between men and women according to all rankings. It can be installed using: Metacello new baseline: 'StableMarriage'; repository: 'github://juliendelplanque/StableMarriage/repository'; lo

Re: [Pharo-users] [ANN] Orientation

2018-01-02 Thread Julien
> Le 2 janv. 2018 à 17:26, Henrik Sperre Johansen > a écrit : > > Julien wrote >> Hello, >> >> I developed a small framework to model orientation (north, east, south, >> west). It defines some common operations that can be done on such objects >>

[Pharo-users] [ANN] PoLYgon file format parser/model

2018-01-02 Thread Julien
7;PLY'; repository: 'github://juliendelplanque/PLY/repository'; load. It has tests and an example of usage in the README. Regards, Julien Links: [1]: https://en.wikipedia.org/wiki/PLY_(file_format) <https://en.wikipedia.org/wiki/PLY_(file_format)> [2]: https://github.com/ju

[Pharo-users] Formatted print for Duration

2018-01-03 Thread Julien
ration>>#printHumanReadableOn: is not printing in the format I want. Am I missing something or such feature does not exist actually? Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, avenue Halley 59650 Villeneuve d&#x

Re: [Pharo-users] Solver for the Stable Marriage problem in Pharo

2018-01-04 Thread Julien
Not sure you can use it for that. I mean, you wanted random pairs of people no? So no need to rank people according to some preferences? Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, avenue Halley 59650

Re: [Pharo-users] Formatted print for Duration

2018-01-04 Thread Julien
I chosen something like the second solution to avoid adding a dependency to my project (it is a bit overkill for what I wanted to achieve). But shouldn’t this formatted-print feature be added in Duration? Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http

Re: [Pharo-users] Solver for the Stable Marriage problem in Pharo

2018-01-04 Thread Julien
Oh, maybe it would have helped then… :-) Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40 > Le 4 janv. 2018 à 15:12, Guillerm

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-05 Thread Julien
ative )( but i don't know them well )( they > just look > brittle )( and C like ) > and i believe there is a command line interface in Pharo so you can > execute external programs like generated scripts I think you could re-use the ideas behind th

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-05 Thread Julien
C function calls , C memory etc. > > So technically speaking its already possible through Atlas. If you want to do > something very special with callback that involves the Pharo IDE as I did > with Python error you only need to extend this protocol adding your own kind > of signal

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-05 Thread Julien
> > Le 5 janv. 2018 à 17:15, Dimitris Chloupis a écrit : > > > > > Python3Generator allows to generate a Python 3 AST programatically. So > basically you have objects that represent Python 3 AST nodes and some > messages in top of that to make the generation of the AST easier from Pharo. >

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-07 Thread Julien
Happy you find this interesting. If you have suggestions, just let me know by creating an issue on the repository. If you create bridges to some Python 3 libraries, tell me as well! :-) Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html Equipe

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-08 Thread Julien
Pharo’s objects from Pharo and to have the code to do that in Python side generated automatically but some thinking is needed… Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, avenue Halley 59650 Villeneuve d'

[Pharo-users] Line feeds appearing in methods source code?

2018-01-09 Thread Julien
… Anyone encounter the same thing? Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-10 Thread Julien
Hello Serge, Do you mean pieces of code you wrote in Python using Numpy that you want to transform to Smalltalk code using PolyMath? It’s kind of the other way around of this project. :-) Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-10 Thread Julien
I guess the hardest part will be to define the 1 - 1 mapping between Numpy and PolyMath APIs, no? I mean, how can you ensure that features using Floats will behave exactly the same in Python and Smalltalk for example? Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-10 Thread Julien
I see :-) Another interesting project then. :-) Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40 > Le 10 janv. 2018 à 14:3

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-10 Thread Julien
« by hand »... :-) Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40 > Le 10 janv. 2018 à 16:43, Dimitris Chloupis

Re: [Pharo-users] Regex: copy with ignoreCase

2018-01-29 Thread Julien
Hello, Maybe what you’re looking for is String>>#asRegexIgnoringCase ? 'a+' asRegexIgnoringCase matches: ''. "true" 'a+' asRegexIgnoringCase matches: ''. "true" Cheers, Julien --- Julien Delplanque Doctorant à l’Uni

Re: [Pharo-users] Regex: copy with ignoreCase

2018-01-30 Thread Julien
I think there is not such method then. Maybe it is possible to transform the RxMatcher to ignore case but it is not available out of the box apparently. The #ignoreCase inst. var. provides no accessor, so it I think just modifying it to be true will not work. Julien --- Julien Delplanque

Re: [Pharo-users] PetitParser Question

2018-03-05 Thread Julien
latest/PetitParser.pdf <http://pharobooks.gforge.inria.fr/PharoByExampleTwo-Eng/latest/PetitParser.pdf> Cheers, Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, avenue Halley 59650 Villeneuve d'Ascq Numéro de télé

Re: [Pharo-users] [ANN] Cruiser: A Pharo app packager

2018-03-09 Thread Julien
Really nice. I’ll definitely try it. Thanks! Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40 > Le 8 mars 2018 à 20:29

Re: [Pharo-users] Some random musings

2018-04-16 Thread Julien
an Integer… :-) Julien --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40 > Le 16 avr. 2018 à 12:51, Sven Van Caekenberghe a écrit

[Pharo-users] Is there a compatibility package for migrating Spec application from Pharo 6.1 to Pharo 7 ?

2018-05-30 Thread Julien
for each *Model class of spec. Thanks in advance, Julien --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40

Re: [Pharo-users] Is there a compatibility package for migrating Spec application from Pharo 6.1 to Pharo 7 ?

2018-05-31 Thread Julien
Cool, this is what I was looking for. Thanks. Julien --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40 > Le 30 mai 2018 à 15:59,

Re: [Pharo-users] [ANN] Pharo Launcher v1.2 release

2018-06-22 Thread Julien
Thank you Christophe! Julien --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40 > Le 19 juin 2018 à 15:55, Christophe Demarey a

[Pharo-users] Need help to get a list of Pharo projects with tests

2018-07-05 Thread Julien
, provide us private projects or, at least, run our analyser on these private projects and give us back the results. If you want to help us with the second option, send me a mail directly at julien.delplan...@inria.fr <mailto:julien.delplan...@inria.fr>. Thanks in advance. Regards,

[Pharo-users] Cyclomatic complexity for Smalltalk

2018-07-24 Thread Julien
is that in Smalltalk, potentially any selector can branch or perform loop. And you can not know it in advance. Anyone here already tried to address this problem? Thanks in advance, Julien --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod

Re: [Pharo-users] Trait method override

2018-08-16 Thread Julien
Hello Vitor, Yeah, I was talking about that with Pablo (who implemented stateful traits) some times ago. He told me that aliasing was he way to go. There is no other option to override a trait method without aliasing it. Cheers, Julien --- Julien Delplanque Doctorant à l’Université de Lille

Re: [Pharo-users] [ANN] MaterialDesignLite for Seaside v1.3.0

2018-10-08 Thread Julien
Cool! --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40 > Le 7 oct. 2018 à 23:53, Cyril Ferlicot D. a écrit : > > Hi, > &

Re: [Pharo-users] library to chain select:/collect:/ ... via cascade

2018-10-17 Thread Julien
I think this was the idea of Transducers as well. Julien --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40 > Le 17 oct. 2018 à 09:1

Re: [Pharo-users] Question about pharo's object model

2018-11-14 Thread Julien
. All these concepts are related to encapsulation [1] which is an important concept of OOP. BTW, there are some posts related to your question on StackOverflow [2] which I recommend to you. Cheers, Julien Links: [1]: https://en.wikipedia.org/wiki/Object-oriented_programming#Encapsulation <ht

[Pharo-users] [ANN] PetitParser (1) has been migrated to Github

2018-12-04 Thread Julien
Hello, I just finished the migration of PetitParser (1) on Github: https://github.com/moosetechnology/PetitParser <https://github.com/moosetechnology/PetitParser> . I created a release v1.9.2 which mirrors latest release of Smalltalkhub. Cheers, Julien --- Julien Delplanque Docto

[Pharo-users] PetitParser release: v2.1.0

2018-12-21 Thread Julien
te PetitParserExtensions package from Smalltalkhub #5 Integrate PetitPreprocessor package from Smalltalkhub Thanks to Cyril Ferlicot for his help. Cheers, Julien --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Hal

Re: [Pharo-users] [ANN] Pharo open documentation

2019-01-30 Thread Julien
» should hold pointers to all the repositories of Pharo open documentation organisation. It might be a good idea. :-) Julien --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley 59650 Villeneuve d'Ascq Numé

Re: [Pharo-users] Tonel vs Filetree

2019-02-10 Thread Julien
It is. It makes contribution to the wiki directly from GitHub's web application easy and fast. Cheers, Julien --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley 59650 Villeneuve d'Ascq Numéro de

Re: [Pharo-users] [ANN] CouchDB Client for Pharo

2019-03-13 Thread Julien
Cool! I added an entry [1] for it to awesome-pharos [2]. Cheers, Julien Links: [1]: https://github.com/pharo-open-documentation/awesome-pharo/pull/56 [2]: https://github.com/pharo-open-documentation/awesome-pharo --- Julien Delplanque Doctorant à l’Université de Lille http

Re: [Pharo-users] Generating changelogs for projects

2019-06-27 Thread Julien
Nice article! --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40 > Le 27 juin 2019 à 21:30, Cyril Ferlicot D. a écrit > : > >

Re: [Pharo-users] Python bridges

2019-06-28 Thread Julien
. Cheers, Julien Links: [1]: https://github.com/juliendelplanque/Python3Generator --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40 > Le

Re: [Pharo-users] [Pharo-dev] [ANN] OSWinSubprocess a library to spawn Windows System processes

2019-07-30 Thread Julien
Done. https://github.com/pharo-open-documentation/awesome-pharo/pull/89 <https://github.com/pharo-open-documentation/awesome-pharo/pull/89> Julien --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley

Re: [Pharo-users] alt-tab in pharo?

2019-08-15 Thread Julien
> Le 15 août 2019 à 05:28, Tim Mackinnon a écrit : > > However there is an alternative you can load in that does a better job - > Mirage , https://github.com/juliendelplanque/Mirage > <https://github.com/juliendelplanque/Mirage> > Thanks for promoting it Tim :-) Che

[Pharo-users] [ANN] Iterators

2019-08-23 Thread Julien
8@8). (9@9). (10@10)}" Yes, "&" operator will again kind of mimic the one from the shell. — Hope it helps other people. Feedback is welcome. Cheers, Julien --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40

Re: [Pharo-users] [ANN] Iterators

2019-08-23 Thread Julien
I made a mistake in the following snippet: > Le 23 août 2019 à 16:14, Julien a écrit : > > iterator := #(1 2 3) iterator. > collectionToFill := OrderedCollection new. > iterator > | [ :x | x * 2 ] collectIt > | [ :x :y | x + y ] reduceIt >

Re: [Pharo-users] [ANN] Iterators

2019-08-25 Thread Julien
> Le 24 août 2019 à 09:29, Steffen Märcker a écrit : > > Hi Julien, Hello Steffen, > > nice work! Could you please tell how your approach is related to > transducers from the user perspective and technically? > (https://github.com/Pharophile/Transducers) It is quite s

[Pharo-users] SequenceableCollection>>#allButFirst: inconsistence across subclasses

2019-08-30 Thread Julien
ehaviour from #allButFirst: is not the same to all people. We need to decide so we improve consistence of collections. And then, we need to document that with a test :-). Cheers. Julien --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inr

Re: [Pharo-users] SequenceableCollection>>#allButFirst: inconsistence across subclasses

2019-09-04 Thread Julien
> Le 4 sept. 2019 à 17:12, lesage yann a écrit : > > Hi, > Can you open an another thread to talk about guns and stay on inconsistency > issue here ? > Thanks Agree, but I think it is already too late, the focus is lost now... Regards, Julien

Re: [Pharo-users] [Pharo-dev] Pharo Branding Organization on GitHub

2019-09-04 Thread Julien
Nice initiative Torsten! Cheers, Julien --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone: +333 59 35 86 40 > Le 4 sept. 2019 à 17:25, Torsten Bergmann

Re: [Pharo-users] My Pharo Wiki

2019-09-09 Thread Julien
to contribute, we would be happy of any help! :-) Cheers, Julien Links: [1]: https://github.com/pharo-open-documentation/pharo-wiki <https://github.com/pharo-open-documentation/pharo-wiki> --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equip

Re: [Pharo-users] Pillar in-image rendering as RichText

2019-10-21 Thread Julien
Nice work Kasper! I can’t wait to have a tab with rendered pillar when browsing class comment. :-) Julien --- Julien Delplanque Doctorant à l’Université de Lille http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, Avenue Halley 59650 Villeneuve d'Ascq Numéro de téléphone:

[Pharo-users] Smalltalk syntactic coloration in Spec's TextModel

2017-05-03 Thread Julien Delplanque
ceCode; openWithSpec The text displayed is black. Thanks in advance, Julien

Re: [Pharo-users] Smalltalk syntactic coloration in Spec's TextModel

2017-05-04 Thread Julien Delplanque
Thanks, it works. Another question: Is it possible to manage the fact that the code displayed is a method? (ie not having the selector and instance variables causing the syntactic coloration to be red) Thanks in advance, Julien On 03/05/17 17:09, Nicolai Hess wrote: 2017-05-03 16:57 GMT+02

Re: [Pharo-users] Smalltalk syntactic coloration in Spec's TextModel

2017-05-04 Thread Julien Delplanque
Thanks, it works perfectly. Julien On 04/05/17 13:11, Nicolai Hess wrote: 2017-05-04 12:53 GMT+02:00 Julien Delplanque : Thanks, it works. Another question: Is it possible to manage the fact that the code displayed is a method? (ie not having the selector and instance variables causing the

[Pharo-users] SSL/TLS plugin initailization failed (VM plugin missing ? OS libraries missing ?)

2017-05-08 Thread Julien Delplanque
Hello, I have this error when trying to use the network: "SSL/TLS plugin initialization failed (VM plugin missing ? OS libraries missing ?)" What library could be missing on my operating system? I appears after an update of my operating system I think. I am on Archlinux. Julien

Re: [Pharo-users] SSL/TLS plugin initailization failed (VM plugin missing ? OS libraries missing ?)

2017-05-08 Thread Julien Delplanque
ther people on Arch will encounter this problem. Julien

Re: [Pharo-users] SSL/TLS plugin initailization failed (VM plugin missing ? OS libraries missing ?)

2017-05-08 Thread Julien Delplanque
(0xf735b000) So it is still not working, I still get the exception in Pharo. :-( Julien On 08/05/17 12:50, Sven Van Caekenberghe wrote: What does the following return for you ? $ ldd bin/pharo-vm/libSqueakSSL.so linux-gate.so.1 => (0xf779e000) libssl.so.1.0.0 => /lib/i

Re: [Pharo-users] SSL/TLS plugin initailization failed (VM plugin missing ? OS libraries missing ?)

2017-05-08 Thread Julien Delplanque
Yes, it does but the file is present and normally in the right version. I installed it using the package manager. Julien On 08/05/17 13:21, Sven Van Caekenberghe wrote: On 8 May 2017, at 13:17, Julien Delplanque wrote: Ok, I installed the missing library: yaourt -S lib32-openssl-1.0 now

Re: [Pharo-users] SSL/TLS plugin initailization failed (VM plugin missing ? OS libraries missing ?)

2017-05-09 Thread Julien Delplanque
uteWithRetriesRemaining: self numberO...etc... [ ^ block value ] in ZnClient>>withTimeoutDo: in Block: [ ^ block value ] [ p psValueAt: index put: anObject. aBlock value ] in ZnConnectionTimeout(DynamicVariable)>>value:during: in Block: [ p psValueAt: index put: anObject.... BlockClosure>

Re: [Pharo-users] SSL/TLS plugin initailization failed (VM plugin missing ? OS libraries missing ?)

2017-05-14 Thread Julien Delplanque
or that if needed. Who manage the pharo-related packages for Arch? Julien On 09/05/17 11:24, Sven Van Caekenberghe wrote: For Pharo 5, on the same machine: $ curl get.pharo.org/50+vm | bash ... $ ./pharo --version 5.0 #1 Wed May 4 11:54:28 CEST 2016 gcc 4.6.3 [Production Spur ITHB VM] CoI

Re: [Pharo-users] Can we auto translate Python to Smalltalk?

2017-06-02 Thread Julien Delplanque
API. Now, you have to see if it is always possible to convert a Python AST to a Pharo AST. One day, I read about someone that converted Python to Ruby (or the opposite) using bytecode translation. Maybe it is another way to do it. Julien Links: [1]: https://github.com/juliendelplanque

[Pharo-users] SQLite3 - External module not found

2015-02-28 Thread Julien Delplanque
#x27;. c open. Maybe I'm missing something with the libsqlite3.so file? Thanks in advance, Julien

Re: [Pharo-users] SQLite3 - External module not found

2015-02-28 Thread Julien Delplanque
First, thanks to take time to answer me. On 28/02/15 22:50, Bernardo Ezequiel Contreras wrote: > the symbolic link works in my pc. did you restart the image after > creating the link? or maybe the link is in the wrong place? Ok, I'll be a little more precise: The libsqlite3.so file is located in

Re: [Pharo-users] SQLite3 - External module not found

2015-03-01 Thread Julien Delplanque
ell?). So I searched on google and found a 32bit version. I just c/c it in the pharo vm's bin directory and it worked! The the problem was the version of the lib (64 vs 32bit). Once again, thanks a lot :) Julien

Re: [Pharo-users] SQLite3 - External module not found

2015-03-01 Thread Julien Delplanque
lib etc Maybe also give the exact commands to have it fully working on each platforms? Who do I have to contact if I want to help by writing a little bit more about installation details? I mean no offense, I just want to help next people that will have troubles with that :p Julien

Re: [Pharo-users] SQLite3 - External module not found

2015-03-02 Thread Julien Delplanque
Thanks for the documentation update :) On 01/03/15 21:49, Torsten Bergmann wrote: > Hi Julien, > > there are two projects on my STHub account: SQlite and NBSQLite3to work with > SQlite RDBMS. > The first one is older and I would recommend to use NBSQLite3. > > I changed the

[Pharo-users] Statistics package in Pharo?

2015-03-03 Thread Julien Delplanque
Hi everyone, Does anyone know if there is a package that contains implementation of statistics tests like Kolmogorov-Smirnov test, Khi-2 test, etc? I did fast research in Smalltalkhub but didn't found anything. Thanks in advance, Julien

Re: [Pharo-users] Statistics package in Pharo?

2015-03-03 Thread Julien Delplanque
wser->NumericalMethods. > > Check if it has what you need > > 2015-03-03 11:40 GMT+01:00 Julien Delplanque : > >> Hi everyone, >> >> Does anyone know if there is a package that contains implementation of >> statistics tests like Kolmogorov-Smirnov test, Khi-2

Re: [Pharo-users] Statistics package in Pharo?

2015-03-03 Thread Julien Delplanque
Doesn't look like there is what I'm looking for. Maybe I'll implement things I need if I have time but probably not a complete package for statistics. :) On 03/03/15 12:46, Alexandre Bergel wrote: > Hi Julien, > > Indeed, having a nice statistical package is missing

Re: [Pharo-users] Statistics package in Pharo?

2015-03-03 Thread Julien Delplanque
On 03/03/15 12:54, Serge Stinckwich wrote: > Hi Julien, there is no KS-tests in this package. This is also something I'm > looking for :-) > NumericalMethods package is now part of SciSmalltalk distribution: > https://github.com/SergeStinckwich/SciSmalltalk Hi! Nice I'l

Re: [Pharo-users] Statistics package in Pharo?

2015-03-03 Thread Julien Delplanque
python for another project (but I don't think you are one of my professor :p). I will do it soon but I'm still noob in smalltalk so I don't know where to implement this and how: class messages or object messages for example? Julien

Re: [Pharo-users] Statistics package in Pharo?

2015-03-03 Thread Julien Delplanque
On 03/03/15 18:03, Werner Kassens wrote: > hi Julien, Hi! > you can find chisquare-test, f-test, t-test in numericalmethods > werner Oh, thanks I'll check this out! > and you can find the doku here: > https://github.com/SquareBracketAssociates/NumericalMethods/releases > werner >

[Pharo-users] Any framework to create a blog over seaside?

2015-03-09 Thread Julien Delplanque
Hi, I wonder if there are existing projects/frameworks to create a blog in pharo? If there are I suppose they use seaside? Regards, Julien

Re: [Pharo-users] I need to put smalltalkhub down (max 30m)

2015-03-09 Thread Julien Delplanque
All my projects disappears should I be worried? On 09/03/15 14:45, Esteban Lorenzano wrote: > no, not yet… just wait a few minutes more please. > >> On 09 Mar 2015, at 14:43, Esteban Lorenzano wrote: >> >> ok… looks like it is back… but no promises :P >> >> Esteban >> >>> On 09 Mar 2015, at 14:13

Re: [Pharo-users] Any framework to create a blog over seaside?

2015-03-10 Thread Julien Delplanque
On 09/03/15 21:56, stepharo wrote: > If you take pier you get a blog out of the box It's no longer maintained isn't it? On 10/03/15 13:54, Esteban Lorenzano wrote: > there are also a couple of implementations > > http://smalltalkhub.com/#!/~mikefilonov/QDBlog >

Re: [Pharo-users] Any framework to create a blog over seaside?

2015-03-10 Thread Julien Delplanque
On 10/03/15 17:28, Stephan Eggermont wrote: > On 10/03/15 16:12, Julien Delplanque wrote: >> On 09/03/15 21:56, stepharo wrote: >>> If you take pier you get a blog out of the box >> It's no longer maintained isn't it? > > What do you mean? Diego posted on ho

[Pharo-users] Get OS uptime

2015-03-18 Thread Julien Delplanque
ng ''. I don't know if there are messages in some specific classes to do this (in OSProcess for example?). Thanks in advance. Julien

Re: [Pharo-users] Get OS uptime

2015-03-19 Thread Julien Delplanque
e > T. > Thank you, that's exactly what I was looking for, I'll check it later. Julien

Re: [Pharo-users] Get OS uptime

2015-03-19 Thread Julien Delplanque
ernel32 > > and then you can call it like that: > NBWin32Shell getUptime milliSeconds. > Ok, nice to see there are different way to do it :) But I think I'll use Torsten's solution. Thank for the response anyway :) Julien

Re: [Pharo-users] Get OS uptime

2015-03-19 Thread Julien Delplanque
On 19/03/15 11:10, Esteban Lorenzano wrote: > '/proc/uptime' asFileReference readStreamDo: [ :stream | stream contents ]. > > is better way. > > but you will still get an empty string because actually ‘/proc’ does not > contains real files… so the file plugin does not applies there (and is > ano

Re: [Pharo-users] Get OS uptime

2015-03-19 Thread Julien Delplanque
On 19/03/15 11:51, Esteban Lorenzano wrote: >> On 19 Mar 2015, at 11:35, Julien Delplanque wrote: >> >> >> On 19/03/15 11:10, Esteban Lorenzano wrote: >>> '/proc/uptime' asFileReference readStreamDo: [ :stream | stream contents ]. >>> >&g

Re: [Pharo-users] new link to query all projects in smalltalkhub

2015-03-22 Thread Julien Delplanque
Hi Esteban, Seems that the link is dead now? Regards, Julien -- View this message in context: http://forum.world.st/new-link-to-query-all-projects-in-smalltalkhub-tp4810881p4814203.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] new link to query all projects in smalltalkhub

2015-03-22 Thread Julien Delplanque
Oh, yes i missed it sorry! It would be good to have a link somewhere on smalltalkhub that inform the existence of this resource :) Julien On 22/03/15 21:41, Esteban Lorenzano wrote: > yes… it is no more. > > now is http://smalltalkhub.com/list <http://smalltalkhub.com/list> &g

[Pharo-users] XClipboard

2015-03-24 Thread Julien Delplanque
ut it? Is there a better way to do that easily? Does anyone see a problem with this "quick fix"? As I said for me it works well for the moment but I can't be certain it will in any case. Thanks in advance, Julien

Re: [Pharo-users] XClipboard

2015-03-24 Thread Julien Delplanque
Ho thanks for pointing me this solution it works well. I will use it because I don't like the fact I had to touch to the System for my solution. You're saving me from a lot of Chromium->Sublime Text, Sublime Text->Pharo :) Thank you once again! Julien On 24/03/15 21:30, Peter U

[Pharo-users] JavaLoader

2015-03-26 Thread Julien Delplanque
and the mailing list's archives but didn't found any doc/examples... Maybe I'm not searching in the right place? :) Thanks in advance, Julien

Re: [Pharo-users] JavaLoader

2015-03-26 Thread Julien Delplanque
pdate with the > latest Pharo releases. But, I haven't used it in a long time because I > originally developed it to load in Java serialized streams and to read in > Java class files. > > Let me know if you need anything. > > On Thu, Mar 26, 2015 at 8:39 AM, Julien Delplanque wro

  1   2   3   >