Tootfinder

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

@raiders@darktundra.xyz
2025-07-05 00:35:44

Drafted rookie WR is among 3 current Raiders players on CFL negotiation list raiderswire.usatoday.com/story

@burger_jaap@mastodon.social
2025-06-05 08:21:32

"The ChargeWise California pilot found that dynamic price signals, combined with automated charging management, achieve up to 98% EV charging load delivered off-peak, above the 60-70% typically achieved by ToU tariffs."
current-new…

@chiraag@mastodon.online
2025-08-03 21:22:15

Interesting: From Becky Ferreira for @… :
404media.co/new-deep-sea-creat

@fanf@mendeddrum.org
2025-08-02 14:42:03

from my link log —
Current technology is not ready for proper alpha blending.
blog.pkh.me/p/43-the-current-t
saved 2025-07-19

@UP8@mastodon.social
2025-08-02 00:00:30

🎨 The current technology is not ready for proper (color) blending
#color

@tante@tldr.nettime.org
2025-06-04 09:37:17

With so much hype and recent articles on "AI for coding" and how everyone not doing it is dumb maybe this is a good time to relink my article on "Vibe Coding".
Which I think focuses purely on "output" when developing or creating something is not just about the output.
tan…

@arXiv_hepph_bot@mastoxiv.page
2025-06-05 07:30:55

Reducing Hadronic Uncertainty in Low-Energy Neutral-Current Processes
Oleksandr Tomalak
arxiv.org/abs/2506.03255 arxi…

@arXiv_condmatmeshall_bot@mastoxiv.page
2025-06-04 07:47:55

Phonon-Induced Current Noise in Single-Walled Carbon Nanotubes across the Ballistic-Diffusive Crossover
Aina Sumiyoshi, Takahiro Yamamoto
arxiv.org/abs/2506.02569

@catsalad@infosec.exchange
2025-06-05 18:50:40

Oh nice. Google changed my location for one of my (many) accounts... again
Current: Iran
New: Poland
Always on Tor confuses them.

@tiotasram@kolektiva.social
2025-08-04 15:49:00

