Jacob Schneider

Results 42 comments of Jacob Schneider

I just wanted to leave a _plus one_ on this please. I would make heavy use of this

> You may remove the `Alias=` line in unit file if it causes error in your case. This worked for me. Thanks!

Can't you decide which executable to call based on the presence/absence of the flag? In theory, if you're running in CLI mode, the standard Node binary has the behaviour you...

It's not superb, but there's always `process.exit()`. ```typescript export default async function main(argv: string[]) -> Promise { // Do shit here. Can also be Qt stuff } await main(process.argv.slice(2)) .then(function(success)...

Ah I see. Well I remember encountering something like this. You wanna know what I did? I switched to writing it in C++ 😆

I've been planning a browser project for a while and have decided to write a custom scripting language specifically for it, but I think V is a fantastic idea. I'd...

> @J-Cake I just discovered https://gemini.circumlunar.space/ , which may interest you. It's trying to be an alternative to HTTP + HTML by creating a dramatically simpler protocol and markup language...

> @J-Cake Something like this might interest you: https://gioui.org/ Yes, that's basically exactly what I'm referring to. What do you search to find this kind of projects?

Okay sorry, it needs to be said - you guys are amazing

I think what you should do is create a proxy object of a regex. from there, when you call the `test` or `match` function, you can add traps to decide...