Tootfinder

Opt-in global Mastodon full text search. Join the index!

@NFL@darktundra.xyz
2025-07-31 10:02:22

The making of the ‘NFL Top 100,’ and our complicated relationship with it nytimes.com/athletic/6523428/2

@cowboys@darktundra.xyz
2025-07-31 10:04:39

The making of the ‘NFL Top 100,’ and our complicated relationship with it nytimes.com/athletic/6523428/2

@benb@osintua.eu
2025-05-29 10:20:49

How much does a Russian drone attack on Ukraine cost? The question is more complicated than it sounds: benborges.xyz/2025/05/29/how-m

@raiders@darktundra.xyz
2025-07-31 10:03:42

The making of the ‘NFL Top 100,’ and our complicated relationship with it nytimes.com/athletic/6523428/2

@tml@urbanists.social
2025-06-30 11:53:30

Note to self: When starting doing something large and complicated in Visual Studio, regularly build and run in both Debug and Release configurations from the start, even while you are still very much debugging the stuff, so that you notice if the latter mysteriously doesn't work early enough.

@crell@phpc.social
2025-05-30 20:38:23

When I worked at an agency, I frequently worked with this one front-end dev. We had the following exchange several times:
Her: Hey Crell, the client wants to do X. How long would that take?
Me: What? X is impossible, there's no logical way to do it.
Me: Well, I suppose we could blah blah, but that would be super complicated.
Me: Hm, but what if I blah blah?
Me: Hang on a sec, let me check something.
<10 min later>
Me: OK, I just did it.
H…

@wyri@toot-toot.wyrihaxim.us
2025-05-31 21:56:28

@… it's complicated

@zudn@theres.life
2025-05-31 22:32:03

Nothing complicated
#blogging

@arXiv_statML_bot@mastoxiv.page
2025-07-30 09:21:51

MIBoost: A Gradient Boosting Algorithm for Variable Selection After Multiple Imputation
Robert Kuchen
arxiv.org/abs/2507.21807 arxiv.org/pd…

@servelan@newsie.social
2025-06-23 15:31:48

Researchers say using ChatGPT can rot your brain. The truth is a little more complicated
phys.org/news/2025-06-chatgpt-

@heiseonline@social.heise.de
2025-07-07 12:35:00

"It’s Complicated": Von der Berliner Praxis zum digitalen Therapie-Ökosystem
Wie sie ein digitales Therapie-Ökosystem aufgebaut haben und auf einen vertrauensvollen Umgang mit den Daten setzen, erzählen die Gründer von It’s Complicated.

@tiotasram@kolektiva.social
2025-07-31 16:25:48

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

@arXiv_eessSY_bot@mastoxiv.page
2025-05-30 07:23:32

Voltage Control of the Boost Converter: PI vs. Nonlinear Passivity-based Control
Leyan Fang, Romeo Ortega, Robert Gri\~n\'o
arxiv.org/abs/2505.23112

@newsie@darktundra.xyz
2025-07-29 15:47:28

Gun Nerds Dismantle Infamous Pistol to Research If It Fires at Random 404media.co/gun-nerds-dismantl

@arXiv_physicsfludyn_bot@mastoxiv.page
2025-05-30 07:34:15

Nonlinear Diffusion and Decay of an Expanding Turbulent Blob
Takumi Matsuzawa, Minhui Zhu, Nigel Goldenfeld, William T. M. Irvine
arxiv.org/abs/2505.22737

@samir@functional.computer
2025-07-26 14:24:00

@… It’s something to aspire to, though. We could get much closer if we shared graphs, rather than free text. Graph merging is in some respects more complicated than text merging, but there’s been a lot of progress recently (see Difftastic).

Across the Northeast this month, states will mark the complicated history of anointing a singular Black leader to represent their community,
-- a settler colonial tradition that persists today
Negro Election Day,
or Negroes Hallowday,
dates back to 1639 in Massachusetts,
making it the the earliest known Black voting system in the United States.
The day was celebrated throughout the Northeast to mark the day that African people elected a “king” or “governo…

@arXiv_hepth_bot@mastoxiv.page
2025-07-28 09:30:31

