• 0 Posts
  • 35 Comments
Joined 11 months ago
cake
Cake day: July 31st, 2023

help-circle
  • What is so maddening about this comment is how much it proves my point that you don’t see.

    This was literally the first sentence of my post. I’m sorry if I wasn’t clear enough and “maddened you”.

    At this point I feel like it’s akin to art that people just don’t get. The average person doesn’t understand the message or point.

    I personally don’t often enjoy art. In particular, the art where the artists are creating some kind of layered metaphor like a blank canvas with a cryptic title or something. The artist might be trying to communicate that consumerism will never fill our need for social contact or whatever but the message is lost on me.

    The same thing applies here for most people I think. However, for once I actually see a meaning in it. I get horrified by the act, then I read later how little actual damage is done. Then I reflect on it and realize there is no way the protestors didn’t know that the Mona Lisa was protected by glass. There is no way they accidentally used the least harmful bright paint they could find on Stonehenge… and it occurs to me that I was so immediately upset at the perceived harm but have become desensitized to news of the actual harm of climate change.

    I’m not stating that this message is obvious or that people are stupid if they are angry - I’m stating it gets lost and most people don’t get it. Yes, I’m a bit angry that the media often never mentions up front how little damage is done in any headlines I see. It’s usually “climate activists throw soup on Mona Lisa, arrested, condemned by bystanders and art lovers everywhere” not “activists harmlessly throw soup on painting protected by glass to demonstrate humanity’s questionable priorities”. Sure, the glass can be in the article somewhere but nobody bothers to read that far.

    Regardless, I agree that the end result isn’t helping because most people don’t understand. I, however, sympathetic with the activists and felt compelled to explain the message as I saw it.

    What is most interesting to me is that the “powers that be” have so much influence over the news that I feel like harmless acts of protests have lost their power and are demonized by default. Climate change, income inequality, police abuse, Gaza… I’m honestly concerned that people with very legitimate concerns (at least, in my mind) will have to further escalate their actions in order to feel heard. This is just the beginning I think.

    “I must say tonight that a riot is the language of the unheard.” MLK


  • At this point I feel like it’s akin to art that people just don’t get. The average person doesn’t understand the message or point.

    These protestors are committing simple acts that threaten to damage something that people value. People are so very angry that biodegradable paint was sprayed on an ancient monument, or that soup was tossed onto the glass protecting a famous painting.

    Yet they continue on with their lives and refuse to hold many corporations accountable while those corporations make our planet less habitable. This would become a wall of text that nobody would read if I tried to just outline the existential threat human society faces thanks to the reckless behavior of many of the organizations. The suffering, loss of life, economic damage… unimaginable… yet we are basically barreling toward that inevitability at full steam.

    But I’m sorry, how silly of me. How could I forget that some scientists might lose the opportunity to study undisturbed lichen on Stonehenge this year.


  • Sadly, old Google doesn’t work either thanks to the efforts of SEO and the AI generated garbage.

    The problem with search is that the motives of those being searched aren’t to provide you with the most helpful answer. The motives are to get you to visit their website then stay/click/buy as much as possible. They’ll tailor their content to match whatever algorithm the engine is using.

    That’s why Google’s new plan is to collect all of the information ahead of time and skip the “visit other websites” step. Then you can stay/click/buy on their website as much as possible.

    Seriously though. Just skip all this nonsense, you selfish piece of shit, and open your wallet so the hungry corpos can feast on its contents - they have poor, innocent, starving shareholders to feed… you monster.


  • USA here. They’d likely consider this to be extremely patronizing, but I consider most conservative voters to be unaware of what it is they are actually preaching. It’s crazy but the more extreme their views get, the more I’m convinced they’re misinformed and misled. Some folks at the top of their pyramid I legitimately hate - I have no doubt they know exactly what they are doing.

    So many of conservative beliefs just fly in the face of reality. I hate that they’re perpetuating the harm that the beliefs and resulting policies cause, but seeing as how they are mostly based on clear and obvious lies, I have to assume that most of the supporters just don’t realize they are being lied to and have invested emotionally in an identity that actively harms their own interests.




  • It would really help to know what concepts you are already familiar with and feel like you understand. Edit: it would also be helpful to know what you are trying to do that has you working with ports or using a VPN. There are countless situations where ports and VPNs are involved. /Edit Lacking that, I’m going to cover a lot of basic concepts. I’m assuming typical/common situations, as always it can always be different and more complicated. Wall of text incoming.

    Typical basic networks are a collection of devices that are able to communicate with each other through some medium like a wired network or WiFi. Each device In a network will have an IP address (a set of four numbers between 1 and 254 divided by periods for example: 192.168.1.100). For one device to send a message to another device, it addresses the message to the device using its IP Address. This is like sending a letter in the mail - you need to mark the letter with the street address or it won’t be delivered.

    Now sticking with this analogy, if I wanted to send you a letter and you lived in a hotel or apartment complex without a dedicated address just for you, I need to make sure to address the letter not just to your building but also to you specifically. This is where ports come in. If I want to join your Minecraft server, I need to be able to reach your computer specifically and I also need to make sure my Minecraft game is talking to your Minecraft server and not your web browser or something. Software listens for specific ports. So to join a Minecraft server hosted on your computer with the address 192.168.1.100 I’d need to also specify the port so that the Minecraft server software know my messages are for it specifically.

    That’s the ELI5 version.

    Stepping up the complexity now. In most cases, joining someone’s Minecraft server is more complicated because I’m on my home network, and my router is connected to the internet, and through the internet I connect to your router and then from your router I need to connect to your computer. The way this works is that each of our routers are on two different networks - our home network and the Internet.

    Most home networks will look very similar. There are ranges of addresses that are reserved for local (non internet) network devices, such as my example IP address - 192.168.1.100. It is possible that each of our networks (and countless other home networks) have a device with this IP address so I can’t just send a message to 192.168.1.100 and have it get to your networks 192.168.1.100 address. Fortunately, routers act as middlemen and coordinate communication between devices inside our network and devices on the internet. Think of the router as a fancy doorman outside the hotel or apartment who knows what room all of those living there are staying.

    Unfortunately, it is often the case that my computer will not know the IP address of your computer within your network. You can work around this by using port forwarding. I write “Minecraft” on the letter and you instruct your doorman that any letter with “Minecraft” written on it should be delivered to your Minecraft server. In reality, you’d forward any traffic from the internet with a specific port number directly to your Minecraft server computer. The computer running the server is already “listening” for traffic on that port and will take it from there.

    Now for more complicated stuff. Technically, ports are rather arbitrary. Some ports are standardized. As someone else had mentioned, port 80 is the standard for HTTP and 443 is standard for HTTPS (encrypted). However, nothing is stopping you from hosting a webserver on a server using a different port, like port 12345. Your web browser will assume port 80 and the webserver will ignore your web browser until you tell your browser to use port 12345. It is also possible for multiple service or pieces of software to have the same port which causes problems. I have a server on my home network and multiple services that display a web page (port 80 or 443). They can’t all use the same port so I have to work around this by either using different ports or assigning each a different IP address.

    So what does “opening” a port mean? Well, as you might imagine there are many pieces of software and many services running on devices in your home network. As a security precaution, many routers will block or ignore any traffic on the internet that tries to talk to it in a way it is not expecting. You don’t want randos trying to connect to your computer through the internet and your router.

    Unblocking or opening a port could be something like forwarding a port to a device on your network. Technically, this would involve finding a “Port Forwarding” setting on your router. Here, you would indicate any traffic with port 25565 (the default Minecraft server port) should be directed to your server at address 192.168.1.100. Now your doorman will always deliver every letter with “Minecraft” written on it to your Minecraft server. Be aware that even if you aren’t the server software, every letter like that will continue to be directed to your server. If there is a security flaw in Minecraft, this could technically be something someone could exploit.

    Similar to your router, Windows (the operating system) will also block/ignore traffic that it isn’t expecting as a security precaution. Opening a port might mean creating a rule in your firewall setting to let traffic from certain ports into your computer. If Windows is ignoring any letters it doesn’t recognize, my Minecraft letters still won’t reach your Minecraft server even if it is clearly addressed to it. Windows may also be blocking traffic from leaving your computer if it does not have a firewall rule telling it otherwise so its possible the server got my letter, but Windows blocked the reply so I’m left hanging.

    A VPN is a Virtual Private Network. This term can mean a few different scenarios but what they all have in common is that it creates a hole into your network, bypassing the router (maybe both routers). It is sometimes called a tunnel, which is a pretty good metaphor. Basically, you are running a virtual network cable through the internet from one computer or network to another. Through this virtual network, devices will be able to see and interact with each other as if they were on the same network.

    Real life example. I manage a few servers where I work. If I need to log into those servers from home I cannot do this. It would be extremely dangerous to just let anyone on the internet have access to the server’s login screen. So instead, I use a VPN. Now my home computer is virtually connected to my work’s internal network - as if I’d brought my personal laptop into work and plugged it into the network jack next to my workstation in my office. I can use the same software I’d use at work to log into my servers without having those servers directly exposed to the internet. I am limited by my home internet speeds but it is otherwise almost identical.

    Similarly, we could install VPN software on our two computers and I could then join your Minecraft server directly, bypassing your router, as if we were both on your home network.

    Like I said, there are quite a few ways to do this and I’ve heard many of the ways referred to as either a VPN or a tunnel. More context could get you a better answer.

    Generally, opening ports is a security risk. This is especially true when opening more common ports or ports that get a lot of use. More common, standard ports will be more likely to get attacked and ports that get a lot of use will be more likely to be targets of exploits. It really depends on your scenario. Imagine that, if someone wanted, they could likely figure out what port you’ve opened and what is listening for that port on your home network. They might try to brute force a password or take advantage of the software’s security flaws.

    Forwarding a randomly chosen port so a friend can join your Minecraft server? Not so risky. Opening port 22 so you can log into your home computer while you are away from home? Much riskier. Using an atypical port for remote access is still risky as, like I said, you have to assume that if someone really wanted to, they could figure out that remote access is running on port 17426 or whatever random number you may have chosen.



  • Your clip is Biden saying he did exactly what I said he did and exactly what my source says he did. The US administration, Europe, and the IMF was displeased that the prosecutor wasn’t going after corruption and wanted him fired. The United States, via their chosen representative Joe Biden, threatened to withhold aid if they didn’t fire the guy and find someone who would do the job.

    You are saying Biden did something for reasons that were not in the interest of the US and it’s allies in order to benefit himself and his family. I’m saying he did that same exact thing because it was, in reality, the US and it’s allies’ literal goal. Biden saying he did that thing does not support your false statement regarding why he did it.

    It’s clear you aren’t reading any sources being shown to you. It’s clear you aren’t even reading the quotes from my sources that I included in my response to save you the trouble. It’s clear you aren’t addressing any other points raised in my response.

    It’s clear you are not engaging in discourse. You are willfully spreading disinformation and think a link and insincere politeness makes you look like a reasonable actor. My response is here, not because I think you will respond with anything relevant but because I want the audience you want to misinform to understand what you are and what you are doing.

    Please step outside and touch some grass. While you are at it, please tell whatever foreign power is paying you to spread this nonsense that you need to improve your script or flowchart or whatever.


  • in a fair and free world you will have different opinions and both sides need to be respected

    This is true when it comes to matters of reasonable opinion. The problem is that opinions are not facts. You cannot tell me that the sky is green and that I need to respect your opinion or the world is not free. In truth, the world can be endangered by your incorrect understanding of reality.

    Joe Biden literally leveraged aid money as per US and European policy to have an ineffective guy fired. Do you think the Obama administration and the IMF and many European nations were all pressuring Ukraine to protect Biden’s son?

    Mike Carpenter, who served as a foreign policy adviser to the then-vice president, told USA TODAY that Shokin “never went after any corrupt individuals at all” and “never prosecuted any high-profile cases of corruption.”

    .

    As a result, Biden leveraged $1 billion in aid as “a stick to move Ukraine forward,” Kupchan said. “He was acting alongside our European allies. Everybody was of a single mind that this prosecutor was not the right guy for the job.”

    https://www.usatoday.com/story/news/factcheck/2020/10/21/fact-check-joe-biden-leveraged-ukraine-aid-oust-corrupt-prosecutor/5991434002/


  • We hear aid is provided, we hear aid is taken away from civilians by Hamas beating people, we hear people selling aid packages to others civilians. We hear all sorts of things.

    Which of these potentially terrible things negates what has been done to the people of Gaza? The destruction of their infrastructure - housing, universities, hospitals. The killing of civilians. The living conditions. The starvation.

    So there is some, but not nearly enough aid. So some bad actors are taking advantage of the unimaginably fucked up situation there. How does that change the fact that Israel is at best using collective punishment (a war crime) and at worst committing genocide?


  • Because those in power spend a lot of effort distancing themselves from the impact they have and casting blame on everyone else, including on the victims.

    A local factory may be poising the locals, paying little in taxes, and exploiting workers on the cheap but they are the biggest employer and its those minorities’ fault for some reason and if not that it’s the locals’ fault for not pulling themselves up by their own bootstraps like their fathers did…

    Oh, and look over there, quick! A teacher is trying to groom your kid because he refused to shame that one gay kid in school! Git 'im!


  • 1200/35 for $120 US/month. I also own my own modem and router. Otherwise it would be another $15-$20/month.

    Anything cheaper knocks my upload down to 20 and saves me very little. Viewing my options now hides upload rates but I checked a few months ago when my promotional rate expired and the price jumped $40.

    1000/20 is $115, 800 is $110, 500 is $105, 300 is $90, 150 is $68

    Any competitors don’t qualify as broadband anymore. Maybe 35/5? I didn’t even bother checking the price.

    At least it’s fairly stable and “unlimited” but I’m fairly sure they can say that and still cap it at 200GB/month or something. Oh, and I can connect their surveillance device… I mean “free streaming box”… and get Peacock at no extra cost!

    'murica?




  • I see people cosplaying as Hamas as Palestine protests. Cosplaying as genocidal maniacs.

    I can’t take you seriously.

    First, Israel has committed war crimes against Palestinians for decades. When nobody plays by the rules there is no point in quoting the rules.

    Very few people condone killing civilians or taking hostages. Most people support the liberation of the Palestinian people and peace.

    Which is why it’s only the young and naive that support it.

    Only the naive think that the situation is anywhere near as cut and dry as you seem to imply it is. And only the gullible think any fraction of the population worth mentioning are cosplaying as or celebrating the actions of Hamas.