Should we teach vibe coding? Here's why not.
Should AI coding be taught in undergrad CS education?
1/2
I teach undergraduate computer science labs, including for intro and more-advanced core courses. I don't publish (non-negligible) scholarly work in the area, but I've got years of craft expertise in course design, and I do follow the academic literature to some degree. In other words, In not the world's leading expert, but I have spent a lot of time thinking about course design, and consider myself competent at it, with plenty of direct experience in what knowledge & skills I can expect from students as they move through the curriculum.
I'm also strongly against most uses of what's called "AI" these days (specifically, generative deep neutral networks as supplied by our current cadre of techbro). There are a surprising number of completely orthogonal reasons to oppose the use of these systems, and a very limited number of reasonable exceptions (overcoming accessibility barriers is an example). On the grounds of environmental and digital-commons-pollution costs alone, using specifically the largest/newest models is unethical in most cases.
But as any good teacher should, I constantly question these evaluations, because I worry about the impact on my students should I eschew teaching relevant tech for bad reasons (and even for his reasons). I also want to make my reasoning clear to students, who should absolutely question me on this. That inspired me to ask a simple question: ignoring for one moment the ethical objections (which we shouldn't, of course; they're very stark), at what level in the CS major could I expect to teach a course about programming with AI assistance, and expect students to succeed at a more technically demanding final project than a course at the same level where students were banned from using AI? In other words, at what level would I expect students to actually benefit from AI coding "assistance?"
To be clear, I'm assuming that students aren't using AI in other aspects of coursework: the topic of using AI to "help you study" is a separate one (TL;DR it's gross value is not negative, but it's mostly not worth the harm to your metacognitive abilities, which AI-induced changes to the digital commons are making more important than ever).
So what's my answer to this question?
If I'm being incredibly optimistic, senior year. Slightly less optimistic, second year of a masters program. Realistic? Maybe never.
The interesting bit for you-the-reader is: why is this my answer? (Especially given that students would probably self-report significant gains at lower levels.) To start with, [this paper where experienced developers thought that AI assistance sped up their work on real tasks when in fact it slowed it down] (arxiv.org/abs/2507.09089) is informative. There are a lot of differences in task between experienced devs solving real bugs and students working on a class project, but it's important to understand that we shouldn't have a baseline expectation that AI coding "assistants" will speed things up in the best of circumstances, and we shouldn't trust self-reports of productivity (or the AI hype machine in general).
Now we might imagine that coding assistants will be better at helping with a student project than at helping with fixing bugs in open-source software, since it's a much easier task. For many programming assignments that have a fixed answer, we know that many AI assistants can just spit out a solution based on prompting them with the problem description (there's another elephant in the room here to do with learning outcomes regardless of project success, but we'll ignore this over too, my focus here is on project complexity reach, not learning outcomes). My question is about more open-ended projects, not assignments with an expected answer. Here's a second study (by one of my colleagues) about novices using AI assistance for programming tasks. It showcases how difficult it is to use AI tools well, and some of these stumbling blocks that novices in particular face.
But what about intermediate students? Might there be some level where the AI is helpful because the task is still relatively simple and the students are good enough to handle it? The problem with this is that as task complexity increases, so does the likelihood of the AI generating (or copying) code that uses more complex constructs which a student doesn't understand. Let's say I have second year students writing interactive websites with JavaScript. Without a lot of care that those students don't know how to deploy, the AI is likely to suggest code that depends on several different frameworks, from React to JQuery, without actually setting up or including those frameworks, and of course three students would be way out of their depth trying to do that. This is a general problem: each programming class carefully limits the specific code frameworks and constructs it expects students to know based on the material it covers. There is no feasible way to limit an AI assistant to a fixed set of constructs or frameworks, using current designs. There are alternate designs where this would be possible (like AI search through adaptation from a controlled library of snippets) but those would be entirely different tools.
So what happens on a sizeable class project where the AI has dropped in buggy code, especially if it uses code constructs the students don't understand? Best case, they understand that they don't understand and re-prompt, or ask for help from an instructor or TA quickly who helps them get rid of the stuff they don't understand and re-prompt or manually add stuff they do. Average case: they waste several hours and/or sweep the bugs partly under the rug, resulting in a project with significant defects. Students in their second and even third years of a CS major still have a lot to learn about debugging, and usually have significant gaps in their knowledge of even their most comfortable programming language. I do think regardless of AI we as teachers need to get better at teaching debugging skills, but the knowledge gaps are inevitable because there's just too much to know. In Python, for example, the LLM is going to spit out yields, async functions, try/finally, maybe even something like a while/else, or with recent training data, the walrus operator. I can't expect even a fraction of 3rd year students who have worked with Python since their first year to know about all these things, and based on how students approach projects where they have studied all the relevant constructs but have forgotten some, I'm not optimistic seeing these things will magically become learning opportunities. Student projects are better off working with a limited subset of full programming languages that the students have actually learned, and using AI coding assistants as currently designed makes this impossible. Beyond that, even when the "assistant" just introduces bugs using syntax the students understand, even through their 4th year many students struggle to understand the operation of moderately complex code they've written themselves, let alone written by someone else. Having access to an AI that will confidently offer incorrect explanations for bugs will make this worse.
To be sure a small minority of students will be able to overcome these problems, but that minority is the group that has a good grasp of the fundamentals and has broadened their knowledge through self-study, which earlier AI-reliant classes would make less likely to happen. In any case, I care about the average student, since we already have plenty of stuff about our institutions that makes life easier for a favored few while being worse for the average student (note that our construction of that favored few as the "good" students is a large part of this problem).
To summarize: because AI assistants introduce excess code complexity and difficult-to-debug bugs, they'll slow down rather than speed up project progress for the average student on moderately complex projects. On a fixed deadline, they'll result in worse projects, or necessitate less ambitious project scoping to ensure adequate completion, and I expect this remains broadly true through 4-6 years of study in most programs (don't take this as an endorsement of AI "assistants" for masters students; we've ignored a lot of other problems along the way).
There's a related problem: solving open-ended project assignments well ultimately depends on deeply understanding the problem, and AI "assistants" allow students to put a lot of code in their file without spending much time thinking about the problem or building an understanding of it. This is awful for learning outcomes, but also bad for project success. Getting students to see the value of thinking deeply about a problem is a thorny pedagogical puzzle at the best of times, and allowing the use of AI "assistants" makes the problem much much worse. This is another area I hope to see (or even drive) pedagogical improvement in, for what it's worth.
1/2

