Study of thorium in hypersonic gas jets: Ionization potentials of Th and Th$^ $
A. Claessens, F. Ivandikov, M. Brasseur, A. Dragoun, Ch. E. D\"ullmann, R. Ferrer, Yu. Kudryavtsev, P. Palmeri, P. Quinet, S. Raeder, D. Renisch, P. Van den Bergh, P. Van Duppen
https://arxiv.org/abs/2507.21946 https://arxiv.org/pdf/2507.21946 https://arxiv.org/html/2507.21946
arXiv:2507.21946v1 Announce Type: new
Abstract: Laser ionization spectroscopy was performed on both neutral and singly ionized $^{232}$Th with the aim of identifying the nuclear-clock isomer in the singly charged ionic state of $^{229}$Th. A search for an efficient laser ionization scheme of $^{232}$Th$^ $ was conducted in an argon-filled gas cell. This revealed a congested spectrum due to collisional quenching effects and the presence of several auto-ionizing states, one of which has a laser ionization efficiency of at least $1.2 \%$. Using a threshold approach, the second ionization potential was determined to be $12.300(9)\,$eV. The subsequent study on atomic $^{232}$Th validated the threshold approach. Conducting spectroscopy in a hypersonic gas jet, suppressed the gas-collision-induced quenching, revealing a Rydberg series that converges to the first ionization potential, determined to be $6.306879(14)\,$eV. The gas jet also cools down the thorium, allowing for high-resolution laser spectroscopy with a resolution of $240(30)\,$MHz. Using the Multiconfigurational Dirac-Hartree-Fock (MCDHF) method, the ionization potentials were computed, showing a relative difference of 0.06\% and 0.19\% between theory and our experimental values for the ionization potentials of Th and Th$^ $ respectively. Further calculations using a pseudo-relativistic Hartree-Fock method reveal strong mixing in the used intermediate state at $26113.27\,$cm$^{-1}$ of Th. A dedicated fast-extraction gas cell with $^{233}$U recoil sources was used to study $^{229}$Th$^ $ but no photo-ionization signal could be observed.
toXiv_bot_toot
“What if AI Doesn’t Get Much Better Than This?” – a pretty good summary for those who don't want to read Gary Marcus’s rather… elaborate… treatizes.
> I think it’s safe, at least for now, to turn your attention away from the tech titans’ increasingly hyperbolic claims
🧘♂️
https://ca…
Scary headlines like this mask what I call "talent debt": when companies cut juniors because seniors AI seem faster, forgetting that AI doesn't train future leaders. You're not saving money, you're cutting off your pipeline.
https://www.
What if the railways could promote stability rather than disrupting society? (🇩🇪:🤯)
The Swiss railways explore using batteries on trains to smoothen a.o. peaks related to coordinated train schedules, which facilitate easy and reliable connections at many stations around the clock (🇫🇷:🤯)
https://www.
Polarization ratios of turbulent Langmuir/$\mathcal{Z}$-mode waves generated by electron beams in magnetized solar wind plasmas
Francisco Javier Polanco-Rodr\'iguez, Catherine Krafft, Philippe Savoini
https://arxiv.org/abs/2506.18429
MuRating: A High Quality Data Selecting Approach to Multilingual Large Language Model Pretraining
Zhixun Chen, Ping Guo, Wenhan Han, Yifan Zhang, Binbin Liu, Haobin Lin, Fengze Liu, Yan Zhao, Bingni Zhang, Taifeng Wang, Yin Zheng, Meng Fang
https://arxiv.org/abs/2507.01785
LLM coding is the opposite of DRY
An important principle in software engineering is DRY: Don't Repeat Yourself. We recognize that having the same code copied in more than one place is bad for several reasons:
1. It makes the entire codebase harder to read.
2. It increases maintenance burden, since any problems in the duplicated code need to be solved in more than one place.
3. Because it becomes possible for the copies to drift apart if changes to one aren't transferred to the other (maybe the person making the change has forgotten there was a copy) it makes the code more error-prone and harder to debug.
All modern programming languages make it almost entirely unnecessary to repeat code: we can move the repeated code into a "function" or "module" and then reference it from all the different places it's needed. At a larger scale, someone might write an open-source "library" of such functions or modules and instead of re-implementing that functionality ourselves, we can use their code, with an acknowledgement. Using another person's library this way is complicated, because now you're dependent on them: if they stop maintaining it or introduce bugs, you've inherited a problem, but still, you could always copy their project and maintain your own version, and it would be not much more work than if you had implemented stuff yourself from the start. It's a little more complicated than this, but the basic principle holds, and it's a foundational one for software development in general and the open-source movement in particular. The network of "citations" as open-source software builds on other open-source software and people contribute patches to each others' projects is a lot of what makes the movement into a community, and it can lead to collaborations that drive further development. So the DRY principle is important at both small and large scales.
Unfortunately, the current crop of hyped-up LLM coding systems from the big players are antithetical to DRY at all scales:
- At the library scale, they train on open source software but then (with some unknown frequency) replicate parts of it line-for-line *without* any citation [1]. The person who was using the LLM has no way of knowing that this happened, or even any way to check for it. In theory the LLM company could build a system for this, but it's not likely to be profitable unless the courts actually start punishing these license violations, which doesn't seem likely based on results so far and the difficulty of finding out that the violations are happening. By creating these copies (and also mash-ups, along with lots of less-problematic stuff), the LLM users (enabled and encouraged by the LLM-peddlers) are directly undermining the DRY principle. If we see what the big AI companies claim to want, which is a massive shift towards machine-authored code, DRY at the library scale will effectively be dead, with each new project simply re-implementing the functionality it needs instead of every using a library. This might seem to have some upside, since dependency hell is a thing, but the downside in terms of comprehensibility and therefore maintainability, correctness, and security will be massive. The eventual lack of new high-quality DRY-respecting code to train the models on will only make this problem worse.
- At the module & function level, AI is probably prone to re-writing rather than re-using the functions or needs, especially with a workflow where a human prompts it for many independent completions. This part I don't have direct evidence for, since I don't use LLM coding models myself except in very specific circumstances because it's not generally ethical to do so. I do know that when it tries to call existing functions, it often guesses incorrectly about the parameters they need, which I'm sure is a headache and source of bugs for the vibe coders out there. An AI could be designed to take more context into account and use existing lookup tools to get accurate function signatures and use them when generating function calls, but even though that would probably significantly improve output quality, I suspect it's the kind of thing that would be seen as too-baroque and thus not a priority. Would love to hear I'm wrong about any of this, but I suspect the consequences are that any medium-or-larger sized codebase written with LLM tools will have significant bloat from duplicate functionality, and will have places where better use of existing libraries would have made the code simpler. At a fundamental level, a principle like DRY is not something that current LLM training techniques are able to learn, and while they can imitate it from their training sets to some degree when asked for large amounts of code, when prompted for many smaller chunks, they're asymptotically likely to violate it.
I think this is an important critique in part because it cuts against the argument that "LLMs are the modern compliers, if you reject them you're just like the people who wanted to keep hand-writing assembly code, and you'll be just as obsolete." Compilers actually represented a great win for abstraction, encapsulation, and DRY in general, and they supported and are integral to open source development, whereas LLMs are set to do the opposite.
[1] to see what this looks like in action in prose, see the example on page 30 of the NYTimes copyright complaint against OpenAI (#AI #GenAI #LLMs #VibeCoding
Small area estimation of growing stock timber volume, basal area, mean stem diameter, and stem density for mountain forests in Austria
Arne Nothdurft, Valentin Sarkleti, Tobias Ofner-Graff, Andreas Tockner, Christoph Gollob, Tim Ritter, Ralf Kra{\ss}nitzer, Philip Svazek, Martin K\"uhmaier, Karl Stampfer, Andrew O. Finley
https://