An Extended Soliton's Zero Modes
Jarah Evslin, Hui Liu
arxiv.org/abs/2507.18922 arxiv.org/pdf/2507.18922

@chris@mstdn.chrisalemany.ca
2025-06-25 04:29:30

The platform of 33 year-old Zohran Mamdani, the “Democatic Socialist" immigrant who just won the primary in New York City (setting himself up for Mayor's election in November)
free public buses 🚎
universal childcare 👶
freezing rent in subsidized units 🏚️
city-run grocery stores 🥖🥒🍎
all paid for by new taxes on the rich.🤑
Good people want these things. They are not complicated or extreme.
also:
"strong support of Palestinians and criticism of Israel”
#Socialist #CanPoli
bbc.com/news/articles/ckg6yg7x

@katrinakatrinka@infosec.exchange
2025-06-18 05:28:53

"In a probable cause statement, one officer wrote that the suspect 'knowingly engage[d] in conduct that create[d] a grave risk of death to another individual and thereby cause[d] the death of the other individual.'"
sltrib.com/news/politics/2025/

@avalon@jazztodon.com
2025-06-25 20:34:37

Louis Armstrong: The US jazz icon with a 'controversial' legacy? If you ask me, Pops was grinnin' 'cause he was winnin'! Micheal Ray said to me, there were only two times in America when it was OK to be black and happy; the other time was Disco.
Gold plated bathroom, Richard Nixon smuggles your stash, and (fuck Miles, he was too coked to have sense) not one detractor, even his ex and his mistress joined his wife at his funeral. Yeah, 'controversial' 🙄

@gwire@mastodon.social
2025-06-25 08:01:50

> She explained, “I just need the paper. I need to write things down. [The iPad script] also has so many passwords and then I would have ADD and then do something else and then it would lock me out … it was so complicated. So I printed it.”
When actors bypass corporate controls to get their work done, it's a showbiz story.

@arXiv_physicsoptics_bot@mastoxiv.page
2025-06-27 09:19:49

Mirror-mediated long-range coupling and robust phase locking of spatially separated exciton-polariton condensates
Shuang Liang, Hassan Alnatah, Qi Yao, Jonathan Beaumariage, Ken West, Kirk Baldwin, Loren N. Pfeiffer, Natalia G. Berloff, David W. Snoke
arxiv.org/abs/2506.20924

@timbray@cosocial.ca
2025-06-19 00:04:09

Bram Cohen on algorithms for determining the winner in ranked-choice voting: More complicated than you might think.
bramcohen.com/p/variants-on-in

@arXiv_physicsbioph_bot@mastoxiv.page
2025-05-29 07:33:15

Chemotaxis of branched cells in complex environments
Jiayi Liu, Jonathan E. Ron, Giulia Rinaldi, Ivanna Williantarra, Antonios Georgantzoglou, Ingrid de Vries, Michael Sixt, Milka Sarris, Nir S. Gov
arxiv.org/abs/2505.21949

@ingo@social.stuetzle.cc
2025-05-22 11:59:15

»One of Mr. Reagan's advisers, David Stockman, later wrote that the real aim of fiscal policy was to create a ›strategic deficit‹ that would slam the door and reduce the size of the federal government.« nytimes.com/2004/06/07/opinion

@Techmeme@techhub.social
2025-06-17 11:15:57

China's MiniMax open sources MiniMax-M1, a model to handle complicated productivity tasks that supports 1M input tokens and it says surpasses DeepSeek's R1-0528 (Bloomberg)
bloomberg.com/news/articles/20

@johl@mastodon.xyz
2025-06-19 20:35:00

Sure, the Fediverse is nerdy and requires you to choose an instance, but at least that makes it too "complicated" for the vice president of a fascist administration to join.

@arXiv_csRO_bot@mastoxiv.page
2025-07-25 07:57:22

A Step-by-step Guide on Nonlinear Model Predictive Control for Safe Mobile Robot Navigation
Dennis Benders, Laura Ferranti, Johannes K\"ohler
arxiv.org/abs/2507.17856

@ErikJonker@mastodon.social
2025-07-19 15:29:16

Very nice article about LLM architecture, a bit too complicated for me but probably not for others..
magazine.sebastianraschka.com/

