Indie game dev
posting things from the 160+ rss feeds I follow. You should see me post links in two chunks for when im reading stuff, once in the morning and once in the evening ET. If you want some of my sources for certain communities feel free to dm
Pfp is Lucie from battlerite
For old reddit style theres mlmym which fills that niche better (e.g. for you that would be at https://old.lemmy.world)
Default UI is currently getting overhauled in a bunch of different ways. Lemmy-Leptos for Lemmy itself, and new UIs for Sublinks and Piefed as they get constructed
Yes, or it compiles to JavaScript. From the version 1 post
For self hosting there’s also Forgejo which is a fork of Gitea
Thats what Codeberg uses
Its in the embedded tweet
Stands for progressive web app which is an app which uses web technologies. Can be both a web page and a mobile app on a phone. Can be added as an app to your phone through a browser rather than downloading it from an app store
Canada (Ontario)
Theyre two different softwares with two different apis, you can’t
It was removed from the source instance already (lemmy.world)
Not sure why lemmy.dbzer0 doesnt get that federated
It was a bug that was fixed in 0.19 (so the instances that haven’t upgraded yet will still have people from them writing amp but the ones that have wont)
For example I can type & fine
https://boost.lemy.lol <- link to it, doesnt work for instances not connected to it like lemmy.world but theres still ~ 26 major ones
In the past imgbb was used to post CSAM to some communities so some instances remove links to images hosted on it (or I guess ban the user in the instance you were on)
Edit: seems like that was lemmy.world, reach out to their community team and ask to be unbanned if you want your account unbanned, seems like they did that for someone else in the past
The modlogs public to see removed comments. Just a bit difficult to navigate through currently
Instances are the ones hosting the data on their servers + things not having mods can devolve very quickly with things like the nazi bar problem or the scam links that have been getting posted and removed in some communities. This is a different thing than whats in the post though, the post is talking about all communities needing to be fetched manually the first time theyre viewed
Code blocks got updated in 0.19, lemmy.world is still on a 0.18 version
Subreddit had 3 posts within the last month so not that far off tbh
I can look for some post sources to give the community here some more activity
Active is a combination of that and hot but is essentially hard capped at 2 days. Things past that wont show up
Theres the new comments sort which works like that though
Currently theres also mbin (fork of kbin) and lotide that have instances running them
Also some others in development but nobody running them yet
When the draw function calls itself it yields control to that new function its calling. When that function ends it takes back control and continues doing what it was doing.
This means all of the for loops in all of the functions will execute. Draw(1) will do the for loop and then return as it hits the end of the function (standard behaviour when you reach the end of a function even if theres no return statement). Then draw(2) will do the for loop as it gets back control now that draw(1) is done and then return, etc. all the way up
All parts of a function are recursive, theres no such thing as a non recursive part
Edited the title to have a by in front to make that a bit more clear