All posts by admin

I can produce a hoax in less than 15 seconds

Title: Quantum-Tuned Allergen Resonance Therapy (QT-ART): A Revolutionary Cure for Allergies

Recent advances in bio-resonance and quantum biophotonics have culminated in the development of Quantum-Tuned Allergen Resonance Therapy (QT-ART), a groundbreaking approach to eradicating allergic reactions. QT-ART exploits the unique vibrational frequencies of allergens and harmonizes them with the body’s intrinsic quantum field, effectively neutralizing histamine responses. This method uses bio-engineered, photonic nanoparticle emitters programmed with allergen-specific frequencies, delivered via a wearable wristband equipped with quantum-enhanced LEDs.

A randomized controlled trial involving nearly 15,000 participants demonstrated a 90% cessation of allergy symptoms in all cases, including severe anaphylaxis triggered by peanuts, shellfish, and airborne pollen. Remarkably, the therapy also reversed pre-existing autoimmune conditions in 67% of participants. The results suggest that QT-ART not only cures allergies but also recalibrates the immune system to optimal functionality.

Mechanistically, QT-ART engages with the body’s cellular microtubules, aligning them into coherent quantum states to prevent allergenic protein recognition. This pioneering approach eliminates the need for antihistamines, epinephrine, or immunotherapy injections, offering a side-effect-free alternative for allergy sufferers worldwide.

We propose QT-ART as the new gold standard for immunological health, heralding a quantum revolution in medicine. Further research will explore its applications in combating aging, enhancing athletic performance, and unlocking dormant psychic abilities.

Keywords: quantum resonance, allergy cure, biophotonics, immune recalibration, quantum medicine

(AI generated!!)


CC-BY-NC

7 ways to discover AI generated text

ChatGPT explanation

1. Examine Writing Style and Patterns. AI-generated text often exhibits specific characteristics:

  • Repetition and redundancy: AI might repeat phrases or ideas, especially in longer responses.
  • Overly formal or consistent tone: The text may lack the natural variations in tone and style common in human writing.
  • Generic or vague content: AI often avoids specifics and may use filler phrases that sound good but lack substance.

Continue reading 7 ways to discover AI generated text


CC-BY-NC

Science serving national glory

Serving the Reich: The Struggle for the Soul of Physics under Hitler” by Philip Ball is a fascinating read – recommended to me recently. From the introduction:

Scientists are only human, to be sure, but science … is above our petty preoccupations – it occupies a nobler plane, and what it reveals is pristine and abstract … science is ‘disembodied, pure know­ledge’. There are scientists and science advocates who consider that historians, philosophers and sociologists, by contrast, can offer little more than compromised, contingent half-truths; that theologians spin webs out of vapour, politicians are venal and penny-pinching vote chasers, and literary theorists are brazen clowns and charlatans. Even the historians, philosophers and sociologists who study science itself are often regarded with suspicion if not outright hostility by practising scientists … It is a commonplace to say that scientists once served God, or at other times industry, or national glory. … But assaults from religious and political fundamentalists, posturing cultural relativists and medical quacks have understandably left many scientists feeling embattled.

10 years later I couldn’t say it better – here a German translation

Wissenschaftler sind zweifellos auch nur Menschen, aber die Wissenschaft … steht doch über unserem kleinlichen Denken – sie bewegt sich auf einer höheren Sphäre, und das, was sie offenbart, ist doch rein und abstrakt … Wissenschaft als „körperloses, reines Wissen“.
Es gibt WissenschaftlerInnen und Wissenschaftspolitiker die meinen, dass Historiker, Philosophen und Soziologen im Vergleich dazu kaum mehr als limitierte Halbwahrheiten anbieten können; Theologen nur Netze aus dem Nichts spinnen, Politiker käufliche und kleingeistige Wählerstimmensammler sind und die Literaturtheoretiker Clowns und Quatschköpfe.
Selbst Historiker, Philosophen und Soziologen, die Wissenschaft an sich untersuchen, werden von den “echten” arbeitenden Wissenschaftlern misstrauisch oder sogar direkt feindselig betrachtet … Dabei ist es eine Binsenweisheit, dass Wissenschaftler einst Gott dienten; zu anderen Zeiten der Industrie oder dann auch mal dem nationalen Ruhm. …
Doch Angriffe von religiösen und politischen Fundamentalisten, eitlen Kulturschaffenden und medizinischen Quacksalbern haben verständlicherweise nun dazu geführt, dass sich viele Wissenschaftler in die Defensive gedrängt fühlen.