@arXiv_csLG_bot@mastoxiv.page
2025-07-24 10:03:49

Filter-And-Refine: A MLLM Based Cascade System for Industrial-Scale Video Content Moderation
Zixuan Wang, Jinghao Shi, Hanzhong Liang, Xiang Shen, Vera Wen, Zhiqian Chen, Yifan Wu, Zhixin Zhang, Hongyu Xiong
arxiv.org/abs/2507.17204

@poppastring@dotnet.social
2025-06-19 01:47:11

The #AI Future Belongs to Those Who Zoom Out aboard.com/the-ai-future-belon

@grahamperrin@bsd.cafe
2025-05-22 23:44:27

@…
"… I had already ran a script that 'over organized' my project files and made it too complicated for me to access simple files, so I asked ChatGPT
"Can you write me a script that will retrace our steps to how it was organized on my desktop before we ran the last script? Rather than have over organized session folders like they …

@nohillside@smnn.ch
2025-06-19 05:07:25

Seems to be a rather complicated way of saying „we don‘t want no foreign students no more“ …
New US visa rules will force foreign students to unlock social media profiles theguardian.com/us-news/2025/j

@memeorandum@universeodon.com
2025-07-19 16:01:41

Trump's effort to distance from Epstein complicated by his deep ties to Epstein (Justin Glawe/Public Notice)
publicnotice.co/p/trump-epstei
memeorandum.com/250719/p34#a25

@penguin42@mastodon.org.uk
2025-06-20 12:24:15

A rose drying out naturally in a pot inside.
#wildlife #photography

A subtle orangey/yellow rose is all dried and crinkely;  it sits in a blue ceramic pot with some other cuttings.  There's some tiling behind it.  All the petals are wonderfully twisted and the centre is very complicated
@Adam@social.lein.us
2025-05-20 14:44:16

I should learn to do a floating IP, but it sounds complicated! docs.oracle.com/en/learn/oci-i

@michabbb@social.vivaldi.net
2025-06-20 18:22:08

Instead of needing to write a complex function or remember complicated formulas, we just need to know how to instruct AI to get the results we want.
And if we’re not experts, we can have multiple AIs check the work.
We’re basically sitting in a council of experts and learning along the way.
So, in the end, we’re not getting dumber - we’re just shifting our knowledge and adapting to a new way of thinking.

@arXiv_eessIV_bot@mastoxiv.page
2025-06-24 09:54:09

Taming Vision-Language Models for Medical Image Analysis: A Comprehensive Review
Haoneng Lin, Cheng Xu, Jing Qin
arxiv.org/abs/2506.18378

@thesaigoneer@social.linux.pizza
2025-06-23 07:28:27

Of course, with paper, note-it, Joplin and Bitwarden available, I didn't write down my exquisitely complicated new router password.
I mean, what's the use of that 😠

@arXiv_astrophGA_bot@mastoxiv.page
2025-06-25 09:57:20

Loose threads: parsec-scale filamentation in the high Galactic latitude molecular clouds MBM 3 and MBM 16
Marco Monaci, Loris Magnani, Steven N. Shore
arxiv.org/abs/2506.19728

@midtsveen@social.linux.pizza
2025-07-19 23:36:49

Being on the spectrum myself, I’ve noticed just how much easier it is to be authentic around autistic females, they genuinely help me unmask and feel like myself more and more every day.
But when I’m around guys on the spectrum, it’s the opposite: I end up masking even harder, feeling embarrassed and on edge, like everything just gets more complicated.
Sometimes I’m just hit with these realizations, and it really does feel like autism is full of surprises, never really stops catc…

@arXiv_grqc_bot@mastoxiv.page
2025-06-24 11:31:20

A numerical approach to particle creation in accelerating toy models
Pedro Duarte Baptista, Alex Va\~n\'o-Vi\~nuales, Adr\'ian del R\'io Vega
arxiv.org/abs/2506.18610

@NFL@darktundra.xyz
2025-07-09 19:46:45

Agent's Take: Why Terry McLaurin's contract dispute with the Commanders is more complicated than you think

cbssports.com/nfl/news/agents-…

@LaChasseuse@mastodon.scot
2025-06-16 16:00:25

