

Yesterday I found opensourcealternative.to. Today this.
They seem to be made by different people, but look very similar, and have the same comp ai ad at the top of the page.


Yesterday I found opensourcealternative.to. Today this.
They seem to be made by different people, but look very similar, and have the same comp ai ad at the top of the page.
You can export from draw.io with dark mode and grid enabled as well. Seeing as the space even on all sides…
Looks more like there are copilot ads in .NET docs.
Edit: should have reloaded the page before posting the comment
Doesn’t really seem like the sort of thing that needs regular updates though. Should keep working fine while Qt6 is available.


btw you can’t link to the image on github directly like that - the link expires after 5 minutes. I think https://github.com/user-attachments/assets/d6fddb38-0c71-4e79-81f6-0a359c41e7fc should work though.
I know a couple who got married in a 2-person camel costume.


The JavaScript isn’t slow at rendering, it’s re-doing all the network requests. It re-loads parts of the page each time the layout changes.


What’s wrong with forms?
No, it means people can contribute issues and pull requests to projects on other servers. Repositories would only be created on the server your account is on if I’m not mistaken. I believe it uses activitypub internally, so should work the same as Lemmy/mastodon.
A good starting point, but since they are GET requests, there is no reason to leave the browser.
You can visit the links directly, such as (I filled in OP’s instance):
I’ve heard from somewhere that chrome doesn’t render JSON nicely, so make sure to use firefox!
Other interesting parameters are saved_only and disliked_only.
It seems it doesn’t propagate to other servers immediately though.


I think the important part is that the syntax will become standardised, rather than being defined by microsoft/typescript, potentially allowing for alternative implementations. It could also make the build step optional in some cases, which is something people dislike about typescript currently.
I just scrolled past this post without opening it, didn’t mean anything to me. Then I opened a new tab, and it happened to me for the first time. Had to go back and find this post.
The weird thing is, that it was you! It briefly said “Eugenia” in the top right, with a pink-haired profile picture. I hadn’t clicked on this post beforehand, and as far as I’m aware the new tab I opened didn’t contain this post. I’m very confused.
Huh interesting. In Scotland we had another one: https://en.wikipedia.org/wiki/Haggis_(programming_language)
The term “master” is often used with the term “slave” in computing: https://en.wikipedia.org/wiki/Master-slave_(technology)
So it wouldn’t be odd to assume that git’s use of the term “master” also refers to slavery.
A comment on a post about a different instance suggested clearing browser cache/cookies. It’s not something I’ve run into though.


I think it’s just normal Lua code.
Here’s a quick json converter (based on https://stackoverflow.com/a/55575074), assuming you have lua installed:
local function to_json(obj)
local result = {}
for key, value in pairs(obj) do
if type(value) == "string" then
value = string.format("\"%s\"", value)
elseif type(value) == "table" then
value = to_json(value)
end
table.insert(result, string.format("\"%s\":%s", key, value))
end
return "{" .. table.concat(result, ",") .. "}"
end
function item(obj)
print(to_json(obj))
end
dofile(arg[1])
It just defines the item function to print json, and executes the data file.
arg[1], the first command line argument, is the path to the data file:
$ lua to_json.lua path/to/datafile.list
and pipe the output to something.json or whatever else you want to do.
Saw a post on r/rust.