Novocirab

joined 3 months ago
MODERATOR OF
 
[–] Novocirab@feddit.org 4 points 16 hours ago* (last edited 16 hours ago)

There's a provision that says the trust structure can be changed without everyone's consent if the intended change is in the interest of all trustees. Rupert, Lachlan and their team want to exploit this by arguing that the ongoing financial success of the media empire is dependent on it retaining its staunchly conservative editorial line, so that it is in fact (from a financial point of view) in the interest of the three non-conservative children if they don't get to have any influence. The first judge wasn't buying it; let's hope that the others will rule the same way. (One argument in their favor is that the $787 million settlement that Fox News has to pay to Dominion Voting System due to a defamation lawsuit was a consequence of Rupert's or Lachlan's die-hard conservative messaging.)

What's less good: I remember dimly that, should Rupert live long enough (past theö year 2030?), he can change the trust at will again.

 

geteilt von: https://lemmy.nz/post/24567808

  • A recent study reveals that over a fifth of the world's ocean has darkened in the last two decades, reducing the surface layers of the sea that receive light, known as photic zones, and where most marine life exists.
  • The darkening is attributed to factors like increased rainfall, agricultural runoff, harmful algal blooms, and climate change, with significant changes observed near the poles, the Gulf Stream, and the Baltic Sea.
  • Reduced photic zones may force marine animals closer to the surface, increasing competition for resources and potentially altering the entire marine ecosystem, according to Tim Smyth of Plymouth Marine Laboratory.
  • Changes in the ocean's photic zones could impact human activities such as recreation, transport, and food supply, potentially affecting the availability of prey and driving predators closer to shore.
  • Researchers used data from NASA’s Ocean Color Web satellite and developed an algorithm to measure light in seawater, finding that over 9% of the ocean saw its lit zones reduced by more than 50 meters.

The photic zone, also known as the euphotic zone or sunlight zone, is the upper layer of a body of water that receives enough sunlight for photosynthesis, typically extending to about 200 meters deep. This zone is crucial for marine life, as it supports the majority of aquatic organisms, including phytoplankton, which are essential for oxygen production and the ocean's food web.

[–] Novocirab@feddit.org 1 points 22 hours ago* (last edited 22 hours ago)

Thank you, that's interesting and good to know. At least it's probably a good idea to not increment/decrement properties in very small steps (like 2% at a time) on a regular basis. I suspect the 5% steps I'm using for brightness should be fine, but I'll implement some shortcuts that go in bigger steps just to be sure.

[–] Novocirab@feddit.org 2 points 22 hours ago (1 children)

The most staggering thing though is that the show has had quite noticeable repercussions on the dealings of the real-life Murdochs. Anyone who would like a long read on all this can check out the Atlantic article linked in the post description.

[–] Novocirab@feddit.org 3 points 22 hours ago* (last edited 22 hours ago)

The Atlantic article that I linked in the post description talks at length about the spicy shit (especially about the family relations and only comparatively little about the legal aspects).

 

Paywall? https://archive.ph/KCtmr

Video des Lanz-Interviews vom 18.6.25 (jetzt mit Ton): https://clip.place/w/mtCbVGhBxZTCaVDfsL8HdS

[–] Novocirab@feddit.org 19 points 1 day ago* (last edited 1 day ago) (1 children)

Someone should make a Monty Python style sketch out of this

 

Note that the outcome of the underlying case, which is about the future of the Murdoch media empire (i.e. whether control over it will fall exclusively to conservative Lachlan Murdoch or be evenly split among all four heirs, of whom three are comparatively liberal), will be extremely consequential for both media and politics on a global scale.

[–] Novocirab@feddit.org 2 points 1 day ago (2 children)

I'm curious about both things you mention. Do you have the name of the kernel module at hand? And can you point me to a source on the monitor flash memory (as I couldn't find anything on that)?

1076
submitted 1 day ago* (last edited 1 day ago) by Novocirab@feddit.org to c/microblogmemes@lemmy.world
 
[–] Novocirab@feddit.org 2 points 1 day ago

I feel you basically. I have given up trying to control the RGB on my RAM (even though it's probably decently documented somewhere).

[–] Novocirab@feddit.org 4 points 1 day ago (1 children)

Physical! The same as if you reached with your hand to access your monitor's inbuilt settings dialogue.

[–] Novocirab@feddit.org 6 points 1 day ago

Your comment has now motivated me to add a Windows section :)

[–] Novocirab@feddit.org 1 points 1 day ago (2 children)

I know nothing about this, but can OpenRGB (Linux tool) talk to your device in any way?

 

This makes it much easier to set your screen's brightness to a comfortable level at each time of the day, and to save energy.

(For Windows, see the very bottom of this post.)

On Linux, if you currently have no keyboard shortcuts for that available, a good way to create them is via ddcutil. Once you have ddcutil installed, have your displays' properties printed in the command line by typing ddcutil detect.

This should show you a list of parameters for each of the displays you have connected. For a display of your choice, try these commands:

ddcutil -n <Serial number> setvcp 10 - 5 # reduces brightness by 5 %
ddcutil -n <Serial number> setvcp 10 + 5 # increases brightness by 5 %

ddcutil -n <Serial number> setvcp 12 - 10 # reduces contrast by 10 %
ddcutil -n <Serial number> setvcp 12 + 10 # increases contrast by 10 %

ddcutil -n <Serial number> setvcp 10 0 # sets brightness to minimum
ddcutil -n <Serial number> setvcp 10 100 # sets brightness to maximum

