Search found 50 matches

by PhilGray
Wed Apr 02, 2014 3:27 pm
Forum: APL Chat
Topic: Secure SMTP using STARTTLS
Replies: 8
Views: 27100

Re: Secure SMTP using STARTTLS

Thanks Vince .. dead-link somehow.

I guess you meant this one ?

http://msdn.microsoft.com/en-us/library/system.security.authentication.sslprotocols(v=vs.110).aspx

Seems that .net Framework 4.5 supports TLSv1.2
by PhilGray
Tue Apr 01, 2014 10:34 pm
Forum: APL Chat
Topic: Secure SMTP using STARTTLS
Replies: 8
Views: 27100

Re: Secure SMTP using STARTTLS

Michael,
I agree , although my guess is that most people are probably using DotNet these days .. where the "wheel" doesn't have to be reinvented but is available in some Library.
Hint .. some input or tips from the Dyalog guys would be helpful here.
;-)
by PhilGray
Tue Apr 01, 2014 5:19 pm
Forum: APL Chat
Topic: Secure SMTP using STARTTLS
Replies: 8
Views: 27100

Re: Secure SMTP using STARTTLS

Hi Michael,
I didn't bother to follow it up as I expected that someone might answer , thus saving time & effort. Seems as if nobody has been there yet.
Cheers
Phil
by PhilGray
Mon Jan 06, 2014 12:33 pm
Forum: APL Chat
Topic: APL and cartography
Replies: 2
Views: 7012

Re: APL and cartography

I would have thought the best place to start looking would be Google Earth :

Google Earth API Developer's Guide
https://developers.google.com/earth/documentation/

Google Earth API Reference
https://developers.google.com/earth/documentation/reference/
by PhilGray
Sun Jul 21, 2013 6:53 am
Forum: APL Chat
Topic: Underutilization of CPU resources
Replies: 7
Views: 19157

Re: Underutilization of CPU resources

You might finds some useful tools here , developed by Mark Russinovich and Bryce Cogswell :

http://technet.microsoft.com/en-us/sysi ... s/bb545027

Their "Process Explorer" is far superior to the standard Windows version.
http://technet.microsoft.com/en-us/sysi ... 96653.aspx

"Process Monitor" may also be useful.
http://technet.microsoft.com/en-us/sysi ... 96645.aspx
by PhilGray
Sat Jul 20, 2013 7:42 am
Forum: APL Chat
Topic: Underutilization of CPU resources
Replies: 7
Views: 19157

Re: Underutilization of CPU resources

Are there any Calls to Windows .. e.g. GUI or other Windows Calls ? I presume that the RAM modules are suitable (e.g. fast enough) for the CPU clock. Remember that the CPU runs on the Clock (GHz) .. and cores do not run "parallel" , but sequentially. i.e. the "power" is in the Clock speed, the ...
by PhilGray
Mon Jan 09, 2012 9:22 pm
Forum: APL Chat
Topic: Complex form validation
Replies: 9
Views: 29535

Re: Complex form validation

Not sure what you're after , but FWIW : I use one central function for handling my GUIs : "#.capture". It stores all GUI fields "that I require" into a central table ( called #.Capture ) such as to make searching, sorting, reading GUIs , writing GUIs & validating during callbacks extremely simple ...
by PhilGray
Sun Oct 30, 2011 7:55 pm
Forum: APL Chat
Topic: ⎕VFI Question on Negative Number
Replies: 8
Views: 19681

Re: ⎕VFI Question on Negative Number

Thanks Dan.

Of course we can use APL to solve these exceptions as you have shown , but my thinking was simply that having the Interpreter handle these "exceptions" at a (low) machine.code level would be ..
a) much faster in execution
b) more comfortable

Cheers
by PhilGray
Sun Oct 30, 2011 12:28 pm
Forum: APL Chat
Topic: ⎕VFI Question on Negative Number
Replies: 8
Views: 19681

Re: ⎕VFI Question on Negative Number

Postby PhilGray on Sun Oct 30, 2011 8:28 am How do you see it working? With an extension to the left argument to specify whether - is acceptable? Using the new [:] operator? May I suggest a Return-Code of length 3 ? RC[ 1 2 ] remaining the same, and RC [ 3 ] representing the "type" of "translation ...
by PhilGray
Mon Oct 24, 2011 8:20 pm
Forum: APL Chat
Topic: Cropping bitmap images
Replies: 2
Views: 7291

Re: Cropping bitmap images

sorry if this is a silly question


... then maybe this answer is too simple ?
Presuming your Object is a 'Bitmap', simply use the 'CBits' property ( Integer Matrix ) to drop ( dyadic ↓ ) any chunk of the matrix you please.