• 7 Posts
  • 195 Comments
Joined 1 year ago
cake
Cake day: June 4th, 2023

help-circle

  • The repository included the private portion of the platform key in encrypted form. The encrypted file, however, was protected by a four-character password, a decision that made it trivial for Binarly, and anyone else with even a passing curiosity, to crack the passcode and retrieve the corresponding plain text.

    It’s like installing a top-of-the-line alarm system for your house with camera, motion detector, alarm, and immobilizing gas, then leaving the unlock password on a PostIt under the welcome mat.



  • Could there be a one-click way to automatically ‘import’ a Reddit subreddit over to a Lemmy community? Meaning, create it, import the sidebars, welcomes, rules, graphics, etc. so it looks familiar to regular users. If not, at least a step-by-step tutorial on how mods could do it.

    Another option would be to provide something like a crossposting Chrome or Firefox extension that lets people simultaneously post content to both Reddit and Lemmy. Give them a smooth transition path.

    Lastly, the Bluesky concept of ‘pluggable algorithms’ is one way to make it so users can choose whatever sort works best for their interests.















  • I have a project ready to try this out. It’s a software simulator, and each run (typically 10-10,000 iterations) can be done independently, with the results aggregated and shown at the end. It’s also instrumented to show CPU and memory usage, and on MacOS, you can watch how busy each core gets (hint: PEGGED in multicore mode).

    Can run it single-threaded, then with multiprocessing, then with multi-core and time each one. Pretty happy with multicore, but as soon as the no-GIL/subinterpreter version is stable, will try it out and see if it makes any difference. Under the hood it uses numpy and scipy, so will have to wait for them.

    Edit: on my todo list is to try it all out in Mojo. They make pretty big performance gain claims.