@arXiv_qbioNC_bot@mastoxiv.page
2025-08-05 08:16:00

Measuring the entropy of a neuron cell from its membrane current signal
Mahmut Akilli
arxiv.org/abs/2508.00968 arxiv.org/pdf/2508.00968

@arXiv_condmatmtrlsci_bot@mastoxiv.page
2025-08-05 10:49:20

Reducing critical current for spin-transfer-torque-induced magnetization reversal in CPP-GMR devices: effect of low damping and enhanced spin scattering asymmetry in $Co_2FeGa_{0.5}Ge_{0.5}$ Heusler alloy
Vineet Barwal, Hirofumi Suto, Yuya Sakuraba
arxiv.org/abs/2508.02101

Current view of the Madre fire from the California Valley camera.
Numerous aerial resources continue to work the fire, with additional still en route, including a 2nd VLAT (very large air tanker) which is en route from Washington State
share.watchduty.org/i/53616/re

@arXiv_csHC_bot@mastoxiv.page
2025-07-04 08:44:21

The Revolution Has Arrived: What the Current State of Large Language Models in Education Implies for the Future
Russell Beale
arxiv.org/abs/2507.02180

@khalidabuhakmeh@mastodon.social
2025-06-04 12:17:59

If you’re interested in the best current practices for securing #SPA apps, then you should tune into our livestream today. Applies to #react #angular

@arXiv_physicsfludyn_bot@mastoxiv.page
2025-08-05 10:11:20

Theoretical estimate and characteristics of electro-vortex flows in cylindrical electrodes
Swapnil Soni, Avishek Ranjan
arxiv.org/abs/2508.02297

@servelan@newsie.social
2025-07-04 19:00:33

The current holder of high office has shown himself to be unfit to lead a free and just society.
* He disrespects women, mocking survivors of violence and stripping away their rights.
* He fuels racism and white supremacy, scapegoating communities of color and denying their equality.
* He assaults free speech, attacking the press, punishing dissent, and spreading disinformation.

@cyrevolt@mastodon.social
2025-08-04 10:42:29

Listening to the current episode of the Unnamed RE podcast, I got to learn about #DeskThing, a project repurposing the otherwise defunct Spotify Car Thing.
While I really like to see hardware being saved from ending up as ewaste, I was surprised to learn that very specifically, #AMD

@underdarkGIS@fosstodon.org
2025-07-04 17:28:53

#PostDoc position in #GIScience at @…
Details:

@cosmos4u@scicomm.xyz
2025-06-05 12:47:09

Magnetic Reconnection–driven Energization of Protons up to ∼400 keV at the Near-Sun Heliospheric Current Sheet: #reconnection in the nascent solar wind: swri.org/newsroom/press-releas

@hynek@mastodon.social
2025-07-05 07:07:45

HAProxy’s “The State of SSL Stacks” is a depressing read.
After 2014 there was a brief period of hope for OpenSSL. Hope that was squashed by the disastrous 3.0 release & there’s little hope for improvement left.
The best current contender is AWS-LC of all things.
haproxy.com/blog/state-of-ssl…

@azonenberg@ioc.exchange
2025-07-04 00:20:42

Well this was a fun discovery.
Let's see how many of you get this right.
If you read MDIO address 0x0 of a gigabit Ethernet PHY and read the values in bits 13/6 and 8 (speed and duplex state), do you get:
1) The last value you wrote to the register, regardless of actual link conditions
2) The actual current speed/duplex state the PHY is operating in
3) Something else / undefined

@penguin42@mastodon.org.uk
2025-08-03 23:49:53

I've switched my keyboard/mouse sharing to 'deskflow'. It seems to be the current descendent of Synergy; it's timeline page is insanely crazy:
github.com/deskflow/deskflow/w
Why Deskflow? Well, I upgraded one machine to

@brian_gettler@mas.to
2025-07-04 10:55:38

This week's #JukeboxFridayNight theme is #FindingFreedom, songs about finding freedom or claiming independence. On the Fourth of July, this one goes out to my birth country's current ruling class.
The Coup, "Piss on Your Grave" (1998)

