Readit News logoReadit News
mixedmath commented on Leaving Gmail for Mailbox.org   giuliomagnifico.blog/post... · Posted by u/giuliomagnifico
mixedmath · a day ago
> This was a tough decision, having used Gmail since 2007/2008. However, I had to draw the line and stop giving Google my data for free. > > The problem with email is that everything is transmitted in plain text.

Interestingly, one of my biggest problems with Gmail is that they don't allow actual plaintext. I used to routinely collaborate with developers who were vision-impaired, and the official Gmail phone app wouldn't let me send them plaintext email. Instead, it was some sort of HTML thing. Unfortunately, we sometimes sent code snippets to each other over email, and though admittedly it looked more or less fine, Gmail changed the underlying representation enough that my collaborators' screen readers would mess up on the parsing.

This led to me leaving Gmail on my phone, which led ultimately to me leaving Gmail entirely.

mixedmath commented on AI for Scientific Search   arxiv.org/abs/2507.01903... · Posted by u/omarsar
Davidzheng · 2 months ago
How do you view o3? I personally find it superior to google search almost always. Do you find that it often misses key references? (also mathematician)
mixedmath · 2 months ago
Google is completely inadequate at mathematical search. But here is a concrete problem that no search seems to handle: given some complicated integral (say, some contour integral involving a K-Bessel function), find where it appears in the literature.

Most search will totally fail, because this is made of math symbols. Embedding-based search will give various related things involving, say, integrals and Bessel functions. But then I end up opening Gradshteyn and Ryzhik and trying to find where in this book the relevant terrible integrals appear.

This is a common experience for analytic number theorists. And it's a lousy experience.

mixedmath commented on AI for Scientific Search   arxiv.org/abs/2507.01903... · Posted by u/omarsar
mixedmath · 2 months ago
From the title, I had thought that this would be a new tool for searching science, such as searching the arxiv. But this is actually a survey.

I quote the conclusion of the survey:

---

In conclusion, rapid advancements in artificial intelligence, particularly large language models like OpenAI-o1 and DeepSeek-R1, have demonstrated substantial potential in areas such as logical reasoning and experimental coding. These developments have sparked increasing interest in applying AI to scientific research. However, despite the growing potential of AI in this domain, there is a lack of comprehensive surveys that consolidate current knowledge, hindering further progress. This paper addresses this gap by providing a detailed survey and unified framework for AI4Research. Our contributions include a systematic taxonomy for classifying AI4Research tasks, identification of key research gaps and future directions, and a compilation of open-source resources to support the community. We believe this work will enhance our understanding of AI’s role in research and serve as a catalyst for future advancements in the field.

---

I jumped at this because I'm a mathematician who has been complaining about the lack of effective mathematical search for several years.

mixedmath commented on Use keyword-only arguments in Python dataclasses   chipx86.blog/2025/06/29/t... · Posted by u/Bogdanp
meander_water · 2 months ago
You can also explicitly specify which arguments need to be keyword only using the KW_ONLY sentinel type annotation:

  from dataclasses import KW_ONLY

  @dataclass
  class Point:
      x: float
      _: KW_ONLY
      y: float
      z: float

  p = Point(0, y=1.5, z=2.0)

mixedmath · 2 months ago
I've never seen this before. But yes, this does work. And that's very nice.

Thank you for the tip.

mixedmath commented on Web Embeddable Common Lisp   turtleware.eu/static/past... · Posted by u/todsacerdoti
jinlisp · 2 months ago
I was going to ask if maxima (a symbolic computation system) can be implemented in the browser, but it was answered four months ago [1]

[1] https://news.ycombinator.com/item?id=42853528

mixedmath · 2 months ago
Do you use maxima? Would you say it's still worth using and learning?
mixedmath commented on Mathematician solves algebra's oldest problem using intriguing number sequences   phys.org/news/2025-05-mat... · Posted by u/amichail
Qem · 4 months ago
Is this something with potential to change mathematics as taught in schoolbooks, or just some sort of galactic algorithm[1] or research niche that will never spread beyond the expertise domain of half a dozen research groups across the whole world?

[1] https://en.wikipedia.org/wiki/Galactic_algorithm

mixedmath · 4 months ago
This will not be taught in textbooks. Wildberger works in a math world where "infinity" or even "really really big numbers" don't exist. There is nothing mathematically wrong about that world, but others (like me) do not find this problem context to be a useful framework to work in.
mixedmath commented on Regime Change in the West   lrb.co.uk/the-paper/v47/n... · Posted by u/PaulHoule
mixedmath · 4 months ago
I haven't read anything from the London Review of Books before. But this seems excellent. Is this indicative of their general quality?
mixedmath commented on Trees not profits: we're giving up our right to ever sell Ecosia (2018)   blog.ecosia.org/trees-not... · Posted by u/erlend_sh
conaclos · 5 months ago
Does anyone use Ecosia every day? How does it compare with DuckDuckGo and Qwant?
mixedmath · 5 months ago
I've been using it as my primary search engine for a couple of months. It's not great as a search engine. I find their locality of search to not be well-supported (e.g. the search "food near me" works good in google and not great in ecosia).

Ecosia doesn't emphasize recent events, news, or posts in search results as much as I'm used to --- but I haven't decided if this is good or bad.

It's not so bad that I've changed. But I do sometimes use a better search engine when I want better results.

mixedmath commented on MathB.in Is Shutting Down   susam.net/mathbin-is-shut... · Posted by u/susam
mixedmath · 6 months ago
I made a partial replacement that doesn't allow user-submitted content at https://davidlowryduda.com/static/MathShare/. It just stores the content in the URL, and is limited by URL size limits. In practice this means you have approximately one page of text.

I wrote about making this at https://davidlowryduda.com/mathshare/. I was trying out the LLM interaction that made it near the top of HN recently, and it worked very well.

mixedmath commented on Bunster: Compile bash scripts to self contained executables   github.com/yassinebenaid/... · Posted by u/thunderbong
mixedmath · 7 months ago
I'm confronted with a similar problem frequently. I have a growing bash script and it's slowly growing in complexity. Once bash scripts become sufficiently long, I find editing them later to be very annoying.

So instead, at some point I change the language entirely and write a utility in python/lua/c/whatever other language I want.

As time goes on, my limit for "sufficient complexity" to justify leaving bash and using something like python has dropped radically. Now I follow the rule that as soon as I do something "nontrivial", it should be in a scripting language.

As a side-effect, my bash scripting skills are worse than they once were. And now the scope of what I consider "trivial" is shrinking!

u/mixedmath

KarmaCake day1370January 11, 2015
About
[ my public key: https://keybase.io/davidlowryduda; my proof: https://keybase.io/davidlowryduda/sigs/fJDhN1ncn9yUYjFl2nw2r-mskFwuufeYD-dczdCuXpE ]

I'm a mathematician researching analytic number theory and contributing to math software, like the LMFDB, sage, and the numpy stack.

View Original