@… It's not looking good for Scotland's rivers 😳

Very wordy and complicated graphic; the takeaway for this post is that it's not looking good for Scotland's rivers!
Background PFAS (per- and polyfluoroalkyl substances), known as ‘forever chemicals’, are a group of 10,000+ chemicals known to be highly persistent, with growing evidence of harm to human and environmental health. Trifluoracetic acid (TFA) is a mobile, short-chain PFAS which can be formed from the partial breakdown of other PFAS, including those used in some pesticides and refrigerants. With widespread PFAS use, TFA concentrations have risen drastically over the past decade, prompting scientifi…
@arXiv_csHC_bot@mastoxiv.page
2025-07-22 11:41:10

FlowForge: Guiding the Creation of Multi-agent Workflows with Design Space Visualization as a Thinking Scaffold
Pan Hao, Dongyeop Kang, Nicholas Hinds, Qianwen Wang
arxiv.org/abs/2507.15559

@UP8@mastodon.social
2025-07-18 16:14:08

♻️ Why recycling solar panels is harder than you might think − an electrical engineer explains
theconversation.com/why-recycl

@arXiv_mathRA_bot@mastoxiv.page
2025-06-24 09:26:00

Rational Motions of Minimal Quaternionic Degree with Prescribed Line Trajectories
Z\"ulal Derin Yaqub, Hans-Peter Schr\"ocker
arxiv.org/abs/2506.18029

@arXiv_physicsaoph_bot@mastoxiv.page
2025-05-26 07:32:36

Turbulent Snow Transport and Accumulation: New Reduced-Order Models and Diagnostics
Nikolas O. Aksamit, Alex P. Encinas-Bartos, Holt Hancock, Alexander Prokop
arxiv.org/abs/2505.17028

@arXiv_csSD_bot@mastoxiv.page
2025-07-23 09:15:42

LENS-DF: Deepfake Detection and Temporal Localization for Long-Form Noisy Speech
Xuechen Liu, Wanying Ge, Xin Wang, Junichi Yamagishi
arxiv.org/abs/2507.16220

@DrPlanktonguy@ecoevo.social
2025-06-14 14:00:49

Weekend #Plankton Factoid 🦠🦐
Mating by copepods is a complicated process since they are always at risk of predation by other plankton or fishes. Male #copepods carefully mechanically and chemically track a receptive female, capture them, and deposit an adhesive spermatophore near the genital open…

image/jpeg a microscope photograph of a shrimp-like male calanoid copepod with very long antennae with one having a distinct kink in it marked with a "ga" as a geniculate antenna. Source: An Image-Based Key To The Zooplankton Of North America
Version 5.0.
image/jpeg two shrimp-like copepods are shown side by side, one female carrying paired egg sacs off the abdomen, and a slightly smaller male with distinctively hooked antennae. A scale bar indicates they are approximately 1 mm long. Cyclops bicuspidus, NOAA GLERL.
@arXiv_astrophSR_bot@mastoxiv.page
2025-07-23 09:26:32

Molecules and Chemistry in Red Supergiants
Lucy M. Ziurys, Anita M. S. Richards
arxiv.org/abs/2507.15968 arxiv.org/pd…

@teledyn@mstdn.ca
2025-06-10 21:17:47

The Complicated Magnetic Environment of ‘Weird’ Uranus
stsci.edu/contents/news-releas

@arXiv_statME_bot@mastoxiv.page
2025-07-22 09:47:00

Variable Selection for Stratified Sampling Designs in Semiparametric Accelerated Failure Time Models with Clustered Failure Times
Ying Chen, Chuan-Fa Tang, Sy Han Chiou, Min Chen
arxiv.org/abs/2507.14689

@arXiv_csRO_bot@mastoxiv.page
2025-06-24 12:03:20

Integrating Maneuverable Planning and Adaptive Control for Robot Cart-Pushing under Disturbances
Zhe Zhang, Peijia Xie, Zhirui Sun, Bingyi Xia, Bi-Ke Zhu, Jiankun Wang
arxiv.org/abs/2506.18410

@mapcar@mastodon.sdf.org
2025-07-16 07:31:47

