• 1 Post
  • 255 Comments
Joined 3 months ago
cake
Cake day: August 21st, 2024

help-circle

  • i don’t know if it counts as proper cyberpunk but it floated to tie top of my mind when i read the post.

    in fall 2014 i was visiting a friend in stockholm, and through some weird mix of circumstances we found ourselves in the apartment of a friend of a friend of theirs, at three in the afternoon, like eight of us in a three-person sofa bed and watching Algorithm. the guy who lived there really wanted to show it to us since he thought it was so cool, gritty and realistic. i remember that he had a photograph on his wall of him shaking hands with the king. i think he worked for google. anyway…

    it is one of the worst movies i’ve seen. and it’s not funny bad. it’s an angsty drama about a computer hacker hiding from the authorities, so it’s mostly about how good he is with computers. all in this muted gray-green color, it’s mostly shot day-for-night, and it’s just soooo boring.

    the only detail i vividly remember is a scene where the protagonist swaps to a new burner phone. he does this by taking the SIM card out, throwing the old phone in a bin, and putting the SIM into the new phone. i still think about that scene.








  • i’m completely unmotivated at work and my tasks are time-sensitive. also my employer is collapsing around me so i’m trying to see if anyone else needs people.

    also i’m halfway through a move, and there’s no internet in the new place until december so i’m sitting here in a room without curtains and full of boxes, the only thing still unpacked being my remote work setup.



  • if I’m reading this right, it’s a bit like ipfs+dht. is this a content-addressable system?

    anyway, you should probably have demos of

    • large files (like a Linux disk image), to demonstrate consistency in transfer.
    • Video stream, to demonstrate performance and low latency.
    • multiple files shared with many peers at once, to demonstrate scalability
    • sharing with low bandwidth and high latency, to demonstrate possible mobile use cases.

    thoughts:

    • the logo is very close to wireguard’s.
    • if the data is stored on peers, that means there must always be people with free storage online for it to work? how much storage is needed? is that data in plaintext? could a bad actor push illegal content to peers without them knowing?

    also, please convert the whitepaper to a format that is actually readable. rtf? really?








  • everyone focuses on the tooling, not many are focusing on the reason: python is extremely dynamic. like, magic dynamic you can modify a module halfway through an import, you can replace class attributes and automatically propagate to instances, you can decompile the bytecode while it’s running.

    combine this with the fact that it’s installed by default and used basically everywhere and you get an environment that needs to be carefully managed for the sake of the system.

    js has this packaging system down pat, but it has the advantage that it got mainstream in a sandboxed isolated environment before it started leaking out into the system. python was in there from the beginning, and every change breaks someone’s workflow.

    the closest language to look at for packaging is probably lua, which has similar issues. however since lua is usually not a standalone application platform it’s not a big deal there.