Search found 72 matches

by gil
Sun Sep 15, 2024 6:47 am
Forum: MiServer
Topic: MiServer output pages to PDF for print
Replies: 11
Views: 13174

Re: MiServer output pages to PDF for print

I'm not sure what you are trying to achieve, but it might be easier to help you by clarifying a couple of things. Usually it is the client that does the printing. If I use my web browser and want a site saved as pdf or sent to a printer, the web browser offers this (usually both options via a print ...
by gil
Wed Jan 11, 2023 6:32 am
Forum: macOS
Topic: .NET not seen by Dyalog ]LINK
Replies: 2
Views: 26393

Re: .NET not seen by Dyalog ]LINK

Dyalog 18.2 currently supports .NET core 3.1 which unfortunately went out of (Microsoft) support last month. https://docs.dyalog.com/latest/dotNET%20Core%20Interface%20Guide.pdf https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core See this post for suggestion on using later version ...
by gil
Tue Sep 28, 2021 8:53 am
Forum: APL Chat
Topic: Partitioned enclose post 17.1
Replies: 8
Views: 18150

Re: Partitioned enclose post 17.1

Thanks for the explanation Morten, and for highlighting the (undocumented?) extension to the where primitive. ⍸⍣1⊢,3 1 1 1 ⍸⍣2⊢,3 1 2 3 ⍸⍣3⊢,3 1 2 2 3 3 3 ⍸⍣4⊢,3 1 2 2 3 3 4 4 4 5 5 5 6 6 6 ⍸⍣¯1⊢⍸⍣4⊢,3 1 2 2 3 3 3 ⍸⍣¯2⊢⍸⍣4⊢,3 1 2 3 ⍸⍣¯3⊢⍸⍣4⊢,3 1 1 1 ⍸⍣¯4⊢⍸⍣4⊢,3 3 ⍴⍸⍣¯4⊢⍸⍣4⊢,3 1 I'll need to explore t ...
by gil
Thu Sep 23, 2021 9:17 am
Forum: APL Chat
Topic: Partitioned enclose post 17.1
Replies: 8
Views: 18150

Partitioned enclose post 17.1

Partitioned enclose was extended with version 18.0 to accept a wider range in the left argument. In previous versions it is limited to a boolean scalar or boolean vector matching the length of the right argument. With 18.0 it now accepts a non-negative scalar number or a vector with length up to 1 ...
by gil
Wed Oct 28, 2020 6:33 am
Forum: Object Oriented Programming
Topic: masking public property?
Replies: 2
Views: 15450

Re: masking public property?

Surely this must be a bug? I understand that the name is shadowed while createWrong is on the stack, but it seems that the instance created with createWrong has managed to change the property name into a variable type. Setters and getters are no longer triggered at all?! (#.ok←Text.createOk'reteP') ...
by gil
Fri Mar 20, 2020 8:39 pm
Forum: Microsoft.NET
Topic: DotNetBrowser v2
Replies: 9
Views: 35055

Re: DotNetBrowser v2

Pierre, I had a look at this as an exercise and found that you can ignore all the hassle normal C# developers go through and simply explore the methods available in a class by formatting them as text and then picking the one you want. Instead of: typeArray←System.Array.CreateInstance(System.Type)(2) ...
by gil
Sat Oct 05, 2019 7:09 pm
Forum: Language
Topic: Creating a WS under Program Control
Replies: 17
Views: 28750

Re: Creating a WS under Program Control

This is definitely interesting, I like it! I have an answer to your question about the garbled output. The StandardError stream doesn't always use UTF-8 encoding, which is why Stefano likely saw it behave correctly some times. On my Win10 it uses System.Text.SBCSCodePageEncoding. If you use the same ...
by gil
Mon Sep 23, 2019 10:27 am
Forum: Language
Topic: Creating a WS under Program Control
Replies: 17
Views: 28750

Re: Creating a WS under Program Control

the dyapp files are an interesting proposal, but somehow I did not manage to make them work in my scenario. Can you tell me more about why this didn't work for you? I hear that dyapp files are not promoted by Dyalog, or rather, that the intention is to replace them with something better. Until then ...
by gil
Sun Sep 22, 2019 6:38 am
Forum: APL Chat
Topic: Feature request regarding the editor
Replies: 3
Views: 6698

Re: Feature request regarding the editor

This is a long standing RFE for RIDE that can't be done without support from the interpreter (see RIDE issue #18 ). I would welcome this as well. Clearly, large arrays would benefit from displaying a short form (rank,shape, depth and the first few items perhaps, or first few chars of the array ...
by gil
Sun Sep 22, 2019 6:28 am
Forum: APL Chat
Topic: Feature request regarding the Tracer
Replies: 4
Views: 8719

Re: Feature request regarding the Tracer

I would love to see this feature. At the moment I have to keep my finger on the Ctrl button when tracing dfns just in case I overlook a branch. In the case I end up tracing into a function I'm not interested in I then resume to exit (which I have set up a keyboard shortcut for). It's doable, but not ...