@deprogrammaticaipsum@mas.to
2025-05-05 17:53:45

"The good news is, those same software workers can still influence the state of the world in a positive light. In the pages of this magazine, now celebrating its fifth year of existence, we have tried to highlight the various ways they can do this:
By promoting a healthy dialogue between management and software engineers.
By showing empathy with one another and with mankind.
By unionizing and fighting against atrocious work conditions."

@jtk@infosec.exchange
2025-07-05 13:03:01

Weekend Reads
* A new RPKI design arxiv.org/abs/2507.01465
* Finding New IP KVMs runzero.com/blog/oob-p1-ip-kvm/

@samvarma@fosstodon.org
2025-08-04 22:34:02

Current mission: get the finger picking pattern for "Dust in the Wind" into muscle memory... before attempting to change chords underneath it

@arXiv_condmatstatmech_bot@mastoxiv.page
2025-07-03 08:23:30

Thermodynamic bound on current fluctuations in coherent conductors
Kay Brandner, Keiji Saito
arxiv.org/abs/2507.01214

@chrysn@chaos.social
2025-06-05 20:17:33

systemd definitely does get many things right. My current favorite is how it sets the system resolver to loopback and provides an own DNS server.
Common Linux tradition was to tell processes to use getaddrinfo, where nsswitch then provides configurable backends. That means that every process goes through loading /etc/nsswitch.conf, but worse, it reduces DNS to a terrible subset. Query SVCB records? tough luck, you're on your own.

@fell@ma.fellr.net
2025-06-05 16:00:38

Oh my goodness! You can enable login and logout sounds in KDE Plasma! 🎶
The Oxygen sound theme has such a nice jingle, too. It reminds me of the good old days. I'm keeping that.
You can enable it in Settings − Apps & Windows − Notifications − Login − Play a sound (See screenshot)
You can set a custom sound file, but a file from your current sound theme should already be default if there is one.

Screenshot of KDE Plasma Settings Menu → Apps & Windows → Notifications → Login → Play a sound
@pre@boing.world
2025-06-05 22:42:58

The fediverse is often full of drama with admins falling out with each other and defederations, and threats and tears.
Now, with the public spat between the Twitter admin and the TruthSocial admin, the rest of the world gets to enjoy a similar spectacle!
They can't defederate of course, because Twitter never became open enough and TruthSocial was already defederated by everyone as soon as it existed.
Only on Fedi can you get the full experience of a public spat and defederation, because only on Fedi can the admins really at-mention and and directly reply and take the final dramatic action of a flouce-defederation.
Trump fans who are Twitter users can't port their followers over to TruthSocial, and Turther Musk fans can't just migrate their account to Twitter.
They're stuck.
So you see Fedi really is the best when it comes to massive public spats between admins and this current admin-drama is only getting more attention because it's between two of the worst people in the world.
#fediverse #interInstanceDrama #adminFight

@Mediagazer@mstdn.social
2025-07-31 15:35:53

A US Senator secured $9.4M for 35 Native American radio stations and one TV station but the loss of CPB's systemwide support will make operating costs go up (Kathryn Squyres/Current)
current.org/2025/07/why-a-sena

@jerome@jasette.facil.services
2025-06-05 15:58:32

Had no idea it was happening.
Some of it is an hotel which is great to see but if the rest is built with very small condo sizes it will be a hard sell on the current market.
#condos #Toronto

@dougmerritt@mathstodon.xyz
2025-06-03 19:41:15

@…
"Balanced synapse-to-synapse short-term plasticity ensures constant transmitter release"
cell.com/current-biology/fullt

@NFL@darktundra.xyz
2025-06-05 00:56:25

Aaron Donald challenges Jared Verse to 'old man workout' as Rams stars exchange playful jabs

cbssports.com/nfl/news/aaron-d

@gwire@mastodon.social
2025-08-04 11:21:45

It's my opinion that Labour's current stated position that "everyone who disagrees with us is a paedo" might be effective with some Reform voters, but probably risks alienating others in the longer term, and will not improve the quality of discourse in the short term.

@arXiv_csCV_bot@mastoxiv.page
2025-06-04 07:58:38

