Hello!
I have a happy favour to ask.
Last year, I had a US intern working with us and she now is looking for help that you- good reader of this account- could give.
(She needs academic survey participants)
Check out her flyer below, click the link, and please RT
http…
To the genocide-loving German from mastodon.social who reported @… for being antisemitic:
Fuck you, you genocide-loving piece of shit, opposing genocide isn’t antisemitism. What you’re doing – conflating being anti-genocide with being antisemitic – is the greatest antisemitism as you’re de facto stating that all Jews are pro-genocide.
Shortest filling geodesics on hyperbolic surfaces
Yue Gao, Jiajun Wang, Zhongzi Wang
https://arxiv.org/abs/2506.12465 https://arxiv.o…
Real Non-Commutative Convexity I
David P. Blecher, Caleb McClure
https://arxiv.org/abs/2506.13512 https://arxiv.org/pdf/2506.13512
If the Iranian leadership has the feeling that Israel wants to completely destroy Iran's military capabilities, why wouldn't they do something extreme like attacking US bases in the region, destroy oil installations in the neighbourhood , close Hormuz etc, while they still have the capabilities... 🤔
There doesn't seem to be an opening for de-escalation for Iran?
#iran
EconGym: A Scalable AI Testbed with Diverse Economic Tasks
Qirui Mi, Qipeng Yang, Zijun Fan, Wentian Fan, Heyang Ma, Chengdong Ma, Siyu Xia, Bo An, Jun Wang, Haifeng Zhang
https://arxiv.org/abs/2506.12110
CMI-Bench: A Comprehensive Benchmark for Evaluating Music Instruction Following
Yinghao Ma, Siyou Li, Juntao Yu, Emmanouil Benetos, Akira Maezawa
https://arxiv.org/abs/2506.12285 …
I read "Then I Am Myself the World: What Consciousness Is and How to Expand It" by Christof Koch.
Interesting book which spends like 8 or 9 chapters detailing all the experiments which prove beyond much doubt that consciousness, and self awareness, is a thing done by a brain.
It describes how perception is a construction of a description, has a chapter called "computational mind"
And then spends the last two chapters describing why he thinks the mind can't be computed, because drugs have made him think experience is some kind of magic associated with highly interconnected causal structures.
Apparently, he thinks, once things become interconnected enough they become able to cause things independently of the physics running those connections.
Which is crazy, obviously. There's nothing causal in direct connections between neurons that isn't equally causal in modeled connections between virtual neurons.
All his evidence in the book from neural MRI scans to the effects of psychedelic drugs and symptoms of strokes and disease point to the brain simulating a virtual reality which is the basis of perception.
That simulated world in which we live is full of colour and shape and sounds and emotions and millions of mental constructs that are built to be correlated by the senses with the outside world, but are not equal to the world itself. We live in a dream constructed to correlate with reality.
But then instead of taking the next step: That consciousness itself is a property of a simulated being inside that mental model of the universe, a property which the brain simulates and applies to the virtual self that's doing the experiencing inside that model, he jumps towards some magic implying pan-psychism or that sufficiently interconnected networks become causally self-complete for some reason nobody can fathom.
Sure, colour and shape and emotions are all made up by the brain but experience can't be! For some reason.
You see in truth dualism is false, in that there is no spirit realm in which ghosts animate the matter of the body somehow.
Yet also, dualism is true, in that there is a simulated mental reality which we live in, computed by the brain in which all perception and experience are created, which is related-to but separate-from the unfolding complicated dance of energy that is the universe our bodies interact with.
People take some DMT trip, and the model of the universe emulated by their brain collapses and breaks. Their virtual simulated self inside their mind has these experiences of being one with the universe or the experience of feeling dead yet conscious or whatever, and these hippies think that the broken down simulated experience is real and reflects how consciousness is more fundamental than the atoms that make up the neurons in their brain.
Instead of realizing it shows them that their experienced universe is a simulacrum, they think they get a more direct experience of reality somehow. A consciousness more pure than any mere base atom.
"Then I am myself the world" is a great title. Everything you ever experience is created and simulated in your brain like a dream, the whole universe is inside your head. Even the fact of experience itself.
But that isn't the conclusion Koch reaches somehow, he just jumps from describing the evidence that this is so straight into ascribing super-causal magic consciousness to particular arrangements of atoms that integrated information theory suggest have high correlation, and thinks therefore conciousness is itself the entire universe.
Ah well, fun book. I like arguing in my head with authors that are wrong.
#reading #books #consciousness #thenIAmMyselfTheWorld
Some fun facts about #Python limited API / stable ABI.
1. #CPython supports "limited API". When you use it, you get extensions that are compatible with the specified CPython version and versions newer than that. To indicate this compatibility, such extensions use `.abi3.so` suffix (or equivalent) rather than the usual `.cpython-313-x86_64-linux-gnu.so` or alike.
2. The actual support is split between CPython itself and #PEP517 build systems. For example, if you use #setuptools and specify `py_limited_api=` argument to the extension, setuptools will pass appropriate C compiler flags and swap extension suffix. There's a similar support in #meson, and probably other build systems.
3. Except that CPython freethreading builds don't support stable ABI right now, so building with "limited API" triggers an explicit error from the headers. Setuptools have opted for building explicit about this: it emits an error if you try to use `py_limited_api` on a freethreading interpreter. Meson currently just gives the compile error. This implies that package authors need to actively special-case freethreading builds and enable "limited API" conditionally.
4. A some future versions of CPython will support "limited API" in freethreading builds. I haven't been following the discussions closely, but I suspect that it will only be possible when you target that version or newer. So I guess people will need to be building two stable ABI wheels for a time — one targeting older Python versions, and one targeting newer versions plus freethreading. On top of that, all these projects will need to update their "no 'limited API' on freethreading" conditions.
5. And then there's #PyPy. PyPy does not feature a stable ABI, but it allows you to build extensions using "limited API". So setuptools and meson just detect that there is no `.abi3.so` on PyPy, and use regular suffix for the extensions built with "limited API".