

I actually totally agree with this; I just think the solution is holding these companies to account rather than forcing all users to submit very personal identification.
not entirely human


I actually totally agree with this; I just think the solution is holding these companies to account rather than forcing all users to submit very personal identification.


I think you’re imagining the difference between them from a technological point of view to be much bigger than it actually is.
I have debit and credit cards, Visa and Mastercard for both. Using them feels identical; one draws from your bank account balance and the other goes towards an invoice sent to you at the end of the month.
When you pay with them, the vendors themselves don’t see any private information about you, other than the card number and the way your name is written on the card. Some of my cards only have my first initial and my last name.
They can, however, track that card number across multiple purchases or with partners to build a profile.
Visa and Mastercard themselves can see a lot more, but that’s a given if you use any kind of banking services anyway.
In terms of where they’re accepted, I’ve used them all over the world and the only time it mattered which type I use, is this one flight where Ryanair was not accepting debit when I was trying to buy water… Somehow you have to borrow money to eat/drink on board, which is just silly.


I totally agree with this assessment, but being high and being tipsy/drunk are also very different beasts.
I wouldn’t smoke if I’m trying to gain a bit more social courage lmao


Good Lord, this is the UK’s Rwanda scandal all over again.


I grew up with the Internet of the noughties and saw some screwed up stuff. That should have been on my parents, but I turned out okay anyway.
Canada’s just the latest to join the mass surveillance club.
Because your vitriol comes from being deeply unhappy in your own life.
There’s no easy way to put this, but some cultural traits are bad. Your homophobia is rooted in broader social pressures imparted onto you by your environment/community. These pressures can mess with your sense of self-worth, but they are usually ripple effects from decades of clinging to religion in dire/traumatic circumstances. You can and should be better.
If it makes any difference to you I’m middle eastern myself


No idea; I’ve personally never phrased it like that. I just say that I pay (income/council/whatever) tax.
Feels like an Americanism to me.


Yes, that is what I referring to when I said that police have a lot to answer for. How multiple police officers fail to notice the victim was stabbed in is mind-boggling, let alone while he is literally telling them this. This is a level of incompetence that actually makes dystopian levels of job automation (including policing) seem favourable.
I think “where you fall on the political spectrum” is quite a personal thing for the attending police officers to know, as opposed to demographic information. I doubt you are insinuating that white people have uniform political opinions


I appreciate you summarising the actual story/news article, but that is not what I was asking about.
My comment was a reply to rambling about… “Lemmy says to punch Nazis and this is what happens when you don’t allow people to make mistakes” which was barely comprehensible, chock full of false assumptions about what happened and what Lemmy users think, and topped off with a smidge of Nazi apologia.
I think the comment I replied to has since been removed as I can’t see it anymore, so I’m guessing you saw my comment as a top-level comment. No biggie.
Anyway, while I’m here, I’ll leave my actual thoughts on the story itself, which is that it’s a horrible tragedy. It’s also sickening how the far right are hijacking his parents’ grief to stir division and make some delusional point about white people being oppressed in the UK. Police have a lot to answer for on this one.


Not doomed at all; going abroad is a privilege. Best of luck to you wherever you end up; you’ll be fine.
What is the purpose of counting channels? A handful of servers I’m in have one.


Nobody challenged your legal rights.
You are a vile human being.


What in the world are you talking about?


Allow me to explain with a practical example: you have a camera on the network, and you want automate taking snapshots in response to some arbitrary trigger (e.g. every minute, or whenever a separate motion sensor is activated). There are standards and conventions for type of integration, but military grade hardware often wants you to do things from first principles.
Typical consumer/IP camera: the camera has a REST API for its command set, so you can formulate a HTTP request like GET http://my-camera-ip/command/snap?stream=0 and the server will respond with image data. You can knock this out in maybe < 30 mins and < 100 lines of code. If you’re a bit crafty, you can add support for multiple different camera models, which may vary in URI formation and authentication.
On the other hand, trying to do this with a military grade camera, the experience is usually something like this: The camera comes with proprietary client software that is closed source. In UI you can click a ‘snap’ button to take an image, but no viable route for automation. You try to reverse engineer it with Wireshark, but it appears to be a WebSocket connection with constant data transfer, which makes dissecting the ‘snap’ command difficult.
You check the manual, and the only mention of how to directly command the camera is via a serial line. That’s the first problem: you don’t want to run a long cable from the server running your automation, to the camera itself. So you buy a small serial device server, and run a serial cable between it and the camera. It will forward any byte sequence that is sent to it over your LAN, to the camera’s serial input.
The manual references a separate document that explains the communication protocol, which should explain what byte sequence to send to ‘snap’ an image. You hunt down this document, and. Uh-oh. It’s 344 pages long. Ctrl+F, you look for “snap” and find it’s in section 17. It references some earlier sections about sync bites, message headers, and checksums. You finally work out that the full byte sequence you need to send to trigger a snapshot is00 7E 11 3D 01 00 0E 0D 0A. You write code that sends that sequence over TCP to the serial device server. But there’s a problem: you’re not receiving any bytes back. Where is the resultant image?
You go back to the manual and it mentions that “snapshots and recordings are stored on the internal SD card” and “SD card contents are available via FTP”. It doesn’t give a spec, or even a filesystem, for the SD card. After trying a bunch of different ones, the camera finally detects your SDXC card formatted as exFAT: the magic combo.
There is no explanation of the FTP functionality in the manual, so you try the default FTP port, and make some educated guesses for the right username/password combo. None of them work, so you contact the manufacturers for help. 2 weeks later, they respond with the credentials. Finally, you’re in, and you’re seeing new image files showing up whenever you send the byte sequence. Success! Now, your code does something like this:
00 7E 11 3D 01 00 0E 0D 0A via TCP to serial device serverA week later, your boss walks in and says that a new competitor, manufacturer B, has cameras with much more impressive IR sensors for nighttime surveillance. The existing cameras will be replaced starting next week. None of what you have built is reusable for manufacturer B cameras; it’s time for a new adventure.
It’s mind-boggling. It’s like the manufacturers’ engineers have not spoken to anyone who has written any software in the last 20 years.


Having additional virtual network interfaces on VMs is completely normal, ens18 does indeed sound like the right one you should be looking at.
Seconding the other commenter who mentioned the possibility of a second DHCP server.
Is your Proxmox host wired via ethernet to the pfsense? Or are there WiFi APs in the mix anywhere


For most of the year, yes, agreed, but the hot summers days here are absolutely brutal , especially in the last 5 or so years.
Ironically, hot days are more of an issue to me now than they were back when I was living in a country where August temps would hit low-mid 50s. (That’s the negative part of the tradeoff; I would still take England weather over the desert heat, since walking outside is very possible and doesn’t kill you.)


As someone who works in defence & surveillance as a systems engineer (so by every measure a civilian), I’m still the one on the right… military grade hardware is a fucking nightmare to integrate into larger systems.
One of the airports in Warsaw has fidget spinners bolted to the wall 😭 even that’s outdone this.