MERIT: Multilingual Semantic Retrieval with Interleaved Multi-Condition Query
Wei Chow, Yuan Gao, Linfeng Li, Xian Wang, Qi Xu, Hang Song, Lingdong Kong, Ran Zhou, Yi Zeng, Yidong Cai, Botian Jiang, Shilin Xu, Jiajun Zhang, Minghui Qiu, Xiangtai Li, Tianshu Yang, Siliang Tang, Juncheng Li
arxiv.org/abs/2506.03144

@michabbb@social.vivaldi.net
2025-06-05 09:16:12

🛠️ Maintains #React-based #ink terminal UI while core engine gets performance boost
🔄 Current #TypeScript version continues receiving bugfixes during transition period
📦 Available now vi…

@arXiv_csLG_bot@mastoxiv.page
2025-06-05 10:58:49

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

@arXiv_csAI_bot@mastoxiv.page
2025-06-05 09:44:04

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

@arXiv_csLO_bot@mastoxiv.page
2025-06-04 13:35:19

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

@Techmeme@techhub.social
2025-06-03 11:30:47

Analysis: since his inauguration, President Trump posted 2,262 times on Truth Social in 132 days, 3x the volume of tweets in the same period of his first term (Washington Post)
washingtonpost.com/technology/

@arXiv_csCL_bot@mastoxiv.page
2025-07-04 09:42:51

Multimodal Mathematical Reasoning with Diverse Solving Perspective
Wenhao Shi, Zhiqiang Hu, Yi Bin, Yang Yang, See-Kiong Ng, Heng Tao Shen
arxiv.org/abs/2507.02804

@arXiv_condmatmtrlsci_bot@mastoxiv.page
2025-08-04 09:25:31

Atomic Interface Engineering of Battery Current Collectors via Ion Implantation
Yue Li, Xuanguang Ren, Xueting Feng, Lingcheng Kong, Fengping Luo, Yang Xu, Liu Qian, Yusheng Ye, Ziqiang Zhao, Xin Gao, Jin Zhang
arxiv.org/abs/2508.00236

@arXiv_mathRT_bot@mastoxiv.page
2025-06-03 07:39:25

Graded representations of current Lie superalgebras $\mathfrak{sl}(1|2)[t]$
Shushma Rani, Divya Setia
arxiv.org/abs/2506.01134

@arXiv_quantph_bot@mastoxiv.page
2025-07-04 10:11:31

Context-aware gate set tomography: Improving the self-consistent characterization of trapped-ion universal gate sets by leveraging non-Markovianity
Pablo Vi\~nas, Alejandro Bermudez
arxiv.org/abs/2507.02542

@arXiv_csSE_bot@mastoxiv.page
2025-06-05 07:22:07

Across Programming Language Silos: A Study on Cross-Lingual Retrieval-augmented Code Generation
Qiming Zhu, Jialun Cao, Xuanang Chen, Yaojie Lu, Hongyu Lin, Xianpei Han, Le Sun, Shing-Chi Cheung
arxiv.org/abs/2506.03535

@toxi@mastodon.thi.ng
2025-06-03 16:03:56

ETH Zurich published a fact sheet with their current insights about the devastating collapse of the Birch glacier and the destruction of Blatten last week...
Article (German):
ethz.ch/de/news-und-veranstalt

@saraislet@infosec.exchange
2025-06-03 22:35:21

"our engineers are bottoming out on this work"
"current state of DP work"
are things I wouldn't say in a work environment, but you do you

Trump's proposed budget is a fiscal tightening relative to current policy.
And it doesn't even include the extra tightening from tariffs.
x.com/firstadopter/status/1930

@arXiv_csPL_bot@mastoxiv.page
2025-06-04 07:24:41

Improving compiler support for SIMD offload using Arm Streaming SVE
Mohamed Husain Noor Mohamed, Adarsh Patil, Latchesar Ionkov, Eric Van Hensbergen
arxiv.org/abs/2506.02233

@aredridel@kolektiva.social
2025-07-03 16:20:34

And above all of this, even unrelated to the current march of technological whatever it is
Learn to be horrified by war.
Not at it being done badly, or asymmetrically, or with automation, or with "AI targeting" whatever that is, but all of it.

