Elara
Elara
The only way to do this in Go would be: ```go package main import "fmt" func main() { zz := 0 var x []int x = append(x, 0, 0, 0)...
Actually, I just realized, there is a better way that's probably a bit easier: ```go package main import "fmt" func main() { zz, x := 0, []int{0, 0, 0} fmt.Println(zz,...
If someone went to a project you're the number 1 maintainer of, made up a standard for it, and then published it under the name `-standards`, you'd be upset, and...
See #117
Well, I use Go (probably should've mentioned that), so I'd prefer a Go tutorial, but hopefully I can look at the Rust tutorial and get enough information to use the...
The API is generated from the following file, so anything listed in there can be used: https://github.com/Arsen6331/lure/blob/master/internal/api/lure.proto
I am seeing this with "Fira Code Nerd Font" on Arch with Lapce 0.2.5. Ubuntu Mono and Mononoki work fine. The unpatched version of Fira Code is causing the same...
Getting the same problem on Lemmygrad. The first time this happened, it was during a DDoS of Lemmygrad. It then happened months after that, when no DDoS or anything of...
> @Arsen6331 this is probably due to your bot making a ton of requests. I'd suggest using the websocket rather than doing polling. I've already added support for the WS...
> Yes this sounds like rate limit, especially if switching ip fixes the problem. Currently Lemmy sends an empty response if the limit is hit. From 0.17 it will send...