What’s wrong with forms?
they/them
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.
I think the second part of the comment is what’s important:
If you are in a more comfortable environment you will be better at working
Maybe that is windows for you. I have barely ever used windows, so the concept of searching for installers online and running them just seems clunky and time consuming to me. It’s just not what I’m used to.
However if you are willing to learn multiple systems, you might find that one is better than the others.
I assumed “spelt” was wrong, but an internet search tells me both are correct.
I learned programming at about 12, by following tutorials for the Pygame python library. It doesn’t do anything especially fancy, but it taught me many concepts, while I had a lot of fun. My first project was making the traditional snake game, which I think is a good level of complexity.
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.