• 0 Posts
  • 152 Comments
Joined 1 year ago
cake
Cake day: July 1st, 2023

help-circle


  • Nvidia is worth 42bn USD and employs 30,000 people.

    Nvidia’s has a market cap 30x of Intel’s. So it could issue more stock to raise capital for a buyout. It’s not the company equity but the market cap that it needs to have money to purchase. Even a controlling stake of > 50% would give them defacto control. Of course governments & regulators would probably block it or force Nvidia to divest bits of itself, and that’s probably the greatest protection Intel has against such a scenario.

    But if Intel weakens further, it may well be someone else tries to acquire it. I bet a lot of companies would love to snaffle it up. It’s kind of ironic that Intel used to be the big dog in the semiconductor space but even AMD is bigger than it these days and are potentially many others who’d like buy it out. In fact, for all we know Intel might be shedding all these jobs to make it look more attractive to potential buyers.




  • arc@lemm.eetoPolitical Memes@lemmy.worldBoth sides!
    link
    fedilink
    arrow-up
    1
    arrow-down
    1
    ·
    3 months ago

    So in my mind extremism is bad either way you go and it is not something that anyone should brush off and say “these left wing extremists are fine” because reality never works out that way. Extremism is monstrous either way.

    I suspect “true” Communism is something you’ll only find on the pages of a book. Because in reality it goes from being a revolution, to a party, to cliques, to a power struggle, to a purge, to a dictator. And people get shot, tortured, beaten and sent to death camps every step of the way.


  • arc@lemm.eetoPolitical Memes@lemmy.worldBoth sides!
    link
    fedilink
    arrow-up
    1
    arrow-down
    1
    ·
    3 months ago

    The point I’m making, which I think is obvious and demonstrable, is extreme left aren’t just do-gooders while the extreme right are evil. It’s hard to think of any communist / marxist-leninist / whatever revolutions that weren’t followed by purges, gulags, education camps, progroms or what have you. In some cases, the body count was in the millions, e.g. Pol Pot.

    So in my mind extremism is bad either way you go and it is not something that anyone should brush off and say “these left wing extremists are fine” because reality never works out that way. Extremism is monstrous either way.



  • It’s definitely a lot slower. I remember working there and at lunchtime they’d be working the grills 24 down - basically double the usual capacity and that stuff was wrapped and put into the racks constantly. They’d try and make burgers to meet demand with a holding time by which the burger should be sold by or thrown into a red bin. Usually it worked fine and waste was minimal but I assume some beancounter thinks that system and red bin waste costs McDonalds more money than it does to waste 5-10 minutes of somebody’s lunch break. If people get pissed off by the wait though they might consider going somewhere else - after all, if they’re going to wait, why not in a place where something more substantial than a burger is being prepared.


  • I live in Ireland and I like McDonalds occasionally. But there is no doubt that there food is quite expensive and they aren’t innovating. Once a month there will be some new burger which is usually just the same as a normal burger but with bacon or bbq sauce or some shit but it’s just boring and lazy marketing. What is worse than the food is the entire ordering experience - those bullshit kiosks are very time consuming and aggravating to use and then because they’re cutting staff you can look forward to a 5 or 10 minute wait for food to appear. I remember when I worked in McDs at peak periods you’d get your food almost as soon as you ordered it (unless it was a grill item) but not any more.




  • arc@lemm.eetoMemes@lemmy.mlEven paper glows
    link
    fedilink
    arrow-up
    59
    arrow-down
    1
    ·
    7 months ago

    The EFF has some info about the practice - https://www.eff.org/pages/list-printers-which-do-or-do-not-display-tracking-dots.

    I imagine there are ways and means of obfuscating / anonymizing the dots such as blocking the printer from emitting them (e.g. an empty yellow cartridge that the printer perceives as full), modifying the firmware, using a burner printer, or using a mono laser jet.

    As a side issue, most modern bank notes have a bunch of yellow circles integrated into the design on each side. They look random but they’re in a recognisable pattern called a constellation that enables devices like copiers / scanners to recognize when people are trying to copy money or other financial instruments like checks.




  • Concerning logs:

    1. You can still log to text if you want by configuration (e.g. forward stuff to syslog) and you can use any tools you like to read those files you want. So if you like text logs you can get them. You can even invoke journalctl to output logs on an ad hoc / scheduled basis in a variety of text formats and delimited fields.
    2. Binary allows structured logging (i.e. each log message is comprised of fields in a record), indexing and searching options that makes searches & queries faster. Just like in a database. e.g. if you want to search by date range, or a particular user then it’s easy and fast.
    3. Binary also allows the log to be signed & immutable to prevent tampering, allow auditing, intrusion detection etc… e.g. if someone broke into a system they could not delete records without it being obvious.
    4. You can also use splunk with systemd.

    So people object to systemd writing binary logs and yet they can get text, or throw it into splunk or do whatever they like. The purpose of the binary is make security, auditing and forensics better than it is for text.

    As for scripts, the point I’m making is systemd didn’t supplant sysvinit, it supplanted upstart. Upstart recognized that writing massive scripts to start/stop/restart a process was stupid and chose an event driven model for running stuff in a more declarative way. Basically upstart used a job system that was triggered by an event, e.g. the runlevel changes, so execute a job that might be to kick off a process. Systemd chose a dependency based model for starting stuff. It seems like dists preferred the latter and moved over to it. Solaris has smf which serves a similar purpose as systemd.

    So systemd is declarative - you describe a unit in a .service file - the process to start, the user id to run it with, what other units it depends on etc. and allow the system to figure out how to launch it and take care of other issues. It means stuff happens in the right order and in parallel if it can be. It’s fairly simple to write a unit file as opposed to a script. But if you needed to invoke a script you could do that too - write a unit file that invokes the script. You could even take a pre-existing init script and write a .service file that kicks it off.


  • arc@lemm.eetolinuxmemes@lemmy.worldSystemd controversy be like
    link
    fedilink
    arrow-up
    27
    arrow-down
    1
    ·
    edit-2
    8 months ago

    Kind of sad there are still people raging over systemd. When it flares up in discussions there is the usual debunked nonsense:

    • it only logs information to binary and this is somehow bad. Except it it can be configured to log to text as well and it uses binary so it can forward secure sign records to prevent tampering as well as offering database style query operations.
    • it’s insecure because the repo has millions of lines of code. Except that they compile into hundreds of small binaries running with least privilege, and often replacing the task of far more dangerous processes (e.g. there is an NTP client in systemd which sets the time and nothing else).
    • various rants about the primary author

    What is more bizarre is the nostalgia and hearkening back to sysvinit scripts when systemd didn’t replace sysvinit! Systemd replaced upstart which replaced sysvinit. Because writing 100s of lines of script to stop/start/restart a process sucked - insecure, slow, didn’t scale, didn’t capture dependencies and everyone knew it. Upstart was the first attempt to solve the issue and was used in Debian / Ubuntu, Fedora / Red Hat, openSUSE and others until systemd came along.