#false — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #false, aggregated by home.social.
-
#false : not true
- French: faux
- German: falsch
- Italian: falso
- Portuguese: falso
- Spanish: errado, falso
------------
Thank you so much for being a member of our community!
-
#Moscow could use recovered #Ukrainian #drone parts to stage an attack on #Baltic infrastructure in bid to undermine #NATO support for #Kyiv, #Lithuania’s defence minister said
For the attack parts of #UkrainianDones that were launched against military & energy targets inside #Russia could be used
#Russia is capable of assembling them into functional device that could be used in a #false-flag operation
-
I (un)learnt that:
- Depression = chemical imbalance
- Bananas grow on trees
- We lose heat through the headhttps://blog.mikeriversdale.co.nz/2026/07/worlds-most-contagious-falsehoods.html
-
Since we assume that "True" is a factual expression, all singularities can see a Fragments of what can be "True". So, Truth itself is the effect and result of cause that can only exist in living being that can use the brain to compare information because it is "saved" in memory. #social #psychology Else it would be impossible, which means, #False
-
AI Detection Software Is Failing Students, and Universities Are Starting to Notice
https://1ban.news/ai-detection-false-positives/
#1ban #detection #false #positives #science #research -
National Mall reflecting pool disaster as a real-time case study, we examine how a cheap, failed $14.7M "Rhino Linings" style repair job was quickly spun into a fictional narrative of left-wing vandalism.
...break down on the psychological formula Donald Trump uses to transform a blatant lie into "truth" for his followers.
https://youtu.be/J7YO_sSjEaY?si=gmkNpVtl2xqUO0wo - United Front Show
Doctor explains why MAGA believes Trump's lie and how Trump convinces them.
-
The Rented Crowd: Nero’s Five Thousand, the Paris Claque, and the Box That Laughed for America
For the better part of two decades, the laughter of the United States lived inside a padlocked box. Charles Rolland Douglass, a CBS sound engineer who had spent the war helping the Navy develop shipboard radar, built the device in the early 1950s and guarded it the way a sexton guards a reliquary. The laff box, as he called it, stood a little over two feet tall and worked like an organ: keys for titters, chortles, belly laughs, shrieks, a foot pedal to let a wave of mirth swell, crest, and die on command. Douglass wheeled it from studio to studio himself. Clients heard the output and never saw the mechanism. Only his immediate family knew what the inside looked like, and when he finally stepped back from the work, his sons carried the trade forward like a guild secret. The industry word for what he did was sweetening, which tells you the industry understood the product. Sugar is what you add when the thing itself goes down easier disguised. […] -
https://www.theguardian.com/us-news/2026/jun/07/trump-walks-out-meet-the-press-nbc-interview. "Donald #Trump walked out of an #interview with NBC’s Meet the Press after he repeatedly made #false #claims that the 2020 #presidential #election was #rigged & faced questions about #compensation for those charged in the January 6 #insurrection... Trump falsely claimed that the #California #gubernatorial race was 'rigged' while asserting untrue claims of #cheating in the 2020 #US presidential election."
-
Another great #Krugman article.
"Public discourse about #taxes and #inequality is, even more than discussion of other #economic topics, infested with #zombies — ideas that should be dead, having been proved wrong again and again, but that keep #shambling along, eating people’s brains. What sustains the zombies is, of course, #billionaire money, which keeps #false claims in circulation as long as they seem to justify low taxes on the #superrich.“
https://paulkrugman.substack.com/p/bezos-backlash-and-zombies
#bezos
#MadKingDonald -
https://www.theguardian.com/society/2026/may/20/children-mental-health-crisis-three-days-ae-specialist-bed-england. This is absolutely scandalous, & reveals the shocking extent of underfunding of #child & #adolescent #mentalhealth #services (CAMHS) in #England, @ChrisMayLA6. These #children & #young #people wouldn't need in-patient beds in the first place if sufficient, & timely, #community #care was available. The lack of such care is a #false #economy, as acute care is more expensive.
-
Proof by #intimidation
#AI could soon spew out hundreds of #mathematical proofs that look “right” but contain hidden #flaws, or proofs so complex we can’t verify them
- How will we know if they’re right?
A model might be giving convincing — but #incorrect — answers
“I think #o4-mini has mastered proof by intimidation!; it says everything with so much confidence.”
-
Feeding #children using the same #system of banks (allowing banks to #cheat / leverage / profit from us with #loans / #debt-increases / #virtual #maths) isn't going to get us in a better position later - even with a stash of money & everything else emptied out.
Right? 👶
#False #Finance #Fascism #STEM
#Banks help pay for both sides of #war and #planetary #damage and #amoral / #asocial.#Parents have less children or consider this first before jumping into more locked-in #debt / #manipulation.
-
The #Chinese captain of a seized #oil #tanker with suspected #russian links has been placed under arrest on suspicion of carrying #false #documents and of violating #laws on #seaworthiness, a #Swedish prosecutor said on Monday.
-
"Yes," said the history teacher in the year 2053, "That is actually what happened."
#meme #memes #shitpost #screenshot #twitter #bluesky #socialmedia #whitehouse #staged #event #fake #false #circus #clownshow
-
Flock Condemns False Child Predator Allegations, Yet Calls Critics Terrorists
https://ipvm.com/reports/flock-allegations-critics
#HackerNews #Flock #Condemns #False #Child #Predator #Allegations #Yet #Calls #Critics #Terrorists #news #technology #privacy #controversy
-
#false : fitted or likely to deceive or disappoint
- French: faux
- German: falsch
- Italian: falso
- Portuguese: falso
- Spanish: errado, falso
------------
A daily challenge to chain words together @ https://wordwallgame.com
-
There is not single angle where bb makes sense. I started rewriting it with chez scheme. I added checks, and property testing ala quick check. Here is an example use:
There is two ways to compare a tiered leaderboard first tier get first, then within the tier it is ranked by score with max 1000.
So the function looks like:
(lambda (tier1 score1 tier2 score2)
(if (< tier1 tier2) #true
(if (= tier1 tier2) (< score1 score2)
#false)))But there is faster way to do the “same” thing with a single comparison:
(define pack (lambda (tier score) (+ (* tier 1000) score)))
(lambda (tier1 score1 tier2 score2)
(< (pack tier1 score1) (pack tier2 score2)))The packing trick only works when scores fit in the multiplier's range. If score >= 1000, the packed value bleeds into the next tier: tier=1, score=1001 packs to 2001, which beats tier=2, score=0 at 2000 — wrong, because tier 2 should always win.
Adding the following check to bb, surface the bug:
cat <<'EOF' | bb add -
;; Without bounds, the packing trick fails.
(define ~check-unbounded-equivalence
(lambda (f)
(lambda (t1 s1 t2 s2)
(assume (= (f t1 s1 t2 s2)
(slow-compare t1 s1 t2 s2))))))
EOF
bb add --check fast-compare unbounded-equivalence
bb check fast-compare 2>&1 | grep Z3-FAILMind the fact that it looks like regular #scheme
-
RE: https://tech.lgbt/@Natasha_Jay/116357885337339271
Axios story: “No people were involved in the creation of these opinions.” 🤮
#fake #false #idiotic #AxiosStory #trust #noTrust #opinions #AI
-
FACT FOCUS: #False claims #Trump made as he addressed the nation about #Iran
https://apnews.com/article/trump-iran-fact-focus-gas-prices-inflation-821374c3c249ad0abf471843ce8e9557President Donald Trump's address to the nation on the Iran war did not always hew to the facts. In his remarks Wednesday night, Trump declared that he inherited a “dead and crippled country” and delivered an economy with “no inflation.”
-
This Is a Gardening Show | Where to Stream and Watch https://www.allforgardening.com/1687820/this-is-a-gardening-show-where-to-stream-and-watch/ #false #garden #gardening