@arXiv_csRO_bot@mastoxiv.page
2025-06-04 07:52:15

Functionality Assessment Framework for Autonomous Driving Systems using Subjective Networks
Stefan Orf, Sven Ochs, Valentin Marotta, Oliver Conder, Marc Ren\'e Zofka, J. Marius Z\"ollner
arxiv.org/abs/2506.02922

@midtsveen@social.linux.pizza
2025-05-31 09:48:49

"The term anarcho-syndicalism first appeared as a derogatory commentary and an insult against certain working-class militants in the nineteenth century. It was often used to refer as a whole to the trade-union activities of individuals and groups who defined themselves as anarchists."

@arXiv_csCY_bot@mastoxiv.page
2025-07-03 09:06:00

AI and Remote Sensing for Resilient and Sustainable Built Environments: A Review of Current Methods, Open Data and Future Directions
Ubada El Joulani, Tatiana Kalganova, Stergios-Aristoteles Mitoulis, Sotirios Argyroudis
arxiv.org/abs/2507.01547

@cowboys@darktundra.xyz
2025-07-04 16:25:46

Recognizing Cowboys who not only wore The Star, but The Stripes as well insidethestar.com/recognizing-

@lightweight@mastodon.nzoss.nz
2025-06-03 03:55:05
Content warning: NZPol King's Birthday Honours

Seems a lot of very rich right-wing political donors/assholes were recommended for honours this year by NZ's current shithouse government: norightturn.blogspot.com/2025/

@arXiv_csCR_bot@mastoxiv.page
2025-08-05 11:51:11

FPEdit: Robust LLM Fingerprinting through Localized Knowledge Editing
Shida Wang, Chaohu Liu, Yubo Wang, Linli Xu
arxiv.org/abs/2508.02092

@arXiv_csDC_bot@mastoxiv.page
2025-06-04 07:40:37

Rethinking Dynamic Networks and Heterogeneous Computing with Automatic Parallelization
Ruilong Wu, Xinjiao Li, Yisu Wang, Xinyu Chen, Dirk Kutscher
arxiv.org/abs/2506.02787

@arXiv_eessIV_bot@mastoxiv.page
2025-06-04 13:43:05

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

@arXiv_hepth_bot@mastoxiv.page
2025-07-04 08:49:11

Examining the Anomalous Nature of Chiral Effects in Thermodynamics
R\'emy Larue, J\'er\'emie Quevillon, Diego Saviot
arxiv.org/abs/2507.02079

@servelan@newsie.social
2025-07-05 02:20:15

This is what a real President sounds like. Unlike the current occupant of the White House, President Barack Obama showed care and respect for all Americans—not just one political party. Happy 4th of July! : r/usa
reddit.com/r/usa/comments/1lru

“Before Trump, the review process was based on merit and impact.
Now, it’s like rolling the dice, because a Doge person has the final say,”
said one current program officer.
“There has never in the history of NSF been anything like this.
It’s disgusting what we’re being instructed to do.”

@arXiv_condmatstatmech_bot@mastoxiv.page
2025-06-03 07:48:52

Anomalous current fluctuations and mobility-driven clustering
Tanmoy Chakraborty, Punyabrata Pradhan
arxiv.org/abs/2506.00949

@arXiv_csCV_bot@mastoxiv.page
2025-07-04 10:22:11

Partial Weakly-Supervised Oriented Object Detection
Mingxin Liu, Peiyuan Zhang, Yuan Liu, Wei Zhang, Yue Zhou, Ning Liao, Ziyang Gong, Junwei Luo, Zhirui Wang, Yi Yu, Xue Yang
arxiv.org/abs/2507.02751

@arXiv_csAI_bot@mastoxiv.page
2025-07-04 07:31:41

Reasoning on a Budget: A Survey of Adaptive and Controllable Test-Time Compute in LLMs
Mohammad Ali Alomrani, Yingxue Zhang, Derek Li, Qianyi Sun, Soumyasundar Pal, Zhanguang Zhang, Yaochen Hu, Rohan Deepak Ajwani, Antonios Valkanas, Raika Karimi, Peng Cheng, Yunzhou Wang, Pengyi Liao, Hanrui Huang, Bin Wang, Jianye Hao, Mark Coates

