#degradation — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #degradation, aggregated by home.social.
-
#degradation : the process of being humiliated or debased
- French: dégradation
- German: der Abbau
- Italian: degradazione
- Portuguese: degradação
- Spanish: degradación
------------
Try our new word guessing game @ https://24hippos.com
-
The Industry Says Physics + AI Fixes Real-World Battery Degradation.
I Tried to Verify That on a Public Dataset.
James Sanders • Data Scientist & ML Engineer • jamesaksanders.com
The pitch for battery digital twins right now is consistent across the industry: combine physics models with AI and real telemetry, and you get predictions that are both mathematically valid and physically possible. That’s a near-direct quote from a March 2026 Exponent piece on EV battery digital twins, by Dustin Burns et al. It’s not just a consulting framing, either — Fluence’s own Life Model, running across their BESS fleet today, is described the same way: a “cell-level degradation engine calibrated with lab and fleet data” that predicts capacity fade and informs project sizing.
I wanted to test that premise directly on a public dataset rather than take it on faith. If you work in grid-scale battery storage, you already know that state-of-health (SOH) modeling lives or dies on one assumption underneath that pitch: that your “hard cases” — the cells actually experiencing the operating stress you’re trying to predict — are correctly identified in the first place. I recently learned, the hard way, how easy it is to get that assumption wrong without ever noticing.
The specific hypothesis: that adding a physics-based temperature term (an Arrhenius-style acceleration factor, the same mechanism used in several recent published SOH frameworks) would help a neural network handle battery cells that experience real temperature swings — the “drift” cells — better than a plain LSTM could on its own. This is a reasonable, well-precedented thing to expect, and it’s the same logic behind the lab-plus-field calibration pitch above. It’s also, in my case, not what happened, and the reason why is more interesting than the result itself.
The manifest was wrong before the benchmark even started.
My initial data pull flagged 16 cells in the NASA PCoE battery dataset as “drift” cells — cells whose operating temperature changed partway through their test life. When I went back to verify that manifest against the raw files before publishing anything, the number dropped to 7.
The bug was mechanical and, once found, completely unambiguous: the labeling logic checked for more than one distinct ambient_temperature value anywhere in a cell’s full cycle record — charge, discharge, and impedance spectroscopy cycles alike. NASA’s testbed logs its periodic EIS impedance spot-checks at a fixed 24°C reference reading, regardless of what temperature the aging chamber is actually holding for the charge/discharge cycles around them. So a cell held at a genuine, constant 4°C for every single discharge cycle of its life — the only cycles that actually define its SOH trajectory — would still show {4°C, 24°C} in its raw metadata, purely because of an instrumentation artifact from an unrelated measurement type. Filter to discharge cycles only, and 13 of those 16 “drift” cells instantly collapse to a single, unchanging temperature.
Why a constant-4°C cell got flagged as “drift” — illustrative schematic based on the confirmed labeling logic
Re-verifying the raw NASA PCoE files cut the confirmed drift-cell count from 16 to 7
If you’re building any kind of automated condition-flagging or anomaly-labeling pipeline on multi-modal telemetr — and if you work in AMI, DER, or grid-storage analytics, you almost certainly are — this is worth sitting with. The failure mode here wasn’t a bad model. It was a labeling script that technically read the right field, from the right dataset, and still produced a systematically wrong answer, because it didn’t account for which kind of measurement event it was reading that field from.
The benchmark itself needed a second correction, too.
Once I had the corrected 7-cell drift set, the headline result looked clean: the physics-augmented model was 3.3% worse (RMSE) than the plain LSTM on genuine drift cells, and 16.9% better on fixed-temperature control cells — exactly the inverse of what the physics term was supposed to buy you. That’s a publishable, interesting negative result on its own.
But a pooled RMSE delta across 7–9 cells is a thinner foundation than it looks. When I broke it down per cell, only 4 of 7 drift cells individually agreed with the aggregate direction. I also ran a paired significance test at the cycle level, which is a common approach in this literature — but cycles within the same cell aren’t independent observations, since they share that cell’s degradation trajectory. Treating them as independent inflates the effective sample size and can manufacture an artificially confident result. Sure enough, the control group’s cycle-level test came back extremely significant (p < 0.00001) — exactly the kind of number that pattern is known to produce. The test that actually respects the data’s structure is a bootstrap resampled at the cell level, since the cell, not the cycle, is the real independent unit. That test told a very different story: both groups’ 95% confidence intervals straddled zero. Neither the drift-side regression nor the control-side improvement is distinguishable from sampling noise, once the check is run at the correct level.
Per-cell RMSE: neither the drift group nor the control group tells a clean, unanimous story
Why this matters beyond one physics term.
Most published SOH benchmarks on this dataset — and I’d guess a fair number of internal grid-storage model evaluations — compare pooled error metrics across a small number of cells (often just 3–4) without checking whether that pooled number would survive being resampled, or whether it’s being carried by one or two atypical units. Seven to nine cells is already more than the field’s typical practice, and it still wasn’t enough for either half of my original comparison to hold up cleanly.
If your team is evaluating SOH, load-forecasting, or anomaly-detection models against a small number of “representative” assets — a handful of feeders, a handful of battery packs, a handful of substations — the same question applies: would your headline number survive a cell-level bootstrap, or is it one atypical asset doing most of the work?
I’m curious whether others in grid-storage analytics have run into a similar gap between a pooled benchmark number and what actually holds up under a per-unit breakdown — happy to compare notes.
References
Burns, D. & Mendias, M. “Turn EV Battery Data Into Reliable Digital Twins.” Exponent, March 31, 2026.
Winter, TJ & Shi, G. “Beyond 20 Years: Maximizing Battery Storage Lifespan and Value.” Fluence Energy Blog.
NASA Prognostics Center of Excellence (PCoE). Li-Ion Battery Aging Dataset. NASA Ames Research Center.
CALCE Battery Research Group, University of Maryland. Battery aging and cycling datasets (CX2, CS2 cell series).
LSTM–PINN framework for physically consistent battery state-of-health prediction. Scientific Reports, 2026.
Physics-Informed Neural Networks for Battery Degradation Prediction Under Random Walk Operations. Quality and Reliability Engineering International (Wiley), 2026.
#AI #battery #degradation #digitalTwin #EV #ML #stateOfHealth -
The Industry Says Physics + AI Fixes Real-World Battery Degradation.
I Tried to Verify That on a Public Dataset.
James Sanders • Data Scientist & ML Engineer • jamesaksanders.com
The pitch for battery digital twins right now is consistent across the industry: combine physics models with AI and real telemetry, and you get predictions that are both mathematically valid and physically possible. That’s a near-direct quote from a March 2026 Exponent piece on EV battery digital twins, by Dustin Burns et al. It’s not just a consulting framing, either — Fluence’s own Life Model, running across their BESS fleet today, is described the same way: a “cell-level degradation engine calibrated with lab and fleet data” that predicts capacity fade and informs project sizing.
I wanted to test that premise directly on a public dataset rather than take it on faith. If you work in grid-scale battery storage, you already know that state-of-health (SOH) modeling lives or dies on one assumption underneath that pitch: that your “hard cases” — the cells actually experiencing the operating stress you’re trying to predict — are correctly identified in the first place. I recently learned, the hard way, how easy it is to get that assumption wrong without ever noticing.
The specific hypothesis: that adding a physics-based temperature term (an Arrhenius-style acceleration factor, the same mechanism used in several recent published SOH frameworks) would help a neural network handle battery cells that experience real temperature swings — the “drift” cells — better than a plain LSTM could on its own. This is a reasonable, well-precedented thing to expect, and it’s the same logic behind the lab-plus-field calibration pitch above. It’s also, in my case, not what happened, and the reason why is more interesting than the result itself.
The manifest was wrong before the benchmark even started.
My initial data pull flagged 16 cells in the NASA PCoE battery dataset as “drift” cells — cells whose operating temperature changed partway through their test life. When I went back to verify that manifest against the raw files before publishing anything, the number dropped to 7.
The bug was mechanical and, once found, completely unambiguous: the labeling logic checked for more than one distinct ambient_temperature value anywhere in a cell’s full cycle record — charge, discharge, and impedance spectroscopy cycles alike. NASA’s testbed logs its periodic EIS impedance spot-checks at a fixed 24°C reference reading, regardless of what temperature the aging chamber is actually holding for the charge/discharge cycles around them. So a cell held at a genuine, constant 4°C for every single discharge cycle of its life — the only cycles that actually define its SOH trajectory — would still show {4°C, 24°C} in its raw metadata, purely because of an instrumentation artifact from an unrelated measurement type. Filter to discharge cycles only, and 13 of those 16 “drift” cells instantly collapse to a single, unchanging temperature.
Why a constant-4°C cell got flagged as “drift” — illustrative schematic based on the confirmed labeling logic
Re-verifying the raw NASA PCoE files cut the confirmed drift-cell count from 16 to 7
If you’re building any kind of automated condition-flagging or anomaly-labeling pipeline on multi-modal telemetr — and if you work in AMI, DER, or grid-storage analytics, you almost certainly are — this is worth sitting with. The failure mode here wasn’t a bad model. It was a labeling script that technically read the right field, from the right dataset, and still produced a systematically wrong answer, because it didn’t account for which kind of measurement event it was reading that field from.
The benchmark itself needed a second correction, too.
Once I had the corrected 7-cell drift set, the headline result looked clean: the physics-augmented model was 3.3% worse (RMSE) than the plain LSTM on genuine drift cells, and 16.9% better on fixed-temperature control cells — exactly the inverse of what the physics term was supposed to buy you. That’s a publishable, interesting negative result on its own.
But a pooled RMSE delta across 7–9 cells is a thinner foundation than it looks. When I broke it down per cell, only 4 of 7 drift cells individually agreed with the aggregate direction. I also ran a paired significance test at the cycle level, which is a common approach in this literature — but cycles within the same cell aren’t independent observations, since they share that cell’s degradation trajectory. Treating them as independent inflates the effective sample size and can manufacture an artificially confident result. Sure enough, the control group’s cycle-level test came back extremely significant (p < 0.00001) — exactly the kind of number that pattern is known to produce. The test that actually respects the data’s structure is a bootstrap resampled at the cell level, since the cell, not the cycle, is the real independent unit. That test told a very different story: both groups’ 95% confidence intervals straddled zero. Neither the drift-side regression nor the control-side improvement is distinguishable from sampling noise, once the check is run at the correct level.
Per-cell RMSE: neither the drift group nor the control group tells a clean, unanimous story
Why this matters beyond one physics term.
Most published SOH benchmarks on this dataset — and I’d guess a fair number of internal grid-storage model evaluations — compare pooled error metrics across a small number of cells (often just 3–4) without checking whether that pooled number would survive being resampled, or whether it’s being carried by one or two atypical units. Seven to nine cells is already more than the field’s typical practice, and it still wasn’t enough for either half of my original comparison to hold up cleanly.
If your team is evaluating SOH, load-forecasting, or anomaly-detection models against a small number of “representative” assets — a handful of feeders, a handful of battery packs, a handful of substations — the same question applies: would your headline number survive a cell-level bootstrap, or is it one atypical asset doing most of the work?
I’m curious whether others in grid-storage analytics have run into a similar gap between a pooled benchmark number and what actually holds up under a per-unit breakdown — happy to compare notes.
References
Burns, D. & Mendias, M. “Turn EV Battery Data Into Reliable Digital Twins.” Exponent, March 31, 2026.
Winter, TJ & Shi, G. “Beyond 20 Years: Maximizing Battery Storage Lifespan and Value.” Fluence Energy Blog.
NASA Prognostics Center of Excellence (PCoE). Li-Ion Battery Aging Dataset. NASA Ames Research Center.
CALCE Battery Research Group, University of Maryland. Battery aging and cycling datasets (CX2, CS2 cell series).
LSTM–PINN framework for physically consistent battery state-of-health prediction. Scientific Reports, 2026.
Physics-Informed Neural Networks for Battery Degradation Prediction Under Random Walk Operations. Quality and Reliability Engineering International (Wiley), 2026.
#AI #battery #degradation #digitalTwin #EV #ML #stateOfHealth -
Comment le miel se protège?
Le miel résiste à la dégradation grâce à sa faible teneur en eau, à son acidité et à la présence d’une faible dose de peroxyde d’hydrogène. Ces propriétés créent un environnement inhospitalier pour les microbes.
Comment le miel se protège naturellement des bactéries? | Découverte
https://www.youtube.com/watch?v=dBQ27nmwVq8&list=PLZr1y64TPtN8rC4wbxHVgSeIKMaFflPwU&index=9
#abeilleMielProtéger #acidité #alimentation #attention #émissionDécouverte #être #bactérie #biologie #CharlesTisseyre #créer #dégradation #eau #environnement #faibleDose #inhospitalier #interdépendance #médecine #médecineAutochtone #microbes #nature #peroxydeDHydrogène #présence #propriétés #résister #résisteràLaDégradation #recherche #savoirAncestral #science #superpouvoirs #teneur -
Comment le miel se protège?
Le miel résiste à la dégradation grâce à sa faible teneur en eau, à son acidité et à la présence d’une faible dose de peroxyde d’hydrogène. Ces propriétés créent un environnement inhospitalier pour les microbes.
Comment le miel se protège naturellement des bactéries? | Découverte
https://www.youtube.com/watch?v=dBQ27nmwVq8&list=PLZr1y64TPtN8rC4wbxHVgSeIKMaFflPwU&index=9
#abeilleMielProtéger #acidité #alimentation #attention #émissionDécouverte #être #bactérie #biologie #CharlesTisseyre #créer #dégradation #eau #environnement #faibleDose #inhospitalier #interdépendance #médecine #médecineAutochtone #microbes #nature #peroxydeDHydrogène #présence #propriétés #résister #résisteràLaDégradation #recherche #savoirAncestral #science #superpouvoirs #teneur -
Refined Modeling of Arctic Circumpolar Building Stock Increases Estimated Mid-Century Permafrost Degradation Damages
--
https://doi.org/10.1029/2026EF008578 <-- shared paper
--
https://www.thearcticinstitute.org/climate-change-geopolitics-monitoring-thawing-permafrost/ | https://www.thearcticinstitute.org/dwindling-arctic-sea-ice-impacts-permafrost-health/ <-- shared technical articles
--
https://www.theguardian.com/cities/2016/oct/14/thawing-permafrost-destroying-arctic-cities-norilsk-russia <-- shared media article
--
https://news.grida.no/new-map-shows-extent-of-permafrost-in-northern-hemisphere <-- shared technical article
--
H/T @elias Manos
“Why the increase?
Our understanding of climate risk is only as good as our understanding of our exposure to hazards. The better we can account for what is at risk, the better we can measure risk in a changing world.
In this new study [link above], [they] investigate[d] how damage to the building stock across the Arctic, a key impact of permafrost degradation, is underestimated because of underdeveloped exposure information. With National Science Foundation (NSF) supercomputers and 400 TB of Vantor satellite imagery, [they] detected building footprints across the Arctic and classified their use types using deep learning models. Then, using Polar Geospatial Center's ArcticDEM digital surface model, [they] estimated the total floor space of each residential building. This move from 2D to 3D representation of the building stock was the largest contributor to increased building damage.
Properly estimating this consequence is necessary for understanding the near future of the Arctic economy. Knowing the magnitude of damages is critical for sustaining the communities and livelihoods of more than 5 million people that call the Arctic home. There are also much broader implications. With the Arctic continuing to emerge as a strategic centerpiece in global affairs and the global economy, accurately quantifying the physical shocks to its built environment will allow researchers to more effectively represent the Arctic in global climate economic models. More precise international policymaking will also be enabled by these improvements.
Ultimately, this research highlights a similar challenge in completely different regions of the world (e.g., Southeast Asia, Sub-Saharan Africa) where exposure is constantly evolving alongside rapid population growth and urbanization. Building stock information can quickly become outdated as these changes occur; satellite remote sensing and AI are key players in keeping up with these changes and supporting data-driven disaster risk management…”
#arctic #circumpolar #permafrost #model #modeling #spatialanalysis #spatiotemporal #GIS #spatial #mapping #melting #degradation #damage #cost #economics #risk #hazard #climaterisk #climatechange #remotesensing #HPC #earthobservation #ArcticDEM #buildingfootprint #LLM #AI #machinelearning #engineering #economy #buildingstock #community #policy #planning #geopolitics #risk #management @UConn Research -
Refined Modeling of Arctic Circumpolar Building Stock Increases Estimated Mid-Century Permafrost Degradation Damages
--
https://doi.org/10.1029/2026EF008578 <-- shared paper
--
https://www.thearcticinstitute.org/climate-change-geopolitics-monitoring-thawing-permafrost/ | https://www.thearcticinstitute.org/dwindling-arctic-sea-ice-impacts-permafrost-health/ <-- shared technical articles
--
https://www.theguardian.com/cities/2016/oct/14/thawing-permafrost-destroying-arctic-cities-norilsk-russia <-- shared media article
--
https://news.grida.no/new-map-shows-extent-of-permafrost-in-northern-hemisphere <-- shared technical article
--
H/T @elias Manos
“Why the increase?
Our understanding of climate risk is only as good as our understanding of our exposure to hazards. The better we can account for what is at risk, the better we can measure risk in a changing world.
In this new study [link above], [they] investigate[d] how damage to the building stock across the Arctic, a key impact of permafrost degradation, is underestimated because of underdeveloped exposure information. With National Science Foundation (NSF) supercomputers and 400 TB of Vantor satellite imagery, [they] detected building footprints across the Arctic and classified their use types using deep learning models. Then, using Polar Geospatial Center's ArcticDEM digital surface model, [they] estimated the total floor space of each residential building. This move from 2D to 3D representation of the building stock was the largest contributor to increased building damage.
Properly estimating this consequence is necessary for understanding the near future of the Arctic economy. Knowing the magnitude of damages is critical for sustaining the communities and livelihoods of more than 5 million people that call the Arctic home. There are also much broader implications. With the Arctic continuing to emerge as a strategic centerpiece in global affairs and the global economy, accurately quantifying the physical shocks to its built environment will allow researchers to more effectively represent the Arctic in global climate economic models. More precise international policymaking will also be enabled by these improvements.
Ultimately, this research highlights a similar challenge in completely different regions of the world (e.g., Southeast Asia, Sub-Saharan Africa) where exposure is constantly evolving alongside rapid population growth and urbanization. Building stock information can quickly become outdated as these changes occur; satellite remote sensing and AI are key players in keeping up with these changes and supporting data-driven disaster risk management…”
#arctic #circumpolar #permafrost #model #modeling #spatialanalysis #spatiotemporal #GIS #spatial #mapping #melting #degradation #damage #cost #economics #risk #hazard #climaterisk #climatechange #remotesensing #HPC #earthobservation #ArcticDEM #buildingfootprint #LLM #AI #machinelearning #engineering #economy #buildingstock #community #policy #planning #geopolitics #risk #management @UConn Research -
[she/her, both] (cum inflation, degradation, mind break)
Jay (c) https://www.furaffinity.net/user/jjayvian
#3danimation #bovine #bird #avian #gynomorph #degradation #cuminflation #cuminflatedbelly #cumfountain #cumfromass #mindbreak
-
A quotation from Andrew Oliver
Politics is the most hazardous of all professions. There is not another in which a man can hope to do so much good to his fellow creatures; neither is there any in which by a mere loss of nerve he may do such widespread harm. Nor is there another in which he may so easily lose his own soul; nor is there another in which a positive and strict veracity is so difficult. But danger is the inseparable companion of honor. With all the temptations and degradations that beset it, politics is still the noblest career any man can choose.
Andrew Oliver (1706-1774) American Colonial merchant, politician, government official
Speech (1774?)More about this quote: wist.info/oliver-andrew/84550/
#quote #quotes #quotation #qotd #andrewoliver #career #corruption #degradation #honor #politician #politics #potential #risk #statesman #temptation
-
A quotation from Andrew Oliver
Politics is the most hazardous of all professions. There is not another in which a man can hope to do so much good to his fellow creatures; neither is there any in which by a mere loss of nerve he may do such widespread harm. Nor is there another in which he may so easily lose his own soul; nor is there another in which a positive and strict veracity is so difficult. But danger is the inseparable companion of honor. With all the temptations and degradations that beset it, politics is still the noblest career any man can choose.
Andrew Oliver (1706-1774) American Colonial merchant, politician, government official
Speech (1774?)More about this quote: wist.info/oliver-andrew/84550/
#quote #quotes #quotation #qotd #andrewoliver #career #corruption #degradation #honor #politician #politics #potential #risk #statesman #temptation
-
It is #WorldDayToCombatDesertificationAndDrought!
Globally, 15-36% of #soils are degraded (UNCCD, FAO, IPCC and others).
The #trend is still rising📈 and not in line with the #UN goal to “halt and reverse #LandDegradation” and, by 2030, to “achieve a land degradation-neutral world” (#SDG15).⛔
#GlobalGoals #SDGs #2030Agenda #DesertificationAndDroughtDay #desertification #drought #degradation #soil
-
It is #WorldDayToCombatDesertificationAndDrought!
Globally, 15-36% of #soils are degraded (UNCCD, FAO, IPCC and others).
The #trend is still rising📈 and not in line with the #UN goal to “halt and reverse #LandDegradation” and, by 2030, to “achieve a land degradation-neutral world” (#SDG15).⛔
#GlobalGoals #SDGs #2030Agenda #DesertificationAndDroughtDay #desertification #drought #degradation #soil
-
Good morning #mastodon from Byerima communities.The down has come to us all as being a chance to create more impacts in the vulnerable communities especially in promoting #foodsecurity to end #hunger and environmental conservation to end #degradation which may lead to extinction of #physicalfeatures.
At #greenyouthmovement ,we train local communities how to use even a small available space for food production.
#gardening #photography #linux #fediverse #nutrition #diet #economics #plants #nature -
Good morning #mastodon from Byerima communities.The down has come to us all as being a chance to create more impacts in the vulnerable communities especially in promoting #foodsecurity to end #hunger and environmental conservation to end #degradation which may lead to extinction of #physicalfeatures.
At #greenyouthmovement ,we train local communities how to use even a small available space for food production.
#gardening #photography #linux #fediverse #nutrition #diet #economics #plants #nature -
POV before you pin me down to spank me because I'm such a tease🤭 #bigbooty #girlbutts #cutebooty #ass #booty #perfectass #cutebooty #kink #kinksky #BDSM #BDSMsky #fetish #Submission #Domination #Humiliation #Degradation #Taboo #gnd #punish #goonsky #AltBabe #Alt #AltGirls #HorrorSlut #egirl
-
Australia’s environmental degradation
"One must ask why the federal government is so comfortable continuing to ignore the wishes of most Australians, and continuing to condemn our life-sustaining environment and wildlife to profound decline and destruction?"
"Experts in biodiversity and environmental law have found major flaws in the draft national standard for matters of national environmental significance.’..Market-driven nature repair projects will not help address this deficit."
"It would be a betrayal of Australia’s most important public good to settle for the mere appearance of action – we deserve the promised serious investment in our collective future." >>
https://www.theguardian.com/commentisfree/2026/may/18/australias-green-wall-street-is-failing-to-launch-threatened-species-deserve-better-than-the-nature-repair-market
#biodiversity #ecosystems #wildlife #EPBCAct #FastTack #degradation #NatureMarkets #regulation #EnvironmentalNeglect #extractivism -
Australia’s environmental degradation
"One must ask why the federal government is so comfortable continuing to ignore the wishes of most Australians, and continuing to condemn our life-sustaining environment and wildlife to profound decline and destruction?"
"Experts in biodiversity and environmental law have found major flaws in the draft national standard for matters of national environmental significance.’..Market-driven nature repair projects will not help address this deficit."
"It would be a betrayal of Australia’s most important public good to settle for the mere appearance of action – we deserve the promised serious investment in our collective future." >>
https://www.theguardian.com/commentisfree/2026/may/18/australias-green-wall-street-is-failing-to-launch-threatened-species-deserve-better-than-the-nature-repair-market
#biodiversity #ecosystems #wildlife #EPBCAct #FastTack #degradation #NatureMarkets #regulation #EnvironmentalNeglect #extractivism -
Lick another guy's cum off my tits like a good beta 😵💫 FREE ENTRY⬇️ onlyfans.com/scoobsb... #femdom #findom #domme #goddess #paypig #FetishSky #mistress #humiliation #bdsm #finsub #humanatm #dominant #kinky #mommydomme #beta #Degradation #boobs #realnsfw #realgirls #gonewild #goonfuel
-
Eco‑anxiety and mental health
* What kids told us about eco‑anxiety
"This is our home.
If we destroy it, and we can’t build it up,
then that’s a part of the Earth that’s destroyed,
and we won’t be able to get it back."
Matthew, age ten"Eco-anxiety is a rational response to a real threat." >>
https://theconversation.com/im-mad-at-the-people-who-could-have-solved-the-problem-what-kids-told-us-about-eco-anxiety-278999* "Mental health seems to be having a bigger toll on people's ability to work...More than 8 million people rely on income support, driven by a growing number of mental health claims."
"With around 2 million more people now accessing payments than a decade ago, the surge is being driven by Australians whose physical and mental health has deteriorated to the point they can no longer work." >>
https://www.abc.net.au/news/2026-05-06/income-support-grows-mental-health-work/106626692
#degradation #ecosystems #pollution #climate #FossilFuels #deforestation #EcoAnxiety #MentalHealth #distress #children #work #IntergenerationalJustice #parenting -
Eco‑anxiety and mental health
* What kids told us about eco‑anxiety
"This is our home.
If we destroy it, and we can’t build it up,
then that’s a part of the Earth that’s destroyed,
and we won’t be able to get it back."
Matthew, age ten"Eco-anxiety is a rational response to a real threat." >>
https://theconversation.com/im-mad-at-the-people-who-could-have-solved-the-problem-what-kids-told-us-about-eco-anxiety-278999* "Mental health seems to be having a bigger toll on people's ability to work...More than 8 million people rely on income support, driven by a growing number of mental health claims."
"With around 2 million more people now accessing payments than a decade ago, the surge is being driven by Australians whose physical and mental health has deteriorated to the point they can no longer work." >>
https://www.abc.net.au/news/2026-05-06/income-support-grows-mental-health-work/106626692
#degradation #ecosystems #pollution #climate #FossilFuels #deforestation #EcoAnxiety #MentalHealth #distress #children #work #IntergenerationalJustice #parenting -
#Monatsstatistik #Photovoltaik: #April #2026 war top!
1.415 kWh #Freiheitsstrom geerntet - zweitbestes Ergebnis in 10 Jahren. Fuck you, #Degradation!
Und just Gestern hat es mit 66,630 kWh auf den 7. Platz in die Allzeit-Top10 geschafft.
#Münsterland #Geothermie #Wärmepumpe #Monatsstatistik #SpaßMitSQL #SpaßMitPV #PVgegenPutin #Solarstrom
-
The Rash, the Lazy, Lover, none’s so wild,
But may be tame, and may be wisely mild,
If they consult true Vertue’s Rules with care,
And lend to good advice a patient ear.
[Invidus, iracundus, iners, vinosus, amator,
nemo adeo ferus est, ut non mitescere possit,
si modo culturae patientem commodet aurem.]Horace (65–8 BC) Roman poet, satirist, soldier, politician [Quintus Horatius Flaccus]
Epistles [Epistularum, Letters], Book 1, ep. 1 “To Maecenas,” l. 38ff (1.1.38-40) (20 BC) [tr. Creech (1684)]More about (and translations of) this quote: wist.info/horace/78567/
#quote #quotes #quotation #qotd #horace #advice #anger #brutality #character #coarseness #culture #degradation #drunkenness #envy #faults #gluttony #lust #moralcharacter #norms #reform #rehabilitation #selfcontrol #selfimprovement #sloth #society #temperament #vice #virtue #wisdom #wrath
-
Stop destabilizing the Earth system! (Pt. 2)
Halting and reversing biodiversity loss toward restoring Earth system stability
... "Our findings emphasize that preventing the loss of intact biomes, ecosystems, and species assemblages is the most critical strategy while acknowledging the urgency of extinction prevention and the need for restoration. Additionally, we highlight the importance of incorporating Indigenous and local knowledge systems alongside scientific methods to achieve effective and equitable conservation outcomes. Finally, we discuss the need for economic transformation and the private sector’s role in fostering an NP future."
"Incorporating Indigenous or traditional knowledge and practices, which are rooted in responsibility to the living world and inherently include awareness of biotic and abiotic processes, is essential to achieving the NP goal."
"The NP shift requires transforming our economic system to work within the Earth system and equitably support human development.
Human exploitation of nature driven by prevailing economic systems of production and consumption is causing a rapid and catastrophic decline in biodiversity (1) while simultaneously disrupting the climate system (2). These actions are actively destabilizing the Earth system upon which human health and development depend (3), and the trajectory of environmental degradation is accelerating, placing life as we know it at grave risk" >>Locke, H., Hauer, R., et al. (2026). Nature Positive: halting and reversing biodiversity loss toward restoring Earth system stability. Frontiers in Science, 4, 1609998. doi.or >>
https://www.frontiersin.org/journals/science/articles/10.3389/fsci.2026.1609998/full#biodiversity #ClimateCrisis #NaturePositiv #ecosystems #degradation #risks #transformation #EconomicSystems #indigenousKnowledge #indigenousPeoples #3Cs #governance #GBF #extinction
-
Stop destabilizing the Earth system! (Pt. 2)
Halting and reversing biodiversity loss toward restoring Earth system stability
... "Our findings emphasize that preventing the loss of intact biomes, ecosystems, and species assemblages is the most critical strategy while acknowledging the urgency of extinction prevention and the need for restoration. Additionally, we highlight the importance of incorporating Indigenous and local knowledge systems alongside scientific methods to achieve effective and equitable conservation outcomes. Finally, we discuss the need for economic transformation and the private sector’s role in fostering an NP future."
"Incorporating Indigenous or traditional knowledge and practices, which are rooted in responsibility to the living world and inherently include awareness of biotic and abiotic processes, is essential to achieving the NP goal."
"The NP shift requires transforming our economic system to work within the Earth system and equitably support human development.
Human exploitation of nature driven by prevailing economic systems of production and consumption is causing a rapid and catastrophic decline in biodiversity (1) while simultaneously disrupting the climate system (2). These actions are actively destabilizing the Earth system upon which human health and development depend (3), and the trajectory of environmental degradation is accelerating, placing life as we know it at grave risk" >>Locke, H., Hauer, R., et al. (2026). Nature Positive: halting and reversing biodiversity loss toward restoring Earth system stability. Frontiers in Science, 4, 1609998. doi.or >>
https://www.frontiersin.org/journals/science/articles/10.3389/fsci.2026.1609998/full#biodiversity #ClimateCrisis #NaturePositiv #ecosystems #degradation #risks #transformation #EconomicSystems #indigenousKnowledge #indigenousPeoples #3Cs #governance #GBF #extinction
-
Stop destabilizing the Earth system! (Pt 1)
Halting and reversing biodiversity loss toward restoring Earth system stability
"Human activities are driving a global decline in biodiversity and are interfering with the natural processes essential for human well-being. Achieving climate and development goals is impossible without keeping nature intact. In this article, we establish the urgent need for a paradigm shift toward a “Nature Positive” (NP) future, where the health and resilience of the Earth system are recognized as the fundamental basis for human prosperity. This requires that humanity acts to halt and reverse the loss of nature by 2030. The Kunming-Montreal Global Biodiversity Framework (GBF) provides a critical roadmap for this NP goal, and global policy increasingly recognizes that environmental targets can only be effective when integrated with global climate, ocean, and human development agreements. This requires a biodiversity conservation approach that accounts for both biotic and abiotic components of the Earth system. We assess the adequacy of GBF targets for stabilizing the Earth system and highlight key gaps. We employ the Three Global Conditions Framework (3Cs), which categorizes landscapes by human impact levels as a practical method for guiding appropriate NP actions, and we extend its application to the marine realm. We outline specific actions and metrics for patterns and processes across all scales needed to achieve biodiversity conservation in synergy with climate stabilization and securing freshwater systems." >>
Locke, H., Hauer, R., et al. (2026). Nature Positive: halting and reversing biodiversity loss toward restoring Earth system stability. Frontiers in Science, 4, 1609998. doi.or >>
https://www.frontiersin.org/journals/science/articles/10.3389/fsci.2026.1609998/full#biodiversity #ClimateCrisis #NaturePositiv #ecosystems #degradation #risks #transformation #EconomicSystems #IndigenousKnowledge #indigenousPeoples #3Cs #governance #GBF #nature #ParadigmShift #ClimateStabilisation
-
Stop destabilizing the Earth system! (Pt 1)
Halting and reversing biodiversity loss toward restoring Earth system stability
"Human activities are driving a global decline in biodiversity and are interfering with the natural processes essential for human well-being. Achieving climate and development goals is impossible without keeping nature intact. In this article, we establish the urgent need for a paradigm shift toward a “Nature Positive” (NP) future, where the health and resilience of the Earth system are recognized as the fundamental basis for human prosperity. This requires that humanity acts to halt and reverse the loss of nature by 2030. The Kunming-Montreal Global Biodiversity Framework (GBF) provides a critical roadmap for this NP goal, and global policy increasingly recognizes that environmental targets can only be effective when integrated with global climate, ocean, and human development agreements. This requires a biodiversity conservation approach that accounts for both biotic and abiotic components of the Earth system. We assess the adequacy of GBF targets for stabilizing the Earth system and highlight key gaps. We employ the Three Global Conditions Framework (3Cs), which categorizes landscapes by human impact levels as a practical method for guiding appropriate NP actions, and we extend its application to the marine realm. We outline specific actions and metrics for patterns and processes across all scales needed to achieve biodiversity conservation in synergy with climate stabilization and securing freshwater systems." >>
Locke, H., Hauer, R., et al. (2026). Nature Positive: halting and reversing biodiversity loss toward restoring Earth system stability. Frontiers in Science, 4, 1609998. doi.or >>
https://www.frontiersin.org/journals/science/articles/10.3389/fsci.2026.1609998/full#biodiversity #ClimateCrisis #NaturePositiv #ecosystems #degradation #risks #transformation #EconomicSystems #IndigenousKnowledge #indigenousPeoples #3Cs #governance #GBF #nature #ParadigmShift #ClimateStabilisation
-
#degradation : the act of reducing in rank, character, or reputation, or of abasing
- French: dégradation
- German: der Abbau
- Italian: degradazione
- Portuguese: degradação
- Spanish: degradación
------------
Try our new word guessing game @ https://24hippos.com
-
#degradation : the act of reducing in rank, character, or reputation, or of abasing
- French: dégradation
- German: der Abbau
- Italian: degradazione
- Portuguese: degradação
- Spanish: degradación
------------
Try our new word guessing game @ https://24hippos.com
-
Tesla: Failure of the FSD's degradation detection system [pdf]
https://static.nhtsa.gov/odi/inv/2026/INOA-EA26002-10023.pdf
#HackerNews #Tesla #FSD #Failure #Degradation #Detection #System #NHTSA #AutonomousVehicles
-
Tesla: Failure of the FSD's degradation detection system [pdf]
https://static.nhtsa.gov/odi/inv/2026/INOA-EA26002-10023.pdf
#HackerNews #Tesla #FSD #Failure #Degradation #Detection #System #NHTSA #AutonomousVehicles
-
The government's spending on harming nature
"For the first time, research published this year, identified 36 federal subsidies worth $26.3 billion annually that are potentially harmful to biodiversity. Fossil fuel subsidies alone account for $14.1 billion. It is extraordinary the Australian Government believes it can exclude fossil fuel subsidies on the basis of a technicality. Meanwhile, independent estimates place federal biodiversity conservation spending at below $1 billion annually. "
"The arithmetic is stark: the government spent more than $26 billion a year on harming nature, less than $1 billion conserving it. No government serious about halting biodiversity loss would preside over such an imbalance and say they were “on track”. >>
https://theconversation.com/australia-claims-it-is-on-track-to-save-nature-we-disagree-278081Biodiversity-harmful subsidies in Australia
https://www.tandfonline.com/doi/full/10.1080/14486563.2026.2623910
#FossilFuels #FossilFuelsSubsidies #biodiversity #harm #conservation #KMGBF #restoration #NoTake #fishing #ThreatenedSpecies #Australia #MarineLife #degradation #EPBCAct #war #climate #pollution #governance #values -
The government's spending on harming nature
"For the first time, research published this year, identified 36 federal subsidies worth $26.3 billion annually that are potentially harmful to biodiversity. Fossil fuel subsidies alone account for $14.1 billion. It is extraordinary the Australian Government believes it can exclude fossil fuel subsidies on the basis of a technicality. Meanwhile, independent estimates place federal biodiversity conservation spending at below $1 billion annually. "
"The arithmetic is stark: the government spent more than $26 billion a year on harming nature, less than $1 billion conserving it. No government serious about halting biodiversity loss would preside over such an imbalance and say they were “on track”. >>
https://theconversation.com/australia-claims-it-is-on-track-to-save-nature-we-disagree-278081Biodiversity-harmful subsidies in Australia
https://www.tandfonline.com/doi/full/10.1080/14486563.2026.2623910
#FossilFuels #FossilFuelsSubsidies #biodiversity #harm #conservation #KMGBF #restoration #NoTake #fishing #ThreatenedSpecies #Australia #MarineLife #degradation #EPBCAct #war #climate #pollution #governance #values -
Australia claims it is ‘on track’ to save nature. We disagree
"Ecosystems are being left to degrade, rare and precious species are sliding toward extinction, and billions of dollars are being used to quietly fund subsidies, including for fossil fuels, which contribute to the very destruction the government claims to be fixing."
"Australia already holds the world’s worst record for modern mammal extinctions – 38 species lost since colonisation, more than any other country. Against that grim inheritance, having no further extinctions (that we know about) is a remarkably low bar."
1. Restoration: not enough done, and the report knows it
2. Protected areas: national figures mask failures
3. Threatened species: declining, not recovering
4. Harmful fossil fuel subsidies hidden, conservation spending inflated"This new report confirms those weaknesses extend to Australia’s self-assessment, which lacks the rigour and ambition the nature crisis demands.The reforms of Australia’s nature laws, passed in late 2025, are the most significant in a generation, and we welcome them. But legislation without implementation, adequate funding or a delivery plan is not enough."
"This important report – with its hidden subsidies, inflated spending figures, missing implementation plan, and a definition of “on track” that mistakes promises for progress – is not worthy of a nation with both the means and the obligation to lead." >>
https://theconversation.com/australia-claims-it-is-on-track-to-save-nature-we-disagree-278081
#biodiversity #conservation #KMGBF #restoration #NoTake #fishing #ThreatenedSpecies #FossilFuels #FossilFuelsSubsidies #Australia #MarineLife #degradation #EPBCAct -
Australia claims it is ‘on track’ to save nature. We disagree
"Ecosystems are being left to degrade, rare and precious species are sliding toward extinction, and billions of dollars are being used to quietly fund subsidies, including for fossil fuels, which contribute to the very destruction the government claims to be fixing."
"Australia already holds the world’s worst record for modern mammal extinctions – 38 species lost since colonisation, more than any other country. Against that grim inheritance, having no further extinctions (that we know about) is a remarkably low bar."
1. Restoration: not enough done, and the report knows it
2. Protected areas: national figures mask failures
3. Threatened species: declining, not recovering
4. Harmful fossil fuel subsidies hidden, conservation spending inflated"This new report confirms those weaknesses extend to Australia’s self-assessment, which lacks the rigour and ambition the nature crisis demands.The reforms of Australia’s nature laws, passed in late 2025, are the most significant in a generation, and we welcome them. But legislation without implementation, adequate funding or a delivery plan is not enough."
"This important report – with its hidden subsidies, inflated spending figures, missing implementation plan, and a definition of “on track” that mistakes promises for progress – is not worthy of a nation with both the means and the obligation to lead." >>
https://theconversation.com/australia-claims-it-is-on-track-to-save-nature-we-disagree-278081
#biodiversity #conservation #KMGBF #restoration #NoTake #fishing #ThreatenedSpecies #FossilFuels #FossilFuelsSubsidies #Australia #MarineLife #degradation #EPBCAct -
CW: +18 Content
Facefucking and Piss Facial for a Rough Slut
It starts with her on her knees, taking it deep down her throat. The guy is aggressi...
https://pornxal.com/rough-piss-facial-facefucking-slut/
#FaceFuck #PissPlay #RoughSex #Degradation #Hardcore #Facial #BDSM
-
Watch the Enshittificator
"Digital products and services keep getting worse. In the new report Breaking Free: Pathways to a fair technological future, the Norwegian Consumer Council has delved into enshittification and how to resist it. The report shows how this phenomenon affects both consumers and society at large, but that it is possible to turn the tide." >>
https://vimeo.com/1168468796
#Enshittification #PlatformDecay #crapification #platforms #degradation #BigTech #BusinessModel #SocialMedia #services #accountability #laws #transparency #TechnologyAssessment #TA #internet -
Watch the Enshittificator
"Digital products and services keep getting worse. In the new report Breaking Free: Pathways to a fair technological future, the Norwegian Consumer Council has delved into enshittification and how to resist it. The report shows how this phenomenon affects both consumers and society at large, but that it is possible to turn the tide." >>
https://vimeo.com/1168468796
#Enshittification #PlatformDecay #crapification #platforms #degradation #BigTech #BusinessModel #SocialMedia #services #accountability #laws #transparency #TechnologyAssessment #TA #internet -
Courrier des lecteurs : une salle de la mairie de Nantes repeinte avant un meeting du RN
-
The death of iconic salmon gums in WA's Great Western Woodlands
"The Woodland is under increasing threat by burning and mining activity...The lack of in depth investigation was symptomatic of a wider disregard for the Woodland." Desert forests ... "need to be protected from essentially the hand of European man — and revert to the Ngadju elders."
"This environment's been treated like a sacrifice zone for so damn long...If we wish to maintain our global recognition as a Tier One mining jurisdiction, we need to do more than pay lip service to our environmental regulations."
>>
https://www.abc.net.au/news/2026-02-21/concerns-over-tree-deaths-great-western-woodlands/106355300
#mining #degradation #SacrificeZone #DesertForests #values #biodiversity #conservation #extractivism #EuropeanColonisation #IndigenousPeoples -
The death of iconic salmon gums in WA's Great Western Woodlands
"The Woodland is under increasing threat by burning and mining activity...The lack of in depth investigation was symptomatic of a wider disregard for the Woodland." Desert forests ... "need to be protected from essentially the hand of European man — and revert to the Ngadju elders."
"This environment's been treated like a sacrifice zone for so damn long...If we wish to maintain our global recognition as a Tier One mining jurisdiction, we need to do more than pay lip service to our environmental regulations."
>>
https://www.abc.net.au/news/2026-02-21/concerns-over-tree-deaths-great-western-woodlands/106355300
#mining #degradation #SacrificeZone #DesertForests #values #biodiversity #conservation #extractivism #EuropeanColonisation #IndigenousPeoples -
Businesses Can Either Lead Transformative Change or Risk Extinction
Businesses Can Either Lead Transformative Change or Risk Extinction All Businesses Depend on and Impact Nature
"Business-as-usual Incentives are Driving Nature’s Decline
The loss of biodiversity is among the most serious threats to business
100+ Concrete Actions for Governments, Financial Actors & Civil Society""Every business depends on biodiversity, and every business impacts biodiversity. The growth of the global economy has been at the cost of immense biodiversity loss, which now poses a critical and pervasive systemic risk to the economy, financial stability and human wellbeing. This is a central finding of a landmark new report published today by the Intergovernmental Platform on Biodiversity and Ecosystem Services (IPBES)."
“Yet the twisted reality is that it often seems more profitable to businesses to degrade biodiversity than to protect it. Business as usual may once have seemed profitable in the short term, but impacts across multiple businesses can have cumulative effects, aggregating to global impacts, which can cross ecological tipping points. The Report shows that business as usual is not inevitable – with the right policies, as well as financial and cultural shifts, what is good for nature is also what is best for profitability. To get there, the Report offers tools for choosing more effective measurements and analysis.”
"The Report provides more than 100 specific examples of concrete actions that can be taken, across each of these five components, by businesses, governments, financial actors and civil society."
>>
https://www.ipbes.net/node/97532
#Biodiversity #life #habitability #Nature #degradation #loss #extractivism #IPBES #report #greenwashing #loggingImpacts #LobbyActivities #FossilFuelSubsidies #climate #BAU #risks #transformation -
Vehicles and other combustion machines are sparking bushfires along the arterial road network
"People needed to be mindful of mechanical faults in vehicles and equipment as temperatures hit the high 30s this weekend." >>
https://www.abc.net.au/news/2026-02-07/dashcam-footage-shows-roadside-fires-flaring-up/106308474
#bushfires #cars #roads #degradation #AgriculturalLandscapes #FossilFuels #Climate #heatwaves #vehicles -
Small persistent humid forest clearings drive tropical forest biomass losses
"Tropical forests store about half of the global forest above ground carbon (AGC), yet extensive areas are affected by disturbances, such as deforestation from agricultural expansion and degradation from fires, selective logging, and edge effects...Findings highlight the disproportionate impact of small clearings on tropical carbon losses, suggesting the need to curb land-use changes and protect young and recovering forests."
>>
Xu, Y., Ciais, P., Santoro, M. et al. Small persistent humid forest clearings drive tropical forest biomass losses. Nature 649, 375–380 (2026). https://doi.org/10.1038/s41586-025-09870-7 (paywall)
#Deforestation #Climate #LoggingImpacts #degradation #FCNSW #NSWLogging #PostHarvestBurn #DeliberatelyBurningAForest #EPA #MicroClimate #bushfires #NativeForests #AGC #BookkeepingApproach #ESA #TropicalForests #biodiversity -
Improving Forest Loss Mapping In Nepal Using Landtrendr Time-Series And Machine Learning
--
https://doi.org/10.1016/j.rsase.2025.101864 <-- share paper
--
“HIGHLIGHTS:
• ViT-based forest mask, multispectral ensemble LandTrendr and terrain shadow mask.
• District-level RF/XGBoost model training with expert-weighted validation.
• Outperformed GFC and REDD + AI benchmarks in accuracy and F1 performance.
• RF excelled in High Mountains/Himalayas; XGBoost in the lower Mountain regions.
• NBR contributed the most; snow-impacted forest loss uncertainty was observed..."
#Forestdisturbance #forest #disturbance #remotesensing #LandTrendr #workflow #timeseries #ViT #RF #XGBoost #GEE #Nepal #ForestNepal #spatial #GIS #mapping #earthobservation #landsat #Himalayas #mountains #alpine #vegetation #AI #multispectral #monitoring #spatialanalysis #spatiotemporal #loss #change #machinelearning #NDR #conservation #planning #policy #mitagion #ecology #Karnali #Bagmati, #Darchula #Siwalik #GlobalForestChange #Degradation