If these commands all work, you can create in your desktop environment's settings (e.g. KDE) custom keyboard shortcuts that execute these commands. Personally, with my two displays and with dedicated "Brightness up" and "Brightness down" keys (macros) on my keyboard, I am using combinations with the modifiers Alt to address the secondary instead of the primary display, Shift, to adjust contrast instead of brightness, and Control to set an absolute value (0% or 100%) instead of going by increments.


Further notes:

Instead of addressing your displays via their serial number, you can also address your display via most other parameters shown in ddcutil detect by using another option than -n, e.g. via bus number or manufacturer name, but I've found that bus number is not persistent over the years, and manufacturer name ("Mfg id") may contain spaces which may lead to problems.

A full list of all other possible vcp commands (the numbers after setvcp) can be obtained through ddcutil vcpinfo.

If you're using a laptop, brightness adjustments for its internal screen are of course almost always a no-brainer.


On Windows 10 and perhaps 11 as well, you can apparently do the following:

Step 1: Press the Win + A to open the Action Center.

Step 2: Press Shift + Tab to select the brightness slider.

Step 3: Use the left and right arrow keys to adjust the screen brightness.

 

This makes it much easier to set your screen's brightness to a comfortable level at each time of the day, and to save energy.

On Linux, if you currently have no keyboard shortcuts for that available, a good way to create them is via ddcutil. Once you have ddcutil installed, have your displays' properties printed in the command line by typing ddcutil detect.

This should show you a list of parameters for each of the displays you have connected. For a display of your choice, try these commands:

ddcutil -n <Serial number> setvcp 10 - 5 # reduces brightness by 5 %
ddcutil -n <Serial number> setvcp 10 + 5 # increases brightness by 5 %

ddcutil -n <Serial number> setvcp 12 - 10 # reduces contrast by 10 %
ddcutil -n <Serial number> setvcp 12 + 10 # increases contrast by 10 %

ddcutil -n <Serial number> setvcp 10 0 # sets brightness to minimum
ddcutil -n <Serial number> setvcp 10 100 # sets brightness to maximum

If these commands all work, you can create in your desktop environment's settings (e.g. KDE) custom keyboard shortcuts that execute these commands. Personally, with my two displays and with dedicated "Brightness up" and "Brightness down" keys (macros) on my keyboard, I am using combinations with the modifiers Alt to address the secondary instead of the primary display, Shift, to adjust contrast instead of brightness, and Control to set an absolute value (0% or 100%) instead of going by increments.


Further notes:

Instead of addressing your displays via their serial number, you can also address your display via most other parameters shown in ddcutil detect by using another option than -n, e.g. via bus number or manufacturer name, but I've found that bus number is not persistent over the years, and manufacturer name ("Mfg id") may contain spaces which may lead to problems.

A full list of all other possible vcp commands (the numbers after setvcp) can be obtained through ddcutil vcpinfo.

If you're using a laptop, brightness adjustments for its internal screen are of course almost always a no-brainer.

 

This makes it much easier to set your screen's brightness to a comfortable level at each time of the day, and to save energy.

(For Windows, see the very bottom of this post.)

On Linux, if you currently have no keyboard shortcuts for that available, a good way to create them is via ddcutil. Once you have ddcutil installed, have your displays' properties printed in the command line by typing ddcutil detect.

This should show you a list of parameters for each of the displays you have connected. For a display of your choice, try these commands:

ddcutil -n <Serial number> setvcp 10 - 5 # reduces brightness by 5 %
ddcutil -n <Serial number> setvcp 10 + 5 # increases brightness by 5 %

ddcutil -n <Serial number> setvcp 12 - 10 # reduces contrast by 10 %
ddcutil -n <Serial number> setvcp 12 + 10 # increases contrast by 10 %

ddcutil -n <Serial number> setvcp 10 0 # sets brightness to minimum
ddcutil -n <Serial number> setvcp 10 100 # sets brightness to maximum

If these commands all work, you can create in your desktop environment's settings (e.g. KDE) custom keyboard shortcuts that execute these commands. Personally, with my two displays and with dedicated "Brightness up" and "Brightness down" keys (macros) on my keyboard, I am using combinations with the modifiers Alt to address the secondary instead of the primary display, Shift, to adjust contrast instead of brightness, and Control to set an absolute value (0% or 100%) instead of going by increments.


Further notes:

Instead of addressing your displays via their serial number, you can also address your display via most other parameters shown in ddcutil detect by using another option than -n, e.g. via bus number or manufacturer name, but I've found that bus number is not persistent over the years, and manufacturer name ("Mfg id") may contain spaces which may lead to problems.

A full list of all other possible vcp commands (the numbers after setvcp) can be obtained through ddcutil vcpinfo.

If you're using a laptop, brightness adjustments for its internal screen are of course almost always a no-brainer.


On Windows 10 and perhaps 11 as well, you can apparently do the following:

Step 1: Press the Win + A to open the Action Center.

Step 2: Press Shift + Tab to select the brightness slider.

Step 3: Use the left and right arrow keys to adjust the screen brightness.

 

Kennt ihr gute und ausreichend aktuelle Artikel darüber, welche Bruchlinien und Zwistigkeiten es innerhalb der AfD gibt? Ich glaube, ein besseres Verständnis derselben könnte uns sehr dabei helfen, gegen die AfD und sonstige Faschisten insgesamt vorzugehen.

view more: next ›