[Pharo-dev] Re: pharo9 tools moldability

2021-12-19 Thread Danil Osipchuk
moose-tool.html > > ------ > > *De: *"Danil Osipchuk" > *À: *"Pharo Development List" > *Envoyé: *Samedi 18 Décembre 2021 15:06:33 > *Objet: *[Pharo-dev] pharo9 tools moldability > > Dear all, > > Being a long time smalltalk user (meaning I

[Pharo-dev] Re: pharo9 tools moldability

2021-12-19 Thread Danil Osipchuk
e using for a new compiler we are building > > > On 18 Dec 2021, at 16:06, Danil Osipchuk wrote: > > Dear all, > > Being a long time smalltalk user (meaning I'm crafting tools for my own > usage for domains I'm working with) I always relied upon the environment > itsel

[Pharo-dev] pharo9 tools moldability

2021-12-18 Thread Danil Osipchuk
Dear all, Being a long time smalltalk user (meaning I'm crafting tools for my own usage for domains I'm working with) I always relied upon the environment itself to interact with models to spare time creating user interfaces. Besides plain inspectors I used metafacilities where possible --

[Pharo-dev] Re: Can anyone get recent Pharo9 builds to work on Linux?

2020-12-27 Thread Danil Osipchuk
h linux version. > > Esteban > On Dec 27 2020, at 10:51 am, Danil Osipchuk > wrote: > > I can confirm text input is severely broken backspace/del (tried on Linux > buster, but it seems to be an image problem) -- control characters > themselves get inserted into text pane. >

[Pharo-dev] Re: Can anyone get recent Pharo9 builds to work on Linux?

2020-12-27 Thread Danil Osipchuk
I can confirm text input is severely broken backspace/del (tried on Linux buster, but it seems to be an image problem) -- control characters themselves get inserted into text pane. Type a string into a pane, ex. '123456789', position cursor somewhere in the middle, press del/backspace/ left

[Pharo-dev] Browsing crashed image

2020-12-23 Thread Danil Osipchuk
Hi, Pharoes Is there a simple way to file out a package from an image which is crashing? The most close thing I found is Epicea/code changes tool - it seems that I have to apply all changes I did (and they are numerous, I didn't expect the image will die since I did nothing fancy, so was just

Re: [Pharo-dev] Wrong behavior of receiveDataInto:fromHost:port:

2020-01-26 Thread Danil Osipchuk
fer may be only partially filled by the received data." [ datagram := self receiveUDPDataInto: aStringOrByteArray. ((datagram at: 2) = hostAddress and: [(datagram at: 3) = portNumber]) ifTrue: [^datagram at: 1] ifFalse: [^0]] repeat вс, 26 янв. 2020 г. в 13:14, Danil Osipchuk : > As soon

Re: [Pharo-dev] Wrong behavior of receiveDataInto:fromHost:port:

2020-01-26 Thread Danil Osipchuk
As soon as you start listening on udp port every host having connectivity will be able to send you a datagram which will hit a smalltalk handler. It is a concern both from performance and security pov. You may be willing to implement your own protocol suit on top of udp to have a tcp like

Re: [Pharo-dev] about signal

2020-01-10 Thread Danil Osipchuk
o needed for a > more complete understanding. > > This is not a simple subject. > > Read https://en.wikipedia.org/wiki/Semaphore_(programming) and see how > well you understand the subject. > > In short, it does not answer Stef's concrete question(s). > > > On 10 Jan 2020, a

Re: [Pharo-dev] about signal

2020-01-09 Thread Danil Osipchuk
Maybe to add this into the class comment, this is the most concise and clear description of how it works i've ever seen пт, 10 янв. 2020 г., 8:13 Eliot Miranda : > > > On Thu, Jan 9, 2020 at 5:03 AM ducasse wrote: > >> Hi >> >> I wanted to explain >> >> | semaphore p1 p2 | >> semaphore :=

Re: [Pharo-dev] Horizontal scrolling in FastTable

2019-11-07 Thread Danil Osipchuk
= true in FTTableMorth>>initialize (like I have to enable it everywhere by default) (as a side note the list is very quiet, compared to what it used to be years ago) пн, 4 нояб. 2019 г. в 14:14, Danil Osipchuk : > Hi all > > I wonder what is happening to the horizontal scrolling in

[Pharo-dev] Horizontal scrolling in FastTable

2019-11-04 Thread Danil Osipchuk
Hi all I wonder what is happening to the horizontal scrolling in FastTable, the stub is there for years (I've checked the latest 8.0). I need it rather badly, could someone advise what is the hindrance there? I would try doing it myself, but I've never was doing much of UI programming and only

[Pharo-dev] need some help with NBCallback related crashes

2014-02-12 Thread Danil Osipchuk
Hello all I'm currently playing with NativeBoost (a great thing to have) and pharo consistently crashes after running for a while. My impression is that crashes happen during GCs as if something moves under the installed callback. This may be also related to the libpcap itself, but how can I