@arXiv_csLG_bot@mastoxiv.page
2025-06-05 10:56:53

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

@arXiv_csLO_bot@mastoxiv.page
2025-06-04 07:22:14

Breaking Symmetries with Involutions
Michael Codish, Mikol\'a\v{s} Janota
arxiv.org/abs/2506.02903 arxiv.org/pdf/…

@arXiv_csCL_bot@mastoxiv.page
2025-08-04 09:58:10

GLiDRE: Generalist Lightweight model for Document-level Relation Extraction
Robin Armingaud, Romaric Besan\c{c}on
arxiv.org/abs/2508.00757

@arXiv_csSE_bot@mastoxiv.page
2025-07-04 09:28:21

Meta-Fair: AI-Assisted Fairness Testing of Large Language Models
Miguel Romero-Arjona, Jos\'e A. Parejo, Juan C. Alonso, Ana B. S\'anchez, Aitor Arrieta, Sergio Segura
arxiv.org/abs/2507.02533

@arXiv_csHC_bot@mastoxiv.page
2025-07-04 09:41:41

Haptic Biofeedback for Wakeful Rest: Does Stimulation Location Make a Difference?
Jueun Lee, Martin Flipe, Philipp Lepold, Tobias R\"oddiger, Michael Beigl
arxiv.org/abs/2507.02453

@arXiv_csRO_bot@mastoxiv.page
2025-06-05 09:47:14

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

@raiders@darktundra.xyz
2025-06-04 16:47:32

NFL Expert Has No Faith in Raiders’ Geno Smith heavy.com/sports/nfl/las-vegas]

@arXiv_csCR_bot@mastoxiv.page
2025-08-04 08:14:41

Preliminary Investigation into Uncertainty-Aware Attack Stage Classification
Alessandro Gaudenzi, Lorenzo Nodari, Lance Kaplan, Alessandra Russo, Murat Sensoy, Federico Cerutti
arxiv.org/abs/2508.00368

@arXiv_condmatmtrlsci_bot@mastoxiv.page
2025-07-04 08:45:21

Magnetic octupole Hall effect in heavy transition metals
Insu Baek, Seungyun Han, Hyun-Woo Lee
arxiv.org/abs/2507.02516

@arXiv_csCY_bot@mastoxiv.page
2025-07-04 07:36:41

Recourse, Repair, Reparation, & Prevention: A Stakeholder Analysis of AI Supply Chains
Aspen K. Hopkins, Isabella Struckman, Kevin Klyman, Susan S. Silbey
arxiv.org/abs/2507.02648

Here we are, in another moment rife with apocalyptic intensity, in a city trying to hold the line against the president it birthed through a shattering of democratic traditions and constitutional breaches.
Still, I can’t help but wonder what will put an end to this nostalgic moment.
We got a glimpse of what that might look like during New York’s Democratic mayoral primary on June 24, when the 33-year-old democratic socialist Zohran Mamdani crushed the former governor Andrew Cuomo. …

@arXiv_csAI_bot@mastoxiv.page
2025-06-05 09:37:48

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

@arXiv_csCV_bot@mastoxiv.page
2025-08-04 10:10:11

Revisiting Adversarial Patch Defenses on Object Detectors: Unified Evaluation, Large-Scale Dataset, and New Insights
Junhao Zheng, Jiahao Sun, Chenhao Lin, Zhengyu Zhao, Chen Ma, Chong Zhang, Cong Wang, Qian Wang, Chao Shen
arxiv.org/abs/2508.00649

@arXiv_csCL_bot@mastoxiv.page
2025-08-04 09:50:21

A Context-Aware Dual-Metric Framework for Confidence Estimation in Large Language Models
Mingruo Yuan, Shuyi Zhang, Ben Kao
arxiv.org/abs/2508.00600

The uncertainty over federal Medicaid funding appears to have claimed its first victim in Nebraska.
Community Hospital in McCook announced Wednesday that it will close Curtis Medical Center in Curtis,
winding down its services over the next several months.
"Unfortunately, the current financial environment,
👉driven by anticipated federal budget cuts to Medicaid,
has made it impossible for us to continue operating all of our services,
many of which have…