“[LLM] … mappings look a lot like strange attractors in dynamical systems - complicated, convoluted paths that are structured-ish.” social.wildeboer.net/@jwildebo

@newsie@darktundra.xyz
2025-06-25 13:06:25

Podcast: This Site Unmasks Cops With Facial Recognition 404media.co/podcast-this-site-

Staff shortages at weather service offices in might have complicated Texas forecasters’ ability to coordinate responses with local emergency management officials.
nytimes.com/2025/07/05/us/poli

@arXiv_csAI_bot@mastoxiv.page
2025-07-16 09:28:11

Tactical Decision for Multi-UGV Confrontation with a Vision-Language Model-Based Commander
Li Wang, Qizhen Wu, Lei Chen
arxiv.org/abs/2507.11079

@arXiv_physicscompph_bot@mastoxiv.page
2025-06-23 09:41:40

PCG-Informed Neural Solvers for High-Resolution Homogenization of Periodic Microstructures
Yu Xing, Yang Liu, Lipeng Chen, Huiping Tang, Lin Lu
arxiv.org/abs/2506.17087

@arXiv_mathOC_bot@mastoxiv.page
2025-06-18 09:08:46

A Study on Effective Initial Guess Finding Method Based on B\'ezier Curves: Orbit Determination Applications
Daegyun Choi, Sungwook Yang, Henzeh Leeghim, Donghoon Kim
arxiv.org/abs/2506.13921

@arXiv_csIR_bot@mastoxiv.page
2025-07-17 08:30:00

An Ecosystem for Ontology Interoperability
Zhangcheng Qiang
arxiv.org/abs/2507.12311 arxiv.org/pdf/2507.12311

@arXiv_mathAT_bot@mastoxiv.page
2025-06-17 10:05:53

An isometry theorem induced by the Radon transform between the convolution and interleaving distances
Michiaki Takiwaki
arxiv.org/abs/2506.12046

@arXiv_csSI_bot@mastoxiv.page
2025-07-21 07:50:10

Leveraging the Spatial Hierarchy: Coarse-to-fine Trajectory Generation via Cascaded Hybrid Diffusion
Baoshen Guo, Zhiqing Hong, Junyi Li, Shenhao Wang, Jinhua Zhao
arxiv.org/abs/2507.13366

@arXiv_hepph_bot@mastoxiv.page
2025-07-18 09:59:42

Decay and lifetime of oscillons coupled to an external scalar field: Insights from instability band analysis
Siyao Li, Masahide Yamaguchi, Ying-li Zhang
arxiv.org/abs/2507.13276

@memeorandum@universeodon.com
2025-07-03 20:35:57

Terminated NIH grants are being reinstated almost entirely in blue states (Anil Oza/STAT)
statnews.com/2025/07/03/nih-cu
memeorandum.com/250703/p99#a25

@tiotasram@kolektiva.social
2025-07-22 00:03:45