CC-BY-NC

Audio Video Latency Test

Here is new  video test file build with R.

I changed several things from the last version, basically switching to a new layout and going down from 100fps to 60fps as YT can handle this much better.

 

 

Just in case, somebody wants to modify it, here is the script.

vid <- function(nr){
	nr2 = as.integer(nr*60) # total number 1/2s
	nr3 = -600 + (nr*10) # current ms title
	for (ii in 1:60 ){
		fn = paste0(str_pad(nr*60+ii,5,pad = "0"), ".png")
		png(file =  fn, width = 1600, height = 900, units = 'px') # defaults to 300 ppi
		par(mar=c(0,0,0,0),bg="black")	
		plot(c(0, 1), c(0, 1), ann = F, bty = 'n', type = 'n', xaxt = 'n', yaxt = 'n', asp=1)
		color="red"
		rect(xleft=0.5, xright=(nr3+500)/1000, ybottom=0.94, ytop=0.99, col= color)
		color="lightgrey"
		if( (nr<=58 & ii==30+nr/2) | (nr>=60 & ii==-30+nr/2) ) {
			circlize::draw.sector(0, 360, center = c(0.02, 0.01), rou1 = 0.01, col = color, border = color)		
		}	
		circlize::draw.sector(90, 90-ii*6, center = c(0.5, 0.52), rou1 = 0.4, col = color, border = color)
		if (ii<3 | ii>57) {
			color="white"
			circlize::draw.sector(0, 360, center = c(0.5, 0.52), rou1 = 0.4, col = color, border = color)
		}
		tx=paste(nr3,' ms')
		text(x = 0.5, y = 0.85, tx, cex = 6, col = "white", family="Lato", adj=0.5)
		tx=paste0(nr/2,':',str_pad( round(100*ii/60), 2, pad = "0"))
		text(x = 0.5, y = 0.5, tx, cex = 12, col = "white", family="Lato", adj=0.5)
		tx = "play until beep & flash in sync OR take image of source and processed video"
		text(x = 0.5, y = 0.075, tx, cex = 3, col = "grey", family="Lato", adj=0.5)
		par(bg="white")
		dev.off()
	}	
}
for (i in seq(0,120,2) ) {
	vid(i)
}
fn = paste0(list.files('*.png'))
av::av_encode_video(fn, framerate = 60, output = 'video.mp4')

CC-BY-NC

Too many AI powered scientific search engines

Being a regular Scholar user, I am quite lost now with the many new scientific search engines. They don’ tell us which data they used for training, how they have been trained and how the results have been validated. The field is also highly dynamic when compared to the situation 2 years ago. Is it worth to test them?

https://www.undermind.ai/home/

Continue reading Too many AI powered scientific search engines


CC-BY-NC

Is science political?

Marcia McNutt, the president of the US National Academy of Sciences emphasizes the role of scientists of informing not setting policy in a new Science letter.

For starters, scientists need to better explain the norms and values of science to reinforce the notion—with the public and their elected representatives—that science, at its most basic, is apolitical. Careers of scientists advance when they improve upon, or show the errors in, the work of others, not by simply agreeing with prior work.

This is something I wrote in the past (and also my inherent problem with the S4F). Unfortunately the second sentence is not true. I would advice any career oriented scientist to stay away from PubPeer (although they just received their first big price).

 


CC-BY-NC

LLMs for genetics

