Re: [racket-users] HTTPS connection through proxy (CONNECT HTTP Method)

2015-08-12 Thread Sean Kemplay
On Wednesday, August 12, 2015 at 12:54:10 PM UTC+1, Jay McCarthy wrote: On Tue, Aug 11, 2015 at 10:24 AM, Sean Kemplay sean.kemp...@gmail.com wrote: Hi All, Sending an http request through our corporate proxy works as follows for http requests - (define-values (x y z) (http

[racket-users] HTTPS connection through proxy (CONNECT HTTP Method)

2015-08-11 Thread Sean Kemplay
Hi All, Sending an http request through our corporate proxy works as follows for http requests - (define-values (x y z) (http-sendrecv 10.0.0.200 http://www.example.com; #:port 8080 #:headers '( Proxy-Authorization:

Re: [racket-users] HTTPS connection through proxy (CONNECT HTTP Method)

2015-08-14 Thread Sean Kemplay
On Wednesday, August 12, 2015 at 9:54:23 PM UTC+1, Sean Kemplay wrote: On Wednesday, August 12, 2015 at 12:54:10 PM UTC+1, Jay McCarthy wrote: On Tue, Aug 11, 2015 at 10:24 AM, Sean Kemplay sean.kemp...@gmail.com wrote: Hi All, Sending an http request through our corporate proxy

Re: [racket-users] HTTPS connection through proxy (CONNECT HTTP Method)

2015-08-14 Thread Sean Kemplay
On Friday, August 14, 2015 at 10:22:03 AM UTC+1, Sean Kemplay wrote: On Wednesday, August 12, 2015 at 9:54:23 PM UTC+1, Sean Kemplay wrote: On Wednesday, August 12, 2015 at 12:54:10 PM UTC+1, Jay McCarthy wrote: On Tue, Aug 11, 2015 at 10:24 AM, Sean Kemplay sean.kemp...@gmail.com wrote

Re: [racket-users] HTTPS connection through proxy (CONNECT HTTP Method)

2015-08-14 Thread Sean Kemplay
On Friday, August 14, 2015 at 3:41:04 PM UTC+1, Sean Kemplay wrote: On Friday, August 14, 2015 at 10:22:03 AM UTC+1, Sean Kemplay wrote: On Wednesday, August 12, 2015 at 9:54:23 PM UTC+1, Sean Kemplay wrote: On Wednesday, August 12, 2015 at 12:54:10 PM UTC+1, Jay McCarthy wrote: On Tue

[racket-users] Re: raco pkg install behind proxy

2015-10-09 Thread Sean Kemplay
Hi Tim, The net/http-client library (last time I looked) does not currently support SSL tunneling which would be required for ssl connections through a proxy such as squid. net/url builds on net/http-client and also does not have that support. Link to what Squid has to say about tunneling -

[racket-users] Transforming data for plot / discreet-histogram

2016-06-07 Thread Sean Kemplay
Hello, Something like the following would be ideal to build a histogram from a sequence of values read in via CSV #lang racket (require math) (require plot) (discrete-histogram (samples->hash '(1 2 3 4 4))) However discreet histogram takes a list of vectors. Is there a way to achieve

[racket-users] Nested HTML templates

2016-03-29 Thread Sean Kemplay
Hello, Has anyone had any experience using web-server/template? If so do you have any suggestions on how to best/compose so there is a base template with placeholders being filled by other templates (which could in turn have even deeper nesting themselves)? Kind regards, Sean -- You

[racket-users] Web-server multi core

2016-03-29 Thread Sean Kemplay
Hi all, There have been multiple queries about utilising multiple cores with Racket's webserver and also some ideas put forward by Jay and others. Has anyone got something working they would be willing to share? I am really hoping to use racket over clojure for a new project but making use of

Re: [racket-users] Testing an HTTPS (over HTTP CONECT) proxy

2016-08-10 Thread Sean Kemplay
Hi Tim, This is great, the whole proxy thing has been an issue for me as well - I took a stab at doing something like this last year but couldn't get it working. I have access to a trend and scansafe proxy so can physically test against those if you want. Kind regards, Sean On Tuesday,

[racket-users] Safely using port->string where nothing has been written to the port

2017-01-23 Thread Sean Kemplay
Hello, I am using the URL library to interact with a REST API. One of the Endpoints sends returns no content for a POST request with a status code of 204 (a little unusual however it is an external API so we have to cater to it). I can check the status code for 204 and only apply

Re: [racket-users] Safely using port->string where nothing has been written to the port

2017-01-24 Thread Sean Kemplay
~23~25kernel%29._byte-ready~3f%29%29 > > > > On Mon, Jan 23, 2017 at 6:05 AM, Sean Kemplay <sean.k...@gmail.com> wrote: > Hello, > > > > I am using the URL library to interact with a REST API. > > > > One of the Endpoints sends returns no conte

Re: [racket-users] [Library Announcement] CSS-expressions, Pollen Component and Extensible Functions

2017-02-13 Thread Sean Kemplay
I will definitely check out the CSS package this weekend! On 13 Feb 2017 13:48, "Leandro Facchinetti" wrote: > Hi all, > > I’m here to announce three packages I published recently, because I want > feedback from the community: > > - CSS-expressions: S-expression-based CSS. >

[racket-users] Webserver HTTP 2

2017-05-03 Thread Sean Kemplay
Hello, Does anyone know if the Racket webserver will support http2 at any stage? Kind regards, Sean -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[racket-users] Subproceses in Windows

2018-11-05 Thread Sean Kemplay
Hi All, I am trying to open windoes explorer from Racket using the following - (system* "cmd" "start" "explorer.exe") However it is not working and #f is being returned. This works fine from Go and even VBScript! Anyone know what I am missing? Kind regards, Sean -- You received this

Re: [racket-users] Subproceses in Windows

2018-11-05 Thread Sean Kemplay
Thanks George, that explains it perfectly. On Monday, November 5, 2018 at 5:11:04 PM UTC, gneuner2 wrote: > > > > On 11/5/2018 11:49 AM, Sean Kemplay wrote: > > Hi All, > > I am trying to open windoes explorer from Racket using the following - > > (syste

[racket-users] Abstract run times (HTDP)

2019-05-24 Thread Sean Kemplay
Hi all, I trying to work out the ART of the sum-tree question from HTDP2e. I have worked through the book before however am going through it again, this time am doing every exercise - this is not homework! Here is my data defenitions, examples, a function ror summing up the contents and

Re: [racket-users] Abstract run times (HTDP)

2019-05-24 Thread Sean Kemplay
Thanks Matthias, I think I have it now, much appreciated. On Friday, May 24, 2019 at 2:24:57 PM UTC+1, Matthias Felleisen wrote: > > > > > On May 24, 2019, at 6:27 AM, Sean Kemplay > wrote: > > > > Hi all, > > > > I trying to work out the ART of the

[racket-users] lists.racket-lang.org seems to be down

2019-04-17 Thread Sean Kemplay
H All, Just reporting that https://lists.racket-lang.org/ seems to be down. I have tried on both my laptop and phone. Sean -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send

[racket-users] Re: resources for learning JS / React?

2020-01-27 Thread Sean Kemplay
This is a good (free) course that takes you the lates best practices of JS (getting more functional), react and then react native. https://www.edx.org/course/cs50s-mobile-app-development-with-react-native On Saturday, January 25, 2020 at 6:56:57 PM UTC, 'John Clements' via users-redirect

[racket-users] Create an identifier in syntax

2020-01-23 Thread Sean Kemplay
Hello, I am exploring macros and am trying to define a variable at the top level (with the goal in mind to dynamically define a group of functions from a macro). with-syntax works fine however I was just wondering if it is possible to directly inject an identifier as syntax within syntax -

Re: [racket-users] Create an identifier in syntax

2020-01-23 Thread Sean Kemplay
Hi Ryan, Thank you SO much for that explenation! Everything now clicks!! Sean On Thursday, January 23, 2020 at 4:12:44 PM UTC, Ryan Culpepper wrote: > > On 1/23/20 3:59 PM, Sean Kemplay wrote: > > Hello, > > > > I am exploring macros and am trying to define a variab