• 2 Posts
  • 105 Comments
Joined 1 year ago
cake
Cake day: June 19th, 2023

help-circle
  • I used to always have a ChatGPT tab pinned, so I wouldn’t mind. That said, the integration is just plain terrible. To be more precise, the whole experience with the sidebar is terrible. Why can I only have one and not even choose the default one? I need two clicks to get to the assistant, which is one more than just pinning a tab…

    In Brave, the integration is so much better. They have a dedicated button (that you can also disable iirc), that opens a sidebar with only the chatbot. Moreover, you can choose from a bunch of models or link your own. You are not constantly at risk of accidentally sending something to it when selecting text, because neither is “AI” the top option in context menus, nor is one opening automatically. AI doesn’t appear in search. And it can even do more (e.g. “summarize this entire page”), while there is also no need to log in.

    In short: This seems not thought through at all. And if it was, maybe the reactions would be less negative.




  • Tons of people making Python comparisons regarding indentation here. I disagree. If you make an indentation error in Python, you will usually notice it right away. On the one hand because the logic is off or you’re referencing stuff that’s not in scope, on the other because if you are a sane person, you use a formatter and a linter when writing code.

    The places you can make these error are also very limited. At most at the very beginning and very end of a block. I can remember a single indentation error I only caught during debugging and that’s it. 99% of the time your linter will catch them.

    YAML is much worse in that regard, because you are not programming, you are structuring data. There is a high chance nothing will immediately go wrong. Items have default values, high-level languages might hide mistakes, badly trained programmers might be quick to cast stuff and don’t question it, and most of the time tools can’t help you either, because they cannot know you meant to create a different structure.

    That said, while I much prefer TOML for being significantly simpler, I can’t say YAML doesn’t get the job done. It’s also very readable as long as you don’t go crazy with nesting. What’s annoying about it is the amount of very subtle mistakes it allows you to make. I get super anxious when writing YAML.




  • I’m just gonna go ahead and say it: 16 Characters are sufficient and 20 pretty damn secure.

    That is assuming they do stuff right and there are no vulnerabilities, which they won’t and there are. However they may manifest, they are a greater concern at 16+ characters, especially if they don’t offer 2FA.

    The reason is that even if machines become powerful enough that 16 characters can be bruteforced, which they can’t atm, you can effectively defend everything against bruteforce attacks by other means. Including but not limited to limiting login attempts, salts and pepper, multiple encryption layers etc.

    With just a salt pepper you can make a 16 char password effectively a 24 char password… Or a 2.000.000 char password. Assuming it is not stolen alongside that is.

    Edit: Changed ‘salt’ to ‘pepper’.