This morning, Israel closed all crossings with the Gaza Strip and prevented the entry of food, supplies and aid. On the other hand, some merchants raised the prices of food commodities, and some of them hid the goods to monopolize their prices later.
These traitors are no different from Israel, which is killing and starving us.
While CPU frequency scaling and thermal throttling scripts certainly exist, this particular approach is uniquely elegant: - It generalizes across any number of frequencies without hardcoding values - Uses a single temperature target (75°C) to create proportional bands - Relies on the sysfs interface in a minimal, dependency-light way (just File::Slurp and POSIX)
It’s a neat example of "just enough code" to solve the problem effectively. Maybe it’s a hidden gem worth sharing with the @Raspberry_Pi community - I bet others could benefit from its adaptability!
use File::Slurp; use POSIX;
use strict; use warnings;
File::Slurp::write_file('/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor', 'schedutil'); my $available_frequencies = File::Slurp::read_file('/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies', { chomp => 1 }); $available_frequencies = [ split(/\s+/, $available_frequencies) ]; while (1) { my $temp = File::Slurp::read_file('/sys/class/thermal/thermal_zone0/temp', { chomp => 1, err_mode => 'quiet' }); my $freq = $available_frequencies->[0]; for (my $i = 0; $i < scalar(@{$available_frequencies}); $i++) { $freq = $available_frequencies->[$i] if $temp < (75 - $i) * 1000; } print sprintf("%s %s temp=%.1f°C max_freq=%iMHz\n", $0, POSIX::strftime('%Y-%m-%dT%H:%M:%S', gmtime), $temp/1000, $freq/1000); File::Slurp::write_file('/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq', $freq); sleep 6; }
A lesson that becomes clearer every day as events develop, and I must repeat it tirelessly:
Our strength, Arabs, lies in our unity and nothing else.
And we must be able to defend ourselves alone.
I wish my people knew… https://x.com/ElBaradei/status/1895598780520751132
It’s like systemd’s a cocktail of every spider-drug web rolled into one glorious mess. Picture this: the devs started with a caffeine binge, frantically spinning a chaotic tangle of services. Then they hit the marijuana, half-assing the “parallel boot” promise with a sluggish, sprawling dropout. A dash of LSD kicked in for the “modern” buzzword overload. And maybe some Benzedrine to top it off, pumping out oversized, sloppy features like systemd-networkd that nobody asked for.
It’s the only explanation that tracks - different drugs, different days, all mashed into a single Franken-system.
The world was more outraged about the fake story about 40 beheaded Israeli babies than about 700 Palestinian babies murdered by Israel. https://x.com/R34lB0rg/status/1893440507327431044/photo/1
Today is my birthday. I want to celebrate by publishing my cosmology paper on arXiv. I need an Endorsement for http://astro-ph.CO. #Followerpower #Science
https://farid.ps/articles/cosmology_radiation_driven_inflation/en https://x.com/R34lB0rg/status/1893368583767441652/photo/1
A police officer stops Heisenberg and asks, 'Do you know where you are and how fast you’ve been going?' Heisenberg replies, 'I can either tell you where I am or how fast I’ve been going, but not both at the same time!
A cop stops a physicist speeding. He asks, "Do you know how fast you’ve been going?" The physicist answers, "Well, officer, our galaxy is moving with a velocity of about 600 km/s relative to the Local Group, our solar system is moving with a velocity of roughly 828 km/s around the galaxy, the Earth is moving with a velocity of 30 km/s around the Sun, and we are moving around the Earth with a velocity of about 465 m/s.
The post proposes eight specific tests to confirm or falsify the model, each with expected observational signatures if correct. These tests address current limitations in precision and scale, as of February 21, 2025:
CMB Anisotropies:
Redshift-Dependent Radiation Density:
Gravitational Wave Background (GWB):
Hubble Tension and Late-Time Acceleration:
Horizon-Scale Structure and Galaxy Distribution:
Spectral Line Shifts Beyond Redshift:
Thermodynamic Signatures at Cosmic Horizons:
Primordial Nucleosynthesis (BBN) and Light Element Abundances:
Theoretical Challenges:
Observational Challenges:
Comparison to Lambda-CDM:
The model’s theoretical foundation (radiation pressure, local c, redshift energy) is innovative but speculative, requiring significant mathematical and physical development to address:
It builds on established concepts (Schwarzschild horizons, Friedmann equations, CMB observations) but extends them in untested ways, making it a high-risk, high-reward hypothesis.
The target post presents a bold, speculative cosmological model challenging Lambda-CDM by proposing radiation-pressure-driven inflation with local causal horizons and redshift energy redistribution. It offers a novel perspective on inflation’s origins, preserves c’s invariance locally, and outlines eight testable predictions. However, current observations align with Lambda-CDM, and the model’s feasibility hinges on future experiments with enhanced precision and scale.
As of February 21, 2025, the model is intriguing but unproven, requiring rigorous theoretical refinement and observational validation. Its development on X, aided by AI, exemplifies the evolving intersection of social media, technology, and science, offering a fascinating case study for both cosmology and digital scholarship.