Skip Navigation
ricdeh ricdeh @lemmy.world

Male 18-year-old FOSS and GNU/Linux activist and user

Posts 6
Comments 756
Georgian President Refuses To Sign Anti-LGBT Bill Into Law.
  • Zurabishvili vetoed that bill, but the ruling party overrode her opposition and promulgated it

    I don't know anything about Georgia's political system. How can the parliament speaker sign the bill into law without the president? How can the government override her opposition? With a super strong majority?

  • With a budget of $120 million, Francis Ford Coppola's "Megalopolis" grossed only $4 million on its opening weekend, making it one of the worst box office openings for a $100M+ movie to date.
  • AFAIK, the movie received a 10-minute standing ovation at Cannes. It is an art film first and foremost, and probably not for the general audience that flocks to the same old, boring formulaic movies a la Marvel & co.

  • With a budget of $120 million, Francis Ford Coppola's "Megalopolis" grossed only $4 million on its opening weekend, making it one of the worst box office openings for a $100M+ movie to date.
  • Not really sad. Coppola is an artist, first and foremost, and he said that he doesn't care whether the film will be financially successful. It is a passion project financed at least partially from his own money, and to be his magnum opus.

  • Ok guys, who games on an IoT version of Ubuntu?
  • One of 8.22% 🥰

  • Have never even bothered with 4K. 1080p at 60 FPS is glorious!
  • Nah 4K is wonderful. The higher the pixel density, the better the display (for me at least)

  • Mafs innit
  • That's some weird 120° though. I guess 0° is the cake lying face down?

  • [newbie] Does one need special drivers for running 3D printers?
  • Blender can absolutely be great at creating precise geometry, one just needs to know how to properly use the tool. Yes, the workflow will be much different than in other CAD, but principally, Blender is just as good as any other, or even better due to a more extensive development history and greater degree of maturity.

  • [newbie] Does one need special drivers for running 3D printers?
  • Prusa is a very FOSS-friendly manufacturer. Their entire slicer and the firmware for all of their printers are free and open-source. And they make really high-quality 3D printers. With 500€ you should be able to get the Mini, though getting the larger flagship MK4S may pay off more in the long run.

  • New York City is the only city in America (or maybe the world) where people are expected to have a general understanding of the geography in casual conversation.
  • Definitely not in the world lol, I don't think most Europeans care for or have any idea of the geography of New York

  • Peace at last
  • Did you write this yourself? Amazing! Star Trek and GNU/Linux cross-wet dream

  • Does anyone actually use the windows key on their keyboard as intended by the OS?
  • Hey buddy, do you want to try some of this GNU/Linux?

  • Chip Giants TSMC and Samsung Discuss Building Middle Eastern Megafactories [WSJ]
  • Personally, I would build them in Lebanon. Seems to be the safest and most stable place in the Middle East atm

  • [Meta] How does mods remove posts based on sources?
  • Thank you for the strong counterargument <3 /s

  • Has anyone ever seen a "10A" USB-C cable and can tell what their purpose is?
  • In what world are you living where 10 A is on the low side for general-purpose electronics?

  • What prevents Linux from being installed on mobile devices?
  • How many support LineageOS? Answer: a lot.

  • What prevents Linux from being installed on mobile devices?
  • macOS definitely is Unix. In the literal sense that it is actually certified (unlike FreeBSD, for example), and it is very much Unix-y under the hood.

  • Is there a difference between drawing a random card, and mathematically generating a random card?
  • Computers are able to "make true randomness" if you give them the appropriate sensors and hardware, leveraging physical phenomena. Regardless, OP specified the following:

    Let's assume I have a computer with a perfect random number generator.

  • AskReddit is over run by bots
  • How do you know I'm not a bot? :)

  • Intel ejects Foundry as independent subsidiary
  • Yep, for better or worse, Intel is pretty much the only remaining Western "bleeding-edge" CPU designer manufacturing its products in its own fabs. I find it weird that so many people seem to root for Intel to fail.

  • Deutschlands Migrationsdebatte ist auĂźer Kontrolle: Was frĂĽher nur Rechtsextreme forderten, finden auch etablierte Mitte-Parteien heute völlig okay -- [Meinung]
  • Von denen, die 2015 als GeflĂĽchtete herkamen, waren 2022 64 Prozent erwerbstätig.

    Na ja, ich bin überzeugter Sozialdemokrat und vermutlich die letzte Person, die man rechts nennen könnte. Aber ist 64% nicht ein wenig niedrig, vor allem unter der Annahme, dass die meisten Geflüchteten recht jung waren?

    Vielleicht sollten wir den Wandel im Migrationskurs (der nicht neu ist, sondern schon seit 2021 durch die Ampel signalisiert wurde) nicht als "Rechtsabbiegen" bezeichnen, sondern als eine vernünftige Neubewertung in anderen Zeiten? Es ist wahr, dass es unfassbar schwierig ist, Straftäter abzuschieben, insbesondere, wenn diese bei der Einreise oder danach ihren Pass "verloren" haben und keine Nationalität mehr eindeutig nachzuweisen ist.

    Menschen, die Asyl benötigen, können nach geltendem internationalen Recht legal anreisen und ihren Antrag stellen. Einen Aufenthalt durch eine illegale Einreise zu erzwingen ist nicht okay und hat nichts mit Links oder Rechts zu tun.

  • Is the bitwise AND of subnet masks and IP addresses redundant?

    So I understand that the subnet mask provides information about the length of the routing prefix (NID). It can be applied to a given IP address to extract the most significant bits allocated for the routing prefix and "zero out" the host identifier.

    But why do we need the bitwise AND for that, specifically? I understand the idea, but would it not be easier to only parse the IP address string sequence of bits only for the first n bits and then disregard the remainder (the host identifier)? Because the information necessary for that is already available from the subnet mask WITHOUT the bitwise AND, e.g., with 255.255.255.0 or 1111 1111.1111 1111.1111 1111.0000 0000, you count the amount of 1s, which in this case is 24 and corresponds to that appendix in the CIDR notation. At this point, you already know that you only need to consider those first 24 bits from the IP address, making the subsequent bitwise AND redundant.

    In the case of 192.168.2.150/24, for example, with subnet mask 255.255.255.0, you would get 192.168.2.0 (1100 0000.1010 1000.0000 0010.0000 0000) as the routing prefix or network identifier when represented as the first address of the network, however, the last eight bits are redundant, making the NID effectively only 192.168.2.

    Now let's imagine an example where we create two subnets for the 192.168.2.0 network by taking one bit from the host identifier and appending it to the routing prefix. The corresponding subnet mask for these two subnets is 255.255.255.128, as we now have 25 bits making up the NID and 7 bits constituting the HID. So host A from subnet 192.168.2.5/25 (HID 5, final octet 0000 0101) now wants to send a request to 192.168.2.133/25 (HID 5, final octet 1000 0101). In order to identify the network to route to, the router needs the NID for the destination, and it gets that by either discarding the 7 least significant bits or by zeroing them out with a bitwise AND operation. Now, my point is, for identifying the network of which the destination host is part of (in this case, the host is B), the bitwise AND is redundant, is it not?

    So why doesn't the router just store the NID with only the bits that are strictly required? Is it because the routing table entries are always of a fixed size of 32 bits for IPv4? Or is it because the bitwise AND operation is more efficiently computable?

    10

    CVE-2024-6387 OpenSSH Server Authentication Bypass

    > A signal handler race condition was found in OpenSSH's server (sshd), where a client does not authenticate within LoginGraceTime seconds (120 by default, 600 in old OpenSSH versions), then sshd's SIGALRM handler is called asynchronously. However, this signal handler calls various functions that are not async-signal-safe, for example, syslog().

    2

    Have you ever been unable to pay by direct debit through PayPal?

    I recently wanted to buy a product from a manufacturer and luckily they offered PayPal as a payment method. However, after I signed into my PayPal account, it wouldn't show my bank account as a payment option and instead prompted me to add a card or bank account, despite my account being fully confirmed and direct debit activated. PayPal customer service reps told me that maybe the retailer blocked direct debit through PayPal and I should try adding a credit card, however, why would they do that if they offer non-PayPal direct debit anyway? The customer service reps further told me that my account was in good standing, so there shouldn't be any problems with trust etc. Have you ever encountered an online shop that refused direct debit when handled by PayPal?

    10

    Linux on Microsoft Copilot+ PCs?

    Do you think it will be possible to run GNU/Linux operating systems on Microsoft's brand new "Copilot+ PCs"? The latter ones were unveiled just yesterday, and honestly, the sales pitch is quite impressive! A Verge article on them: Link

    10

    Apple is a $3 trillion company — again

    www.theverge.com Apple is a $3 trillion company — again

    That price may have more to do with the iPhone 15 than the Vision Pro.

    "While developers start work on building Vision Pro apps, the potential for people upgrading to the iPhone 15 this year is a big reason for investor optimism."

    0

    You don’t have to freak out about aspartame in your diet soda

    www.theverge.com You don’t have to freak out about aspartame in your diet soda

    Aspartame being a possible carcinogen doesn’t mean what you think.

    "The IARC will reportedly classify aspartame as a possible carcinogen. But this isn’t a food safety agency, and the context matters."

    44