[Jprogramming] J903-beta-v JQT on M1 macos

2021-11-19 Thread Aaron Ash
re a step that I have missed? I can go through the steps to build jqt from source but I would have thought there would be an easier way for most users to get jqt running. Cheers, Aaron Ash. -- For information about J forums see http://www.jsoftware.com/forums.htm

Re: [Jprogramming] J903-beta-v JQT on M1 macos

2021-11-19 Thread Aaron Ash
64-bit dynamically linked shared library x86_64 bin/profile.ijs: ASCII text bin/profilex_template.ijs: CLIPPER instruction profile Do I also need to manually install the right version of Qt5 somewhere that dyld can find it? Cheers, Aaron Ash. On Sat, Nov 20, 2021 at 3:36 PM Norman Drink

Re: [Jprogramming] J903-beta-v JQT on M1 macos

2021-11-20 Thread Aaron Ash
I followed your steps above with the directory in ~/Downloads/j903 and it still didn't work, then moved the directory to ~/j903 and ran 'install'jpkg'*' again and it created the Qt directory and required libs. Is that location hard coded somewhere that it shouldn't be? Che

Re: [Jprogramming] J903-beta-v JQT on M1 macos

2021-11-20 Thread Aaron Ash
e from deploying there. > > On the other hand, I expect that ~/Applications/j903/ should work. > > (But I do not have an M1 to test this.) > > FYI, > > -- > Raul > > On Sat, Nov 20, 2021 at 9:15 PM Aaron Ash wrote: > > > > Hi Norman, > > > >

[Jprogramming] possible length error bug

2021-12-08 Thread Aaron Ash
Hi All, I've just noticed some strange behavior comparing an integer to a boolean array. JVERSION Engine: j902/j64avx2/linux Release-b: commercial/2021-02-18T11:52:47 Library: 9.02.08 Qt IDE: 1.9.2/5.9.5(5.15.2) Platform: Linux 64 Installer: J902 install InstallPath: /home/aaron/Downloads/j902 Co

Re: [Jprogramming] possible length error bug

2021-12-08 Thread Aaron Ash
; is equivalent to > (, 1) = 1 0 1 > datatypes don’t matter > $ 'a' > > ] l1 =. (,1) { 'ab' > a > $ l1 > 1 > 'a' = 'abc' > 1 0 0 > l1 = 'abc' > > > > > Am 08.12.21 um 13:25 schri

Re: [Jprogramming] Report on the J wiki meeting of January 27, 2022

2022-02-01 Thread Aaron Ash
There's also these J bindings that can be used to read/write parquet files directly from J: https://github.com/interregna/JArrow On Wed, Feb 2, 2022 at 5:27 PM Stefan Baumann wrote: > > Ric, You might want to check out DuckDB (https://duckdb.org/), I recently > used it for reading and writing Par

Re: [Jprogramming] Report on the J wiki meeting of January 27, 2022

2022-02-02 Thread Aaron Ash
still missing. On Wed, 2 Feb 2022 at 7:34 pm, Ric Sherlock wrote: > Thanks Aaron - that looks really promising. Will check it out & see if I > can get it to work. > > On Wed, Feb 2, 2022 at 8:48 PM Aaron Ash wrote: > > > There's also these J bindings that can be used t

[Jprogramming] jreference addon request for comments

2022-05-17 Thread Aaron Ash
Hi Everyone, NuVoc and the j wiki are fantastic resources but I often find myself wanting a quick reference directly in the repl. So, to scratch my own itch, I've put together a simple reference addon inspired by the ngn/k built in reference docs. The repo is on github here: https://github.com/As

Re: [Jprogramming] jreference addon request for comments

2022-05-17 Thread Aaron Ash
al (in my brief > tests). Maybe the control-F1 support could use some attention (and > maybe I mis-remembered what it did, in which case "could use some > attention" might be interpreted as "could be extended to provide some > additional information"). > > Thanks,

Re: [Jprogramming] jreference addon request for comments

2022-05-17 Thread Aaron Ash
Hi Viktor, Great idea, an updated J RefCard would also be nice to have. I don't know TeX or LaTeX but I do use orgmode in emacs which has some nice export to html/pdf/latex integrations. Maybe we could collaborate on something like this in an orgmode document on github? Cheers, Aaron. On Tue, Ma

Re: [Jprogramming] J Playground neural network demo

2022-06-04 Thread Aaron Ash
Awesome! I also saw the same scrolling glitches in Firefox on Linux. On Sun, Jun 5, 2022 at 6:42 AM Jan-Pieter Jacobs wrote: > > I had some fun putting J Playground through its paces and wrote the > following neural network demo: > > https://jsoftware.github.io/j-playground/bin/html2#url=https:/

[Jprogramming] tables/dsv extreme memory usage

2020-05-04 Thread Aaron Ash
Hi, I've noticed that the tables/dsv addon seems to have an extremely high memory growth factor when processing csv data: load 'tables/csv'dat=: (34;'45';'hello';_5.34),: 12;'32';'goodbye';1.23d=: makecsv dat# d NB. 45 chars longtimespacex 'fixcsv d'NB. 2.28e_5 48644864 % 45 NB. 108.089 factor of

Re: [Jprogramming] boxes display as indented outline

2023-05-01 Thread Aaron Ash
I really like gron for quick json exploration: https://github.com/tomnomnom/gron I've been meaning to write an equivalent in j but haven't yet. Is that flattening behaviour sort of what you mean by "outline form"? On Tue, May 2, 2023 at 12:48 PM David Lambert wrote: > > I've loaded a json object

Re: [Jprogramming] J - bootstrapped

2023-05-13 Thread Aaron Ash
Thanks Jan-Pieter, That PrimitivePrimitives page looks quite helpful for the rust implementation of j I started a few months ago. It's here if anyone has any interest in rust: https://github.com/AshyIsMe/jr On Sun, May 14, 2023 at 4:49 AM Ian Clark wrote: > > Thanks, Jan-Pieter. Just what I was

Re: [Jprogramming] String replacement question

2023-12-01 Thread Aaron Ash
I initially hit the same issue and then changed my approach to avoid using stringreplace. The logic I ended up with was: find the first and last match of any of the digits or number words, combine those two into a single string and now replace words with digits on those knowing that there's no chan