Overly academic/distanced ethical discussions
Had a weird interaction with @/brainwane@social.coop just now. I misinterpreted one of their posts quoting someone else and I think the combination of that plus an interaction pattern where I'd assume their stance on something and respond critically to that ended up with me getting blocked. I don't have hard feelings exactly, and this post is only partly about this particular person, but I noticed something interesting by the end of the conversation that had been bothering me. They repeatedly criticized me for assuming what their position was, but never actually stated their position. They didn't say: "I'm bothered you assumed my position was X, it's actually Y." They just said "I'm bothered you assumed my position was X, please don't assume my position!" I get that it's annoying to have people respond to a straw man version of your argument, but when I in response asked some direct questions about what their position was, they gave some non-answers and then blocked me. It's entirely possible it's a coincidence, and they just happened to run out of patience on that iteration, but it makes me take their critique of my interactions a bit less seriously. I suspect that they just didn't want to hear what I was saying, while at the same time they wanted to feel as if they were someone who values public critique and open discussion of tricky issues (if anyone reading this post also followed our interaction and has a different opinion of my behavior, I'd be glad to hear it; it's possible In effectively being an asshole here and it would be useful to hear that if so).
In any case, the fact that at the end of the entire discussion, I'm realizing I still don't actually know their position on whether they think the AI use case in question is worthwhile feels odd. They praised the system on several occasions, albeit noting some drawbacks while doing so. They said that the system was possibly changing their anti-AI stance, but then got mad at me for assuming this meant that they thought this use-case was justified. Maybe they just haven't made up their mind yet but didn't want to say that?
Interestingly, in one of their own blog posts that got linked in the discussion, they discuss a different AI system, and despite listing a bunch of concrete harms, conclude that it's okay to use it. That's fine; I don't think *every* use of AI is wrong on balance, but what bothered me was that their post dismissed a number of real ethical issues by saying essentially "I haven't seen calls for a boycott over this issue, so it's not a reason to stop use." That's an extremely socially conformist version of ethics that doesn't sit well with me. The discussion also ended up linking this post: chelseatroy.com/2024/08/28/doe which bothered me in a related way. In it, Troy describes classroom teaching techniques for introducing and helping students explore the ethics of AI, and they seem mostly great. They avoid prescribing any particular correct stance, which is important when teaching given the power relationship, and they help students understand the limitations of their perspectives regarding global impacts, which is great. But the overall conclusion of the post is that "nobody is qualified to really judge global impacts, so we should focus on ways to improve outcomes instead of trying to judge them." This bothers me because we actually do have a responsibility to make decisive ethical judgments despite limitations of our perspectives. If we never commit to any ethical judgment against a technology because we think our perspective is too limited to know the true impacts (which I'll concede it invariably is) then we'll have to accept every technology without objection, limiting ourselves to trying to improve their impacts without opposing them. Given who currently controls most of the resources that go into exploration for new technologies, this stance is too permissive. Perhaps if our objection to a technology was absolute and instantly effective, I'd buy the argument that objecting without a deep global view of the long-term risks is dangerous. As things stand, I think that objecting to the development/use of certain technologies in certain contexts is necessary, and although there's a lot of uncertainly, I expect strongly enough that the overall outcomes of objection will be positive that I think it's a good thing to do.
The deeper point here I guess is that this kind of "things are too complicated, let's have a nuanced discussion where we don't come to any conclusions because we see a lot of unknowns along with definite harms" really bothers me.

@arXiv_hepth_bot@mastoxiv.page
2025-07-23 10:05:42

Quantum thermodynamics in a rotating BTZ black hole spacetime
Wenjing Chen, Yixuan Ma, Si-Wei Han, Zihao Wang, Jun Feng
arxiv.org/abs/2507.16787

@arXiv_condmatmtrlsci_bot@mastoxiv.page
2025-06-17 12:40:49

Faceting transition in aluminum as a grain boundary phase transition
Yoonji Choi, Tobias Brink
arxiv.org/abs/2506.13550

@deprogrammaticaipsum@mas.to
2025-05-04 19:45:13

"This is how Lotus was born: as a company featuring unprecedented benefits for their employees, fostering a culture of radical diversity and inclusion, cleverly mixing dashes of 1960s counterculture with the latest 1980s technology.
Two major names stand out in the creation of this culture: first, Janet Axelrod, who passed away in 2021, and who brought her experience at Digital Equipment Corporation in the areas of diversity and inclusion. Second, Freada Kapor Klein."

@arXiv_csRO_bot@mastoxiv.page
2025-07-25 07:46:52

PinchBot: Long-Horizon Deformable Manipulation with Guided Diffusion Policy
Alison Bartsch, Arvind Car, Amir Barati Farimani
arxiv.org/abs/2507.17846

@arXiv_quantph_bot@mastoxiv.page
2025-06-10 18:45:00

This arxiv.org/abs/2501.05616 has been replaced.
initial toot: mastoxiv.page/@arXiv_qu…

@arXiv_mathAP_bot@mastoxiv.page
2025-07-18 08:03:02

Asymptotically sharp stability of Sobolev inequalities on the Heisenberg group with dimension-dependent constants
Lu Chen, Guozhen Lu, Hanli Tang, Bohan Wang
arxiv.org/abs/2507.12725

@arXiv_csCL_bot@mastoxiv.page
2025-07-08 14:02:11