@arXiv_csSE_bot@mastoxiv.page
2025-06-05 07:24:34

VISCA: Inferring Component Abstractions for Automated End-to-End Testing
Parsa Alian, Martin Tang, Ali Mesbah
arxiv.org/abs/2506.04161

@arXiv_csHC_bot@mastoxiv.page
2025-08-05 10:48:20

How Many Times Do People Usually Experience Different Kinds of Stressors Each Day?
Sameer Neupane (University of Memphis), Mithun Saha (University of Memphis), David M. Almeida (The Pennsylvania State University), Santosh Kumar (University of Memphis)
arxiv.org/abs/2508.01553

@arXiv_csRO_bot@mastoxiv.page
2025-06-04 07:51:10

Geometric Visual Servo Via Optimal Transport
Ethan Canzini, Simon Pope, Ashutosh Tiwari
arxiv.org/abs/2506.02768 arxi…

@arXiv_csCR_bot@mastoxiv.page
2025-07-04 09:57:01

Early Signs of Steganographic Capabilities in Frontier LLMs
Artur Zolkowski, Kei Nishimura-Gasparian, Robert McCarthy, Roland S. Zimmermann, David Lindner
arxiv.org/abs/2507.02737

@arXiv_csCY_bot@mastoxiv.page
2025-06-05 07:16:45

Facts are Harder Than Opinions -- A Multilingual, Comparative Analysis of LLM-Based Fact-Checking Reliability
Lorraine Saju, Arnim Bleier, Jana Lasser, Claudia Wagner
arxiv.org/abs/2506.03655

@arXiv_csAI_bot@mastoxiv.page
2025-07-04 09:44:41

Iterated belief revision: from postulates to abilities
Paolo Liberatore
arxiv.org/abs/2507.02319 arxiv.org/pdf/2507.0…

@arXiv_csCL_bot@mastoxiv.page
2025-08-04 09:51:40

DACTYL: Diverse Adversarial Corpus of Texts Yielded from Large Language Models
Shantanu Thorat, Andrew Caines
arxiv.org/abs/2508.00619 arxi…

@arXiv_csCV_bot@mastoxiv.page
2025-06-04 14:50:11

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

@arXiv_csSE_bot@mastoxiv.page
2025-06-05 09:41:54

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

@arXiv_csRO_bot@mastoxiv.page
2025-06-05 07:24:02

OWMM-Agent: Open World Mobile Manipulation With Multi-modal Agentic Data Synthesis
Junting Chen, Haotian Liang, Lingxiao Du, Weiyun Wang, Mengkang Hu, Yao Mu, Wenhai Wang, Jifeng Dai, Ping Luo, Wenqi Shao, Lin Shao
arxiv.org/abs/2506.04217

@arXiv_csCY_bot@mastoxiv.page
2025-06-04 07:19:43

Will Agents Replace Us? Perceptions of Autonomous Multi-Agent AI
Nikola Balic
arxiv.org/abs/2506.02055 arxiv.org/pdf/…

@arXiv_csHC_bot@mastoxiv.page
2025-07-03 09:18:00

Spatial tangible user interfaces for cognitive assessment and training
Ehud Sharlin, Yuichi Itoh, Benjamin Watson, Yoshifumi Kitamura, Steve Sutphen, Lili Liu, Fumio Kishino
arxiv.org/abs/2507.01944

@arXiv_csCL_bot@mastoxiv.page
2025-07-04 09:33:31

Measurement of the Granularity of Vowel Production Space By Just Producible Different (JPD) Limens
Peter Viechnicki
arxiv.org/abs/2507.02744

Fire smoke from Canada
2025-06-01
#ClimateEmergency #Canada #USA

@arXiv_csSE_bot@mastoxiv.page
2025-06-03 17:29:38

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

@arXiv_csSE_bot@mastoxiv.page
2025-06-05 09:44:57

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

@arXiv_csSE_bot@mastoxiv.page
2025-06-04 07:38:55

A Multi-agent LLM-based JUit Test Generation with Strong Oracles
Qinghua Xu, Guancheng Wang, Lionel Briand, Kui Liu
arxiv.org/abs/2506.02943

@arXiv_csSE_bot@mastoxiv.page
2025-06-04 13:39:09

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