[-] slurp@programming.dev 1 points 1 month ago

Ah, thanks for the answer, I'd missed this on the GH page. Unfortunately, that's not what I'm after as I know I will end up with a complete mess of unusable notes or not use it at all if there are any stages of choosing a note type.

Ideally, I want version controlled, editable, searchable, taggable paper I don't have to file away, which I can also type on and use other digital tools with (e.g for things like diagrams, spreadsheets). I haven't seen anything particularly close to what I'm after yet but I'm hopeful that it'll come eventually.

[-] slurp@programming.dev 2 points 1 month ago

Is handwriting & drawing support planned?

[-] slurp@programming.dev 1 points 2 months ago

I think that comment has two readings:

  1. The commenter potentially missed the point of the post a bit and saying good parenting helps because it means they get diagnosed sooner
  2. The commenter is saying that the abusive behaviours listed in the post count as "good parenting"

I can see why the second might get reported.

[-] slurp@programming.dev 2 points 3 months ago

The stars and planets, yes, but there is a lot of very diffuse gas that does collide

[-] slurp@programming.dev 11 points 3 months ago

Fluorescent lighting 100%. Warm dimming LEDs behind a nice shade, on the other hand, can stay (preferably dimmed).

[-] slurp@programming.dev 4 points 3 months ago

My personal idea/hope is that there is some other dimension of spacetime over which the big bang had directionality, emitting matter and antimatter across different poles, and that's why. That'd also mean there's an anti-universe, which is why I like the idea.

In terms of the galaxies, I believe there's enough of an observable difference that I think we would be able to detect antimatter clusters, or similar, based on emission lines but I'm not 100% on that. Huge annihilation events from colliding galaxies and clusters would have massive energy signatures unlike anything else but the frequency of this would determine how likely it would be to see the evidence.

[-] slurp@programming.dev 1 points 3 months ago

Oops responded to the wrong comment

[-] slurp@programming.dev 4 points 3 months ago

That's what we genuinely don't know. Based on the standard model, it should be in equal parts.

[-] slurp@programming.dev 15 points 3 months ago

I tried PCAPdroid recently and that seemed good

[-] slurp@programming.dev 2 points 4 months ago

Glad I could help! I wasn't sure if I was missing something in what you were trying to do - I get that in some cases folding in those features can make things a lot easier.

[-] slurp@programming.dev 3 points 4 months ago* (last edited 4 months ago)

Don't really understand why you're overriding __new__. Surely it'd work better to use:

def __init__(self, source: str | Path, *args: Any) -> None:
        super().__init__(Path(source, *args).expanduser().resolve())

But this removes self.__source and the property. I'm not sure what the advantage of using that is but you could always set that before the line super().__init__(Path(source, *args).expanduser().resolve()).

EDIT: if I've completely misunderstood, please could you explain? I don't really understand what subclassing is trying to achieve here, other than simplifying access to certain os.path functions.

view more: next ›

slurp

joined 1 year ago