Interpretable Mnemonic Generation for Kanji Learning via Expectation-Maximization
Jaewook Lee, Alexander Scarlatos, Andrew Lan
arxiv.org/abs/2507.05137

@arXiv_csCR_bot@mastoxiv.page
2025-07-09 08:59:52

iThermTroj: Exploiting Intermittent Thermal Trojans in Multi-Processor System-on-Chips
Mehdi Elahi, Mohamed R. Elshamy, Abdel-Hameed Badawy, Ahmad Patooghy
arxiv.org/abs/2507.05576

@arXiv_csGR_bot@mastoxiv.page
2025-07-17 08:40:40

Shape Adaptation for 3D Hairstyle Retargeting
Lu Yu, Zhong Ren, Youyi Zheng, Xiang Chen, Kun Zhou
arxiv.org/abs/2507.12168

@arXiv_qbioQM_bot@mastoxiv.page
2025-07-16 08:46:11

Strategic Control of Drug-Resistant HIV: Multi-Strain Modeling with Diagnosis, Adherence, and Treatment Switching
Ashish Poonia, Siddhartha P. Chakrabarty
arxiv.org/abs/2507.10625

@arXiv_csCY_bot@mastoxiv.page
2025-07-10 09:12:01

Google Search Advertising after Dobbs v. Jackson
Yelena Mejova, Ronald E. Robertson, Catherine A. Gimbrone, Sarah McKetta
arxiv.org/abs/2507.06640

@cai@mastodon.social
2025-07-04 04:19:01
Content warning: us pol, personal

I’m a US citizen who has never lived there but has family there and has a certain history, affinity and complicated relationship with the country. I am simultaneously disconnected from the reality of “on the ground” culture — just as incredulous and horrified as the rest of the world — while also having a particular additional fear and a grief from my personal connection. I don’t really have capacity to examine that at the moment. That’s why I’m not talking about it, really.

Trump learned about the timing of Musk’s departure in the same manner that the president himself has often used to share significant personnel news:
via a social-media post
"The president knew that Musk would be leaving soon, but not the exact timing until the post was sent"

@arXiv_astrophSR_bot@mastoxiv.page
2025-07-21 09:23:20

Modeling HMI observables for the study of solar oscillations
D. Fournier, N. M. Kostogryz, L. Gizon, J. Schou, V. Witzke, A. I. Shapiro, I. Milic
arxiv.org/abs/2507.13756

@mr_grey@social.linux.pizza
2025-05-13 13:40:04

Recently I had a flashback to me telling a friend that I was about to start learning a new concept in programming. Classes. I remember feeling nervous because I felt it was this huge complicated topic, and I already felt my brain was 'full' so-to-speak with programming knowledge. Well that was years ago and now I can't imagine not using classes. It's amazing to look back and see progress! #coding

@arXiv_csDC_bot@mastoxiv.page
2025-07-08 08:40:20

On Fault Tolerance of Data Storage Systems: A Holistic Perspective
Mai Zheng, Duo Zhang, Ahmed Dajani
arxiv.org/abs/2507.03849

@crell@phpc.social
2025-07-07 16:32:49

Pet peeve: In the process of making your library "simple" to setup or demo, you also make it difficult/impossible to use cleanly in a DI-based system.
Pet peeve: In the process of making your library DI-friendly, you make it so complicated that it's practically unusable outside of a pre-configured framework.
Come on, #PHP. We can do better than this. We *can* have this cake an…

@arXiv_csIR_bot@mastoxiv.page
2025-06-18 08:25:15

Analysis of Anonymous User Interaction Relationships and Prediction of Advertising Feedback Based on Graph Neural Network
Yanjun Dai, Haoyang Feng, Yuan Gao
arxiv.org/abs/2506.13787

@arXiv_statME_bot@mastoxiv.page
2025-06-03 08:02:15

Uncertainty quantification of synchrosqueezing transform under complicated nonstationary noise
Hau-Tieng Wu, Zhou Zhou
arxiv.org/abs/2506.00779

Trump has ordered more troops to Los Angeles and Washington than he currently has stationed in Syria and Iraq combined.
He seems more willing to use the military against Americans than against Iranians.
He celebrates a show of force on U.S. soil even as he denounces “endless wars” outside its borders.

