• 0 Posts
  • 19 Comments
Joined 1 year ago
cake
Cake day: July 3rd, 2023

help-circle
  • Fuck yeah, public transit - Right in my veins, lets go.

    But for right now, there is ZERO public transit infrastructure where I live, which is only about 20-30 minutes to a medium-sized city’s downtown. And when I say ZERO, I mean ZERO. We don’t even have busses here. No trains. NOTHING. We don’t even have sidewalks on most roads - if you want to walk, you’re literally walking in the road. I used to ride a bike to work a long time ago - I can’t even count the number of times I’ve had shit thrown at me by shitbag rednecks as they zoomed past in their lifted pickup trucks.

    The local governments’ answer to all this is “If you don’t have a car, fuck you.” Cars are literally the only option. If you don’t have a car or a driver’s license, you better find somebody who does and give them gas money, or consign yourself to paying for Uber/Lyft anytime you want to go anywhere. It’s straight-up dangerous to travel any other way around here.











  • Web developer here. A “cookie” is just a piece of information stored on your machine. A cookie can be a setting, saved app data, or a tracking id.

    The reason you keep seeing the banner is because by saying “no” to cookies, you’re telling them they don’t have permission to store ANYTHING on your computer. Which is fine. Your computer your call.

    But if they can’t store anything on your computer, there’s no way to remember that setting next time you come to the website. No local setting storage means they don’t have the stored “no cookies” setting to load. Likewise there’s no tracking id they could potentially look your setting up in their own database by.

    Web site requests are “stateless”. That means that, to a web server, each and every single request to a server is its own brand new, separate connection with no link to any other connection. The only way to share data between individual requests is via some kind of stored “state”. That state can come from your computer in the form of cookies, or from the server in the form of sessions. But linking a connection to a session requires your computer providing a session id; and guess how your computer has to store a session id? If you guessed “in a cookie” you win.

    Are cookie popups annoying? Oh holy Christ yes, both from a web user standpoint and from the stand point of having to implement them as a developer. But by outright rejecting cookies (and/or auto-wiping your cache/cookies when you close the browser), you’re telling the website it’s not allowed to store your preferences for not having cookies and eliminating the websites ability to recall that preference at all.









  • The pcb footprint isn’t the same. Changing the port isn’t as simple as just soldering this one instead of that one. The pins are in a different order. Changing the port requires redesigning the PCB that the port attaches to. In a larger device, maybe you could create some kind of internal adapter that can solder to the lightning footprint but provide a usb-c port, but there’s just not enough room in a modern phone.

    Plus, even though the USB portion of the circuitry may be the same, the port does more than just provide a usb interface. There’s also headphone functionality and other things on there that have to be adapted too, or the phone will have less functionality than it did and people with bitch that apple broke their headphones when they changed the port over.