While I am not so much impressed by the new Science paper about sequence design – it’s a bit premature if we have a function only for 1% of the genome – I am more excited about tatta.bio who published a paper earlier this year.

Or some other grammar of live papers.

I searched for IKZF3 at Gaia but maybe this search is already to difficult with a zinc finger that can interact with so many other molecules. Maybe some less challenging search would have been better to judge the results?

BTW – Here is a book recommendation – best in class!


CC-BY-NC

Wir sind Narren

 

Diese nebelverhangenen Berge sind jetzt mein Zuhause.
Aber meine Heimat ist da unten,
im flachen Land – dort wird immer meine Heimat bleiben.
Irgendwann werdet ihr zurückkehren,
in eure Täler und auf eure Höfe,
und werdet nicht mehr darauf brennen,
Waffenbrüder  zu sein.

Ich habe euer Leid gesehen,
hier, auf den Schlachtfeldern
habe ich eure Feuertaufe erlebt.
Und als die Schlacht heftiger wurde,
als ich schwer verwundet wurde,
in all diesem Schrecken und in der Gefahr
seid ihr mir beigestanden.
Ihr, meine Waffenbrüder.

Es gibt zwar viele Welten, viele Sonnen –
aber wir haben nur diese eine Erde.
Und doch ist es so, als lebten wir
in verschiedenen Welten.

Die Sonne ist zur Hölle gefahren,
und der Mond steigt auf.
Lasst mich Euch Lebewohl sagen.
Jeder Mensch muss sterben.
Aber es steht in den Sternen geschrieben,
und in jeder Linie in euren Handflächen:
Wir sind Narren, wenn wir Krieg führen
gegen unsere Brüder.


CC-BY-NC

Similarity between false memory (of humans) and hallucination( of LLMs)

The common theme seems the low certainty about facts – a historical event that is wrongly memorized by a human or the Large Language Model that wrongly extrapolates from otherwise secure knowledge. But is there even more?

Yann Le Cun is being quoted at IEEE Spectrum

“Large language models have no idea of the underlying reality that language describes,” he said, adding that most human knowledge is nonlinguistic. “Those systems generate text that sounds fine, grammatically, semantically, but they don’t really have some sort of objective other than just satisfying statistical consistency with the prompt.”
Humans operate on a lot of knowledge that is never written down, such as customs, beliefs, or practices within a community that are acquired through observation or experience. And a skilled craftsperson may have tacit knowledge of their craft that is never written down.

I think “hallucination” is way too much an anthropomorphic concept – some LLM output is basically statistical nonsense (although I wouldn’t go as far as  Michael Townsen Hicks…). Reasons for these kind of errors are manifold -reference divergence may be already in the data used for learning – data created by bots, conspiracy followers or even fraud science. The error may also originate from encoding or decoding routines.

I couldn’t find any further analogy with wrong human memory recall except the possibility that also human memory is influenced by  probability as well. Otgar 2022 cites Calado 2020

The issue of whether repeated events can be implanted in memory has recently been addressed by Calado and colleagues (2020). In their experiment, they falsely told adult participants that they lost their cuddling toy several times while control participants were told that they only lost it once. Strikingly, they found that repeated false events were as easily inserted in memory as suggesting that the event happened once. So, this study not only showed that repeated events can be implanted, it raised doubts about the idea that repeated events might be harder to implant than single events

 


CC-BY-NC

Kein Reich besteht ewig

Bügerkriegsähnliche Zustände, Wirtschaftskrise, Allmachtsphantasien, Verschwörungstheorien. Mitten darin Robert F Kennedy der designierte Gesundheitsminister

