You are viewing archived messages.
Go here to search the history.

Kartik Agaram 2023-03-31 07:24:41

Today I got a feature request from someone in the LÖVE community and created a fork of lines.love with 2 buttons:

  • clear the buffer. I imagine this like clearing an Etch-a-sketch.
  • export the buffer to html. I imagine it emerging out of the app like a Polaroid.

He sent me this screenshot from his iPad ❤

git.sr.ht/~akkartik/etch.love

Konrad Hinsen 2023-03-31 07:32:19

Looks like it's time to structure the user community. Write contribution guidelines, a code of conduct, ... ;-)

Eli Mellen 2023-03-31 11:45:12

Kartik Agaram looks like the repo is private, maybe? I’m getting a 404 when I try to visit it and am unable to search for it from the listing of all your repositories.

Eli Mellen 2023-03-31 11:45:17

Excited to take it for a spin!

Kartik Agaram 2023-03-31 15:22:41

Oh yes! Sorry I missed a step. Try it now.

Kartik Agaram 2023-03-31 15:24:13

One thing you might need that owner #1 implicitly knew: it stores the exported html in the directory containing the .love file (or the parent directory of the repo) Hmm, I should mention that somewhere..

Eli Mellen 2023-03-31 15:28:52

perfectly perfect

Jason Chan 2023-03-31 16:26:21

this is cool! is it just text, unless you click the yellow box and then you can draw?

Eli Mellen 2023-03-31 16:26:43

it was all text all the time

Kartik Agaram 2023-03-31 16:30:20

Jason Chan Yeah exactly. Each line can be either text or drawings.

Jason Morris 2023-04-01 22:03:38

This has been the most frustrating couple of weeks I have had in the 14 months or so I have been working on this project. I'm in the process of implementing event reasoning as a language feature in Blawx. But allowing users to specify events as dates has counterintuitively required me to NOT represent them as dates in the back end. Which I discovered only after half a week of dead ends. Which in turn means that I had to rewrite my date library, throwing away about a month's worth of work, and losing several features (mostly to do with using years and months as units of duration). That worked, and had some other benefits including speed, but in turn has changed where the valuable information lives in the system's responses (from the values given to variables, if any, to the constraints imposed on those values), which means that I have to rebuild significant parts of the way responses are displayed to users. Everytime I think I have solved the problem, I discover that the solution offers three new problems. It has been an emotional rollercoaster that is driving me nuts. I want to believe that the remaining problems to solve are not hiding yet bigger problems, but I have believed that before, and this has already taken three times as long as anticipated. And I haven't even gotten to the point of being able to genuinely test it. Who knows? </Venting>

Jarno Montonen 2023-04-02 15:50:11

I can sympathize with everything you said. Been through something like this several times during the last two years while working on my structure editor tech. Only thing I can say is hang in there. There will be light at the end of the tunnel 🙂