HackerTrans
TopNewTrendsCommentsPastAskShowJobs

gvx

no profile record

comments

gvx
·ano passado·discuss
What a fun little project! I thought it was going to be the 30 Rock one!
gvx
·ano passado·discuss
One who thinks "open source" means blindly copy/pasting code snippets found online.
gvx
·ano passado·discuss
Everyone knows investing in cybersecurity is just wasteful spending!
gvx
·ano passado·discuss
You could take a look at SELÖVE, a (severely out of date) fork of LÖVE that is intended to make it safe to run arbitrary .love games. (It used to be on bitbucket, but it looks like it's gone? I'm not sure if I have the repo locally :/)

Running arbitrary code was such a problem that I just completely ruled it out for bitser. Instead of serializing functions, you can register safe functions as resources. This doesn't solve the upvalue problem, though.
gvx
·ano passado·discuss
Cool to see you were inspired by Ser!
gvx
·ano passado·discuss
Not exactly. The headline is a bit misleading imho: the article doesn't say that CO2 uptake by plants is up by 31%, rather that new estimates of the CO2 uptake by plants is 31% higher than previous estimates. That doesn't preclude a temporary collapse of carbon absorption (related mostly to forest fires as far as I can tell).
gvx
·há 2 anos·discuss
^ That kind of shallow understanding of health is a large part of what makes RFK Jr. so dangerous.
gvx
·há 2 anos·discuss
It's very possible that if you showed me the MapHub UI eight years ago, I'd have intuited that I'd need to save manually---I can't tell for sure. I am definitely aware that the way I engage with software nowadays is very different than when I started using computers in the early 2000s, and I don't doubt it is still evolving due to the changing conventions in UI and functionality.
gvx
·há 2 anos·discuss
I work with files every day, and I'm not sure I would have realised I'd needed to save manually with the original MapHub UI either. A web-based interface that looks like that, I expect it to be transparent. If it'd had three icons (the classic blank page, open folder and floppy disk) in the top left, then I'd assume it would need manual saving. (I'm not saying that's what you need to do, just analysing my own intuitions)
gvx
·há 2 anos·discuss
With that name I'd expect a tiny implementation of JavaScript.
gvx
·há 2 anos·discuss
Relevant xkcd: https://xkcd.com/793/
gvx
·há 2 anos·discuss
Anything that needs to be read over the phone should probably be written out using something like the NATO phonetic alphabet, split into smaller chunks if needed: "The code? It's kilo eight niner; one three mike; delta echo lima."
gvx
·há 2 anos·discuss
Yeah, other details are missing too. For example backgroundStyle:

> cover fills the entire width and height of the node.

Does that work like the CSS background-size: cover; or background-size: 100% 100%;?

> ratio maintains the aspect ratio of the background image.

Does that mean CSS cover? contain? Something else?
gvx
·há 2 anos·discuss
That is correct.

The client sends the encrypted (via HTTPS) but not hashed password to the server, both for changing your password and checking your password. So the server receives the password in plaintext but shouldn't store it.

Whatever the client sends to the server, an attacker can send too.
gvx
·há 2 anos·discuss
> What if you actually needed to differentiate jack from Jack?

Especially if Jack's your uncle and he's on a horse...
gvx
·há 2 anos·discuss
CONVERTING EVERYTHING TO UPPERCASE SHOULD HAVE THE SAME EFFECT ON COMPRESSION STOP IT EVEN MAKES YOUR WEBSITE LOOK LIKE A TELEGRAM STOP
gvx
·há 3 anos·discuss
In terms of communicating with laypeople, I don't think this is a hill worth dying on. "Confabulating" is not a term I think that many people outside of the field of psychology are familiar with in the first place.

If you do want to use another term for laypeople, I think "bullshitting" or "BSing" would have connotations that are more relevant than "hallucinating".
gvx
·há 3 anos·discuss
This might work in the short term, but I don't recommend it as a general technique.

This sort of an approach often causes there to be hidden bugs, which do not generate errors now, but will cause some problem down the line.

It also has a tendency to lead to cargo cult programming (https://en.wikipedia.org/wiki/Cargo_cult_programming), which is less immediately problematic, but is still not great, especially for whoever needs to maintain that code.