tynet-lichat/shirakumo - IRC Chatlog
Search
12:42:03
Colleen
We don't know what to deliver on this page. Are you sure the URL is correct and up-to-date?"
12:42:03
hamza
We don't know what to deliver on this page. Are you sure the URL is correct and up-to-date?"
12:46:08
shinmera
there is parenscript, which compiles a subset of common lisp to javascript, but I have never used it.
12:47:10
shinmera
i don't know what you want to do, so I can't say. I always write my things without any javascript first, and then add whatever flavour or conveniencie with js on top.
12:47:45
Colleen
Okay, This is a really big project, the back and front is going to be very huge (atleast from what I planned)
12:47:45
hamza
Okay, This is a really big project, the back and front is going to be very huge (atleast from what I planned)
12:48:45
Colleen
Since I am mostly going to write this alone. I would want to use something I am quicker at using and have motivation to code in...
12:48:45
hamza
Since I am mostly going to write this alone. I would want to use something I am quicker at using and have motivation to code in...
12:49:37
Colleen
My alternate plan is to use the compiled svelte code, and use those html and css files as input to Radiance.
12:49:37
hamza
My alternate plan is to use the compiled svelte code, and use those html and css files as input to Radiance.
12:50:44
Colleen
However, I want to search for a good frontend framework, you told me that there are compilers for Common Lisp to JS
12:50:44
hamza
However, I want to search for a good frontend framework, you told me that there are compilers for Common Lisp to JS
12:51:37
shinmera
well, I did use Vue for the chat client thingy, since that didn't have a backend. I enjoyed some of that
12:57:04
Colleen
Thanks a lot Shinmera! Will look at a few more things and will get back to you on what I have decided!
12:57:04
hamza
Thanks a lot Shinmera! Will look at a few more things and will get back to you on what I have decided!
13:03:26
Colleen
However, If I am using let's suppose, Vue or React. How would I send an api request?
13:03:49
shinmera
lquery doesn't do anything on the frontend. it's used on the server when the page is rendered.
13:09:10
shinmera
back when I started out JS was still seen as one of those things you can't rely on because people might have it blocked or use a browser that doesn't support it well.
13:09:52
shinmera
yeah. I still write my sites so they're completely usable without js though. It's a fun challenge :)
13:11:57
shinmera
well as I said, all of my sites work that way. JS is just a layer of convenience on top. Like fetching stuff automatically instead of requiring a button click. Making some of the visualisations more nice. things like that.
13:13:44
shinmera
graphql is an over-engineered mess. I tried to write a client/server library for that like five times and gave up every time
13:15:53
shinmera
A REST api is just "here are some urls and parameters for the urls that'll do some stuff when you request it."
13:16:25
shinmera
typically it'll also return data encoded in json or something instead of an html website.
13:18:25
shinmera
there's no way to programmatically "discover" what endpoints there are, what parameters and types it requires, etc.
13:18:55
shinmera
so writing a client for a REST service is always a lot of manual work of reading their docs, hoping they're accurat, and manually writing the endpoint wrappers.
13:19:49
shinmera
I think there's some attempts at standardising the discovery part at least but I've never bothered to look into it.
13:23:33
Colleen
Yeah, I think Common Lisp to Javscript Compilers are just a mess. I think I will stick to the more organized and well-known JS frontend frameworks with Radiance and interact with them with endpoints. After all, how much JS can it be? It's just a frontend.
13:23:33
hamza
Yeah, I think Common Lisp to Javscript Compilers are just a mess. I think I will stick to the more organized and well-known JS frontend frameworks with Radiance and interact with them with endpoints. After all, how much JS can it be? It's just a frontend.
13:27:39
Colleen
Also, what problems did you have in mind when you said that I was forgetting a lot of problems.
13:27:39
hamza
Also, what problems did you have in mind when you said that I was forgetting a lot of problems.
13:27:58
shinmera
I mean, in general I'm sure you must have a lot of other things to deal with that aren't related to web frameworks :^)
13:30:57
Colleen
Now that I think about it I am using Svelte which was made 2 years ago or something, and Lisp which was like one of the first languages ever.
13:30:57
hamza
Now that I think about it I am using Svelte which was made 2 years ago or something, and Lisp which was like one of the first languages ever.
13:35:18
shinmera
I really wish I had the time/motivation to rewrite the layouter from first principles and make it cleas