Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - vetelko

#16
Hello newLISP-ers :)



the following code returns nil for utf-8 character

(regex {w} "č")

and so the following

(regex {w} "č" "u")

while this works

(regex {w} "m")



Is this not implemented or am I doing something wrong?

VT
#17
Please could you write more on newLISP use cases in your company? I found this very interesting.
#18
Anything else we might add? / Re: TLS/SSL support
October 23, 2016, 01:29:02 AM
Optionally of course. There are already optional parts as UTF-8 support or FFI so why not TLS if bigger binary is not a problem.
#19
Anything else we might add? / Re: TLS/SSL support
October 22, 2016, 03:14:53 AM
Thank you for replies guys. I also started using curl, but IMHO whole world has started using https protocol so soon or later get-url against public internet will be useless.
#20
Hi guys,



how can I map trim command to list members?

say I have list like this:
(set 'lst '("a." "b " "c"))
and I want to trim dot character trying this construct:
(set 'lst2 (map (curry trim {.}) lst))
but it doesn't work, output is:
("." "." ".")
#21
Anything else we might add? / Re: TLS/SSL support
October 14, 2016, 10:43:08 AM
Sorry I mean support in get-url function to receive data from site which uses https.
#22
You are right. This is one of the things I love on Golang, and now on newlisp as I'm a novice :)
#23
Anything else we might add? / TLS/SSL support
October 13, 2016, 09:51:21 AM
Hi guys,



is there a chance that newlisp will support TLS/SSL in the near future? In my case I need it to fetch content using httpS protocol.



VT