Re: [Jprogramming] J903-beta-c

2021-01-30 Thread Joey K Tuttle
No joy in Mudville... JVERSION Engine: j902/j32/raspberry Release-a: commercial/2020-12-08T14:21:56 Library: 9.03.01 Platform: Linux 32 Installer: J903 install InstallPath: /usr/local/lib/j903 Contact: www.jsoftware.com load'pacman' 'update' jpkg '' Updating s

Re: [Jprogramming] J903-beta-c

2021-01-30 Thread bill lam
The crash may be caused by a bug in beta-c, I think you should help us to resolve the issue rather than reverting to earlier versions. This is the purpose of distributing beta to testers. On Sat, Jan 30, 2021, 11:10 PM 'Michael Day' via Programming < programm...@jsoftware.com> wrote: > Thanks. >

Re: [Jprogramming] J903-beta-c

2021-01-30 Thread chris burke
FYI, you can have a common user directory. The location is defined in profile.js and can be changed. See also profilex_template.ijs. On Sat, Jan 30, 2021 at 7:28 AM Raul Miller wrote: > > Personally, I have j807, j901, j902 and j903 installed on this > machine. It's a minor inconvenience to have

Re: [Jprogramming] J903-beta-c

2021-01-30 Thread Raul Miller
Personally, I have j807, j901, j902 and j903 installed on this machine. It's a minor inconvenience to have different user directories for each version -- I would prefer to have a common user directory instead of a bunch of little ones (that would also encourage me to be more version aware in my cod

Re: [Jprogramming] J903-beta-c

2021-01-30 Thread 'Michael Day' via Programming
Thanks. (NB replying to Programming - would otherwise be Beta) Unfortunately,  for a reason I can't ascertain,  JQt 903 beta-c crashes when I load my home-made UK Covid data checker.  Nothing revolutionary,  but I like to download the daily updates and see how we're doing. So I'd like to reve

Re: [Jprogramming] J903-beta-c

2021-01-30 Thread bill lam
J903-beta-c is available for 32-bit and 64-bit raspberry pi. On Sat, Jan 30, 2021 at 3:31 AM Eric Iverson wrote: > J903-beta-c is available for windows/linux/macos (fixes bug in the beta-b). > > If you already run J903-beta, then upgrade is easy: >load'pacman' >'upgrade'jpkg'' NB. ensure

Re: [Jprogramming] Umlauts in Character Arrays

2021-01-30 Thread Hauke Rehr
Note that you can also say, e. g., (; #) 2&#&.ucp ca Am 30.01.21 um 12:17 schrieb bill lam: > It depends on your applications, eg text processing with primitives such # > { {. etc then unicode datatype is more convenient because 1 character = 1 > atom. But J (and other languages) scripts source a

Re: [Jprogramming] Umlauts in Character Arrays

2021-01-30 Thread bill lam
It depends on your applications, eg text processing with primitives such # { {. etc then unicode datatype is more convenient because 1 character = 1 atom. But J (and other languages) scripts source and many external environments such as webpages, linux IO are using utf-8 (multiple byte encoding) .

Re: [Jprogramming] Umlauts in Character Arrays

2021-01-30 Thread Thomas Bulka
2021-01-30 08:58 GMT+01:00 "bill lam" : > The ü is represented by 2 bytes although it displays as a single characteron > screen. > ca =: 'Hüte' > > #ca > > 5 > > 1 2{ca > > ü > > > Alternatively you can convert it to unicode datatype > > 1 { ucp ca > > ü Hi Bill, thank you very much. Th