Re: how to send SSL certificate in POST request?

2017-02-24 Thread mascip
at 14:55, Kevin Corcoran <kwcorco...@gmail.com> wrote: > On Thu, Feb 23, 2017 at 5:11 PM, mascip <mas...@gmail.com> wrote: > >> Amazing, thank you James, thank you Micheal, it works! >> >> In Perl things are often pretty complex, but in this specific case the &g

Re: how to send SSL certificate in POST request?

2017-02-23 Thread mascip
Amazing, thank you James, thank you Micheal, it works! In Perl things are often pretty complex, but in this specific case the code is dead easy: my $client = REST::Client->new( cert => '/path/to/ssl.cert', key => '/path/to/ssl.key'); my $response = $client->POST(

Re: A few String functions we could implement in Clojure?

2014-08-01 Thread mascip
I have voted your issue up, and added a comment. Thanks for the link :-) -- Pierre Masci On 1 August 2014 11:16, Bozhidar Batsov bozhidar.bat...@gmail.com wrote: I recently raised a similar point regarding `starts-with?` and `ends-with?` (link - http://dev.clojure.org/jira/browse/CLJ-1449)

Re: clojure.stacktrace/root-cause VS clojure.repl/root-cause, are they redundant?

2014-07-24 Thread mascip
Thank you Stuart, this is a very useful answer. Is there any way to access an exception older than *e? What happens to me regularly is to mistype (.printStackTrace *e), which makes me lost my previous exception. -- Pierre Masci On 24 July 2014 13:33, Stuart Sierra the.stuart.sie...@gmail.com

Re: clojure.stacktrace/root-cause VS clojure.repl/root-cause, are they redundant?

2014-07-24 Thread mascip
in *1 *2 *3). When an exception occurs, it is probably much less error-prone to type a short expression like (def e1 *e) to save the exception in e1, even if another exception occurs after that which modifies *e. Andy On Thu, Jul 24, 2014 at 6:46 AM, mascip mas...@gmail.com wrote: Thank you

Re: A few String functions we could implement in Clojure?

2014-07-19 Thread mascip
Thank you for your insight Andy :-) Interesting question Bruce. -- Pierre Masci On 19 July 2014 16:49, Andy Fingerhut andy.finger...@gmail.com wrote: I would have to defer that question to someone who makes decisions regarding what goes into Clojure/ClojureScript, and what does not. Of