2016-06-07 8:21 GMT+02:00 Peter Uhnak :
> Hi,
>
> is it possible to return "synchronously" even if I have an asynchronous
> message?
>
> For example:
>
> SomeObject>>someMethod
> ^ UIManager default chooseFrom: #(a b c)
>
> When the above method is executed, it will open a popup and block
Hi,
is it possible to return "synchronously" even if I have an asynchronous message?
For example:
SomeObject>>someMethod
^ UIManager default chooseFrom: #(a b c)
When the above method is executed, it will open a popup and block the execution
until I select something, then it will retur
Hi,
I was reading about the VM stuff and assumed (wrongly) that the post applied to
that. Sorry for the noise.
Thanks,
-G
-Original Message-
From: Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] On Behalf Of
stepharo
Sent: Tuesday, June 7, 2016 12:48 AM
To: Any question abou
Not that one :)
https://www.youtube.com/watch?v=7spEW4NLbH8
Stef
On Mon, Jun 06, 2016 at 08:34:40PM +0200, Sven Van Caekenberghe wrote:
>
> > On 06 Jun 2016, at 17:22, Sabine Manaa wrote:
> >
> > why ByteArray?
>
> http://www.unicode.org/faq/utf_bom.html
>
> A Unicode transformation format (UTF) is an algorithmic mapping from every
> Unicode code point (ex
For general UI, use Spec.
For browser** based UI, check Glamour.
**Meaning like Pharo System Browser, not a web browser.
Not sure if there another term that could avoid any confusion?
cheers -ben
On Tue, Jun 7, 2016 at 3:59 AM, sergio ruiz wrote:
> is there one GUI framework that is being used
Great! Thanks! I will take a look at this..
> On Jun 6, 2016, at 4:12 PM, Johan Fabry wrote:
>
> the standard way to build UIs in Pharo is by using Spec. There is a video of
> me presenting it at the Pharo Days 2015 that gives you a first overview
> https://www.youtube.com/watch?v=OL23s9ZUIR0
Hi Sergio,
the standard way to build UIs in Pharo is by using Spec. There is a video of me
presenting it at the Pharo Days 2015 that gives you a first overview
https://www.youtube.com/watch?v=OL23s9ZUIR0&feature=youtu.be&list=PL4actYd6bfnz98ngrKALwwStl3C3odEKG
There is also written documentatio
Glamour and Spec :-)
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
> On Jun 6, 2016, at 3:59 PM, sergio ruiz wrote:
>
> is there one GUI framework that is being used more than the others
yes, but i kind of want to avoid the web.. i just want something that works
natively without the headaches of browser incompatibility. I also want an app
to feel snappy and able to make OS calls..
> On Jun 6, 2016, at 3:51 PM, Alexandre Bergel wrote:
>
> Hi Sergio,
>
> You are very right. Ph
is there one GUI framework that is being used more than the others, or that is
more mature?
Thanks!
> On Jun 6, 2016, at 3:51 PM, Alexandre Bergel wrote:
>
> You are very right. Pharo offers several GUI framework, including Spec,
> Glamour.
> Check for Deep Into Pharo, a book which talk abou
I am using Seaside and the UI is web based.
Even if Pharo runs locally.
Maybe Bloc and a VM running on ARM/Android will change this but as most
users are using mobile devices, well, that's the best I can target for now.
Phil
On Mon, Jun 6, 2016 at 8:56 PM, sergio ruiz wrote:
> It would seem to
Hi Sergio,
You are very right. Pharo offers several GUI framework, including Spec, Glamour.
Check for Deep Into Pharo, a book which talk about theses.
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~
Hi Sven,
thank you very much for your explanation. I will read the pharo book
chapter again tomorrow morning.
Each time I have to do with encoding, I have to start again with
reading;-(
I was not asking for the reason of encoding but because OSProcess command:
needs a String and not a Byte Ar
It would seem to me that in order for an ecosystem to really take hold on the
part of the users, it’s really important that it’s efficient and easy to create
a GUI based application.
Can anyone comment on the current state of libraries for creating and
distributing GUI applications?
Thanks!
-
I am currently planning a mobile (iOS) app that will rely on a REST server for
handling offline tasks (sending emails, processing reports, etc).
I would LOVE to use Pharo/Teapot for this, but I want to make sure that this
configuration would be up to the task. I can’t really guess how much traf
> On 06 Jun 2016, at 17:22, Sabine Manaa wrote:
>
> why ByteArray?
http://www.unicode.org/faq/utf_bom.html
A Unicode transformation format (UTF) is an algorithmic mapping from every
Unicode code point (except surrogate code points) to a unique byte sequence.
https://en.wikipedia.org/wiki/UTF
Sorry, I did a mistake. I reversed it by mistake.
asString is needed.
does work :
OSProcess command: ('cp /Library/WebServer/Documents/reports/bär.pdf
/Library/WebServer/Documents/reports/test-a.pdf' utf8Encoded asString).
does not work (Improper store into indexable object):
OSProcess comma
Hi Dave, Sabine, Norbert et all,
Few weeks (months?) ago I was also reviewing this topic of encoding a
OS(Sub)Process. After surfing a bit the web, I found out the most simple
and accurate answer/solution was indeed to set the correct locale and/or
text encoding in the computer in question. Anyway
Norbert,
You are probably right. I'm not sure the best way to handle it.
Dave
> Dave,
>
>> Am 06.06.2016 um 18:13 schrieb David T. Lewis :
>>
>> Hi Sabine,
>>
>> That's great that #utf8Encoded is working, thanks for confirming.
>>
>> I'll look and see if I can add that to OSProcess (I'm travelin
Hi,
someone know the state of Magma for pharo5? there is a port of magma for
pharo 5?
--
View this message in context:
http://forum.world.st/magma-for-pharo-5-tp4899426.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
Dave,
> Am 06.06.2016 um 18:13 schrieb David T. Lewis :
>
> Hi Sabine,
>
> That's great that #utf8Encoded is working, thanks for confirming.
>
> I'll look and see if I can add that to OSProcess (I'm traveling and cannot
> look at it right now).
>
> Mariano - this thread probably applies to OSS
Hi Sabine,
That's great that #utf8Encoded is working, thanks for confirming.
I'll look and see if I can add that to OSProcess (I'm traveling and cannot
look at it right now).
Mariano - this thread probably applies to OSSubProcess also.
Dave
> Hi Sven,
>
> why ByteArray?
>
> does not work (Impr
Hi Sven,
why ByteArray?
does not work (Improper store into indexable object):
OSProcess command: ('cp /Library/WebServer/Documents/reports/bär.pdf
/Library/WebServer/Documents/reports/test-a.pdf' utf8Encoded asString).
works:
OSProcess command: ('cp /Library/WebServer/Documents/reports/bär
That looks really great ! It solves the practical problem and, for me, also
addresses the conceptual issues that Doru has.
Doru, what do you think of this solution? The buttons are still connected to
the stack, they are just below the stack instead of on top.
I also don’t see why a ‘Stack’ lab
--- Begin Message ---
Hi I have a solution for the problem you mentioned. I know what needs to
be done to be able to type those pesky e with caron, c with caron and
uppercase C with caron characters on Pharo 3, 4 and 5 on Windows. But
I want you to do something for me in return. I want you to go to
On Sun, Jun 05, 2016 at 03:38:17PM -0700, francescoagati wrote:
> NBSQLite3DatabaseAccessor isn't present. i have substitute with
> DatabaseAccessor.
> but i have this error unable to connect
Try this:
| login accessor |
login := Login new
database: UDBCSQLite3Platform new;
host: Sma
Hi Erisa,
one solution, using your notation, could eg be
* aPowerSeries
^ PowerSeries on:
[ :generator |
|a b|
a:=OrderedCollection new.
b:=OrderedCollection new.
[ a add: self next.
b add: aPowerSeries nex
Yes is broken, and I'm traveling so I will not be able to fix it until this
afternoon :(
Esteban
> On 6 Jun 2016, at 13:50, Tommaso Dal Sasso wrote:
>
> Hello everybody,
>
> it looks like the pharo catalog has a problem with the database: if I query
> the web service, or browse the page http
Hello everybody,
it looks like the pharo catalog has a problem with the database: if I
query the web service, or browse the page http://catalog.pharo.org/, I
get the following error.
VOMongoError: Lazy reference not found CatalogRepository:
OID(67173037322134959457277313026)
Maybe some agg
Hi Doru,
I think most people understand the great value of moldable tools. Maybe not all
will use moldability but is a big plus to have. So, keep pushing!
I just think we miss time to make the GT Debugger dealt view as productive as
the spec debugger. There are users that do not use shortcuts
Hi,
I saw a post with the title "Spur Cog vs VW". Has anyone done this yet? Is
there some code available somewhere that I could run? I have been searching on
Google, but I haven't found much. A pointer in the right direction would be
much appreciated. I'm really curious ;-)
Thanks,
-G
Hi Dave,
I get the german ä with:
(Character value: 228) asString
Do you want me to go in it and suggest a solution or do you want to try to
fix it and I test it?
Thanks for helping!
Regards Sabine
2016-06-05 23:08 GMT+02:00 David T. Lewis [via Smalltalk] <
ml-node+s1294792n4899301...@n4.nabb
33 matches
Mail list logo