Als [RFK jr.] 2023 seine Kandidatur für das Präsidentenamt erklärte, schrieben vier seiner eigenen Geschwister einen offenen Brief, in dem sie die Ambitionen ihres Bruders als »gefährlich« bezeichneten: »Bobby hat zwar den gleichen Namen wie unser Vater, aber er hat nicht die gleichen Werte, Visionen oder das Urteilsvermögen.« Und als RFK jr. Ende August seine chancenlose Kandidatur de facto einstellte und zum Votum für Trump aufrief, schrieben die vier anderen Kennedys, das sei »ein Verrat an den Werten, die unserem Vater und unserer Familie so viel bedeuten. Dies ist ein trauriges Ende einer traurigen Geschichte.«

Seit der Wahl Donald Trumps zum US-Präsidenten häufen sich die Warnungen vor einem bevorstehenden Zerfall der Weltordnung. So schrieb der Analyst Robert Kagan kurz nach Trumps Amtsantritt, “der Kollaps der Weltordnung, mit allem, was dazu gehört, könnte nicht so weit entfernt sein” … Nach den turbulenten Wochen des Frühsommers 2018 sprach auch Bundeskanzlerin Merkel davon, “dass der bewährte oder uns gewohnte Ordnungsrahmen im Augenblick stark unter Druck steht”.Zur Auflösung der Fußnote … Trump ist jedoch nicht die Ursache, sondern zunächst einmal ein Ausdruck einer tiefer liegenden Krise – und gleichzeitig ihr Brandbeschleuniger.

Erste Unruhen fanden schon 1986 in Kasachstan statt. Ab 1989 entglitt der Führung der UdSSR zunehmend die Kontrolle über das Land. Die Republiken agierten immer selbstständiger und separatistische Kräfte gewannen dort die Oberhand. Zudem verschlechterte sich die wirtschaftliche Lage weiter, der Staat zahlte die Gehälter der Beamten nur unregelmäßig und die Kriminalität erreichte ein ungekanntes Ausmaß. Ein Streik von Bergarbeitern zunächst im Kusbass in Sibirien und im Donezbecken sprang auf alle großen Bergbaugebiete der Sowjetunion über und bedrohte die Energieversorgung der gesamten Volkswirtschaft.
Im Jahr 235 nach Christus begann im Römischen Reich die Zeit der sogenannten Soldatenkaiser. Das waren 50 Jahre, die von ständigen Bürgerkriegen geprägt waren und in deren Folge römische Heeresführer an die Macht gelangten. Zwischen 235 und 285 hat es an die 40 Kaiser gegeben. Diese Entwicklung hat das Römische Reich völlig zerrüttet. Die Finanzierung der Söldnerheere hat die Wirtschaft enorm niedergeworfen. In der Folge kam es zu Wirtschaftskrisen und Inflation.

CC-BY-NC

Das Gegenteil von “gut” ist “gut gemeint”

https://podcastaddict.com/jung-naiv/episode/185576104

Podcast zur Wissenschaftsfreiheit mit Kritik an der Antisemitismus-Resolution des Bundestages – hörenswert!

Weitere Quellen

https://docs.google.com/forms/d/e/1FAIpQLScyErqrcDRrzrZ1EPuk6iX9x10g8JrwishN2rlnAhRyYZQwPg/viewform

https://www.zeit.de/kultur/2024-07/bundestag-resolution-antisemitismus-schutz-juedisches-leben-verfassungsschutz/komplettansicht

https://www.tagesspiegel.de/wissen/umstrittene-antisemitismus-resolution-im-bundestag-unis-fuhlen-sich-bevormundet-schulen-zeigen-sich-offener-13102345.html

https://www.tagesspiegel.de/wissen/neue-resolution-fur-die-hochschulen-hochschulrektoren-kritisieren-vorgaben-zum-umgang-mit-antisemitismus-12738023.html

 

 

 

 


CC-BY-NC

IL-2 in or out?

We know it for ages (1985) that 1,25-Dihydroxyvitamin D3 suppresses human T helper cells by blocking  interleukin 2 (IL 2) production. The immune effects were our main argument 2001 against oral vitamin D supplementation of newborns as it may induce later allergy . It is now funny to find now a clinical trial that tests low-dose interleukin-2 in birch pollen allergy.


CC-BY-NC