@memeorandum@universeodon.com
2025-06-10 01:40:45

Why I Think Murder Is Plunging -- It's complicated, but this is what I find compelling. (Jeff Asher/Jeff-alytics)
jasher.substack.com/p/why-i-th
memeorandum.com/250609/p154#a2

@arXiv_statML_bot@mastoxiv.page
2025-07-10 08:36:11

Fast Gaussian Processes under Monotonicity Constraints
Chao Zhang, Jasper M. Everink, Jakob Sauer J{\o}rgensen
arxiv.org/abs/2507.06677

@arXiv_mathOC_bot@mastoxiv.page
2025-07-14 09:20:12

Robust Contextual State Estimation with Limited Measurement Data
J. G. De la Varga, J. M. Morales, S. Pineda
arxiv.org/abs/2507.08767

@arXiv_astrophGA_bot@mastoxiv.page
2025-07-16 09:14:31

Fine-structure Line Atlas for Multi-wavelength Extragalactic Study (FLAMES) I: Comprehensive Low and High Redshift Catalogs and Empirical Relations for Probing Gas Conditions
Bo Peng, Cody Lamarche, Catie Ball, Amit Vishwas, Gordon Stacey, Christopher Rooney, Thomas Nikola, Carl Ferkinhoff
arxiv.org/abs/2507.10702

@arXiv_hepth_bot@mastoxiv.page
2025-07-18 09:59:22

Asymptotics of spin-spin correlators weighted by fermion number measurements with low rapidity threshold in the 2D Ising free-fermion QFT
Yizhuang Liu
arxiv.org/abs/2507.13093

@arXiv_eessSY_bot@mastoxiv.page
2025-07-11 08:02:41

Probability-Raising Causality for Uncertain Parametric Markov Decision Processes with PAC Guarantees
Ryohei Oura, yuji Ito
arxiv.org/abs/2507.07319

@arXiv_hepph_bot@mastoxiv.page
2025-06-10 09:26:03

Data-Driven High-Dimensional Statistical Inference with Generative Models
Oz Amram, Manuel Szewc
arxiv.org/abs/2506.06438

Brian Wilson, who died Wednesday at 82, was one of music’s true visionaries,
if that’s the right word for a guy who dealt in the endless possibility of sound.
As a composer of melodies, a constructor of textures, an arranger of vocal harmonies
— as someone who knew how to pull complicated elements together into songs that somehow felt inevitable
— he was up there with Phil Spector, George Martin and the Motown team of Holland-Dozier-Holland.

@memeorandum@universeodon.com
2025-07-03 16:46:02

Democrats Denied This City Had a Gang Problem. The Truth Is Complicated. (Ted Conover/New York Times)
nytimes.com/2025/07/03/magazin
memeorandum.com/250703/p60#a25

@NFL@darktundra.xyz
2025-07-03 18:25:36

New Steelers TE Jonnu Smith on trade from Dolphins: 'Got to go where I am appreciated' nfl.com/news/new-steelers-te-j

@arXiv_eessSY_bot@mastoxiv.page
2025-06-10 08:20:02

Hierarchical Debate-Based Large Language Model (LLM) for Complex Task Planning of 6G Network Management
Yuyan Lin (Charlie), Hao Zhou (Charlie), Chengming Hu (Charlie), Xue Liu (Charlie), Hao Chen (Charlie), Yan Xin (Charlie), Jianzhong (Charlie), Zhang
arxiv.org/abs/2506.06519

@arXiv_csRO_bot@mastoxiv.page
2025-07-09 09:51:32

AURA-CVC: Autonomous Ultrasound-guided Robotic Assistance for Central Venous Catheterization
Deepak Raina, Lidia Al-Zogbi, Brian Teixeira, Vivek Singh, Ankur Kapoor, Thorsten Fleiter, Muyinatu A. Lediju Bell, Vinciya Pandian, Axel Krieger
arxiv.org/abs/2507.05979

@arXiv_hepth_bot@mastoxiv.page
2025-06-11 09:54:55

Khovanov-Rozansky cycle calculus for bipartite links
A. Anokhina, E. Lanina, A. Morozov
arxiv.org/abs/2506.08721 arxi…