Re: cloud host for picolisp

2019-06-10 Thread Guido Stepken
You can either choose e.g. a Hetzner VSERVER, see CX11 offer or you simply ask your provider of your choice for a NginX virtual domain server with PicoLisp interpreter as fast_cgi module setup: https://www.nginx.com/resources/wiki/start/topics/examples/fastcgiexample/ Any UNIX sysadmin can

Re: cloud host for picolisp

2019-06-10 Thread Joh-Tob Schäg
Hi Derenik, i know of no hoster which provides setup or support for PicoLisp. You are on your own, but that is less scary that it sounds: 1. Pick a Linux/BSD of your choice 2. install PicoLisp from source or package manager 3. Setup a proxy server to handle encryption etc. (NGINX + HTTP-Gate or

Re: cloud host for picolisp

2019-06-10 Thread Grant Shangreaux
I just built PicoLisp on a digital ocean instance very easily, lowest price for a server instance is $5 a month on there. Not aware of anything that provides pre-installed PicoLisp. Sent from ProtonMail mobile Original Message On Jun 10, 2019, 1:36 PM, Derenik Mikaelyan

cloud host for picolisp

2019-06-10 Thread Derenik Mikaelyan
Hi, I'd like to use picolisp for making a web-app. I'm not good at server-side setups and maintenance. Is there any cloud hosting-service that provides well managed picolisp installation (for reasonable monthly fee)? Thanks, Derenik

Re: Padding numbers with space

2019-06-10 Thread C K Kashyap
ofcourse!!! ... thanks Alex. Regards, Kashyap On Mon, Jun 10, 2019 at 7:01 AM Alexander Burger wrote: > Hi Kashyap, > > > I noticed that "pad" pads number with 0 prefix. What would be a good way > to > > use space instead? > > There is already a function: 'align' :) > >: (pad 5 3) >->

Re: Padding numbers with space

2019-06-10 Thread Alexander Burger
Hi Kashyap, > I noticed that "pad" pads number with 0 prefix. What would be a good way to > use space instead? There is already a function: 'align' :) : (pad 5 3) -> "3" : (align 5 3) -> "3" ☺/ A!ex -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Padding numbers with space

2019-06-10 Thread C K Kashyap
Hi, I noticed that "pad" pads number with 0 prefix. What would be a good way to use space instead? I was about to copy the definition of pad (which is so nice to look at) from lib/misc and edit it but was wondering if a "temporary patching" (if that is a thing) would be better? Regards, Kashyap