Gavin Ray
Gavin Ray
> At first sight, I feel like this change trades faster writing with slower comprehension ([not a good deal](https://www.goodreads.com/quotes/835238-indeed-the-ratio-of-time-spent-reading-versus-writing-is)), as it departs from HTML's familiar `key=value` flow. I might get...
Wow, holy smokes. Was not expecting that, half a decade later! 😁
I have a working solution for this, but it's neither pretty nor technically correct :cry: ```ts import { RenderContext } from 'vue' type Maybe = T | undefined | null...
Great idea! Thanks for the commit. Just a few small pieces of feedback: 1. Does the resource class need to be `@ApplicationScoped`? 2. Quarkus is undergoing migration to Jakarta EE...
Heya @RedCloudDC If you modify the `package.json` start/dev script to pass the option `-H 0.0.0.0` does it work? Like `next start -H 0.0.0.0` or `next dev -H 0.0.0.0`
Hey Dimitri, That error you're seeing is because the URL given to the GraphQL client in the React app for querying the API is relative. You can see it here:...
I have a really hacked-together rough draft of something like this. It has a few bugs, namely that if you close a buffer for a file, and it was the...
Okay I got it. I just store a table of opened files: ```lua -- Store a reference to the last opened file open_files ={} ``` And then in `try_open_at_y()` I...
@lowski Hey, I would absolutely share the finished file with you but I've since re-installed my OS and have lost this =( Sorry. Maybe you can copy-paste those customizations from...
FWIW dpp and the VisualD C++ -> D translator don't really hold a candle to ohmygentool. I was able to port the entire API/SDK of a third party C++ library...