@plosbiology.org is formalizing its longβstanding practice of asking authors to share research code, introducing a mandatory #codeβsharing policy and clarifying what is meant by code sharing.
Learn more and find guidance on best practice: plos.io/4reyX3v
09.03.2026 17:55
π 35
π 18
π¬ 1
π 2
Last week to apply for a 3yr postdoc with @tsawallis.bsky.social, Frank JΓ€kel and myself. Deadline is March 15th hmc-lab.com/TAMPostdoc.h...
09.03.2026 11:02
π 17
π 13
π¬ 0
π 0
π§΅ Some personal news:
My new book, ON COURAGE β with Pulitzer Prize-winning journalist @juliaangwin.com β is available for pre-order NOW (out June 30).
Itβs a deeply reported manual with sixteen lessons for how each of us can defy authoritarianism.
Pre-order: www.harpercollins.com/products/on-...
09.03.2026 15:03
π 220
π 67
π¬ 2
π 6
06.03.2026 17:45
π 34
π 10
π¬ 1
π 2
ok, internet friends. let's say you have a big grant proposal or other writing project requiring you to put your head down and crank out a shit ton of text. what music are you blasting
this is a judgment-free zone, I want all your best recs no matter how embarrassing
26.02.2026 00:31
π 22
π 1
π¬ 54
π 2
Album cover for The Bird of a Thousand Voices by Tigran Hamasyan.
03.03.2026 08:19
π 0
π 0
π¬ 0
π 0
Album cover of Ultrahang, album by Chris Potterβs Underground group
I generally canβt listen to music with lyrics while writing. Modern jazz or death metal are my go tos.
03.03.2026 08:14
π 1
π 0
π¬ 1
π 0
Postdoc position -- Social Learning and Cultural Evolution
Postdoc position -- Social Learning and Cultural Evolution
posted on March 2, 2026
We are currently seeking a highly motivated individual...
π Postdoc Alert! Are you passionate about social learning & cultural evolution? @dominikdeffner.bsky.social & I have a 3-year position with freedom to develop your research and work on cutting-edge multiplayer and immersive experiments. Apply by March 30! hmc-lab.com/SocialLearni... Pls share π
02.03.2026 10:45
π 59
π 62
π¬ 2
π 3
New paper on a long-shot I've been obsessed with for a year:
How much are AI reasoning gains confounded by expanding the training corpus 10000x? How much LLM performance is down to "shallow" generalisation (approximate pattern-matching to highly-related training data)?
t.co/CH2vP0Y7OF
27.02.2026 17:25
π 63
π 16
π¬ 1
π 2
LLMs should be a private cognitive tool, like a calculator, which is not currently possible under our existing model of corporate AI. Crucially, they do not think and have no agency, again in the same way as a calculator
26.02.2026 09:45
π 33
π 5
π¬ 3
π 3
Four panels showing how an image of a kiwi fruit can be filtered to understand contrast energy.
So @reubenrideaux.bsky.social and I decided to run an image-processing workshop at this year's EPC/APCV. We will be teaching people how to compute the contrast energy of kiwi fruit, I guess. Sign up now: visualneuroscience.auckland.ac.nz/epc-apcv-2026/
@expsyanz.bsky.social
25.02.2026 01:35
π 15
π 6
π¬ 1
π 1
bsky.app/profile/tsaw...
I was already an LLM skeptic, and then this happened to my student and I.
25.02.2026 05:48
π 1
π 0
π¬ 2
π 0
Anthropic was supposed to be the "good" one, right?
23.02.2026 13:36
π 72
π 23
π¬ 4
π 0
Why do children struggle to recognise objects in cluttered scenes more than adults? Our new paper looks at the development of visual acuity and crowding across childhood, and the way the visual system fine tunes our ability to see detail: www.nature.com/articles/s41...
23.02.2026 17:11
π 36
π 17
π¬ 2
π 1
Come work with @tsawallis.bsky.social, Frank JΓ€kel and myself! 3 yr Postdoc on category learning w/ structured, program-like representations. Funded by the www.theadaptivemind.de Excellence Cluster! Deadline is Mar 15th, details π Please share widely π
23.02.2026 12:30
π 15
π 9
π¬ 0
π 1
Image shows a code example for the Python package introduced in this post.
The code is as following (for screenreaders):
import mitsuba_scene_description as msd
import mitsuba as mi
mi.set_variant("llvm_ad_rgb")
# Define components
diffuse = msd.SmoothDiffuseMaterial(reflectance=msd.RGB([0.8, 0.2, 0.2]))
ball = msd.Sphere(
radius=1.0,
bsdf=diffuse,
to_world=msd.Transform().translate(0, 0, 3).scale(0.4),
)
cam = msd.PerspectivePinholeCamera(
fov=45,
to_world=msd.Transform().look_at(
origin=[0, 1, -6], target=[0, 0, 0], up=[0, 1, 0]
),
)
integrator = msd.PathTracer()
emitter = msd.ConstantEnvironmentEmitter()
# builder pattern
scene = (
msd.SceneBuilder()
.integrator(integrator)
.sensor(cam)
.shape("ball", ball)
.emitter("sun", emitter)
.build()
)
# or
scene = msd.Scene(
integrator=integrator,
sensors=cam, # also accepts a list for multi-sensor setups
shapes={"ball": ball},
emitters={"sun": emitter},
)
mi.load_dict(scene.to_dict())
# will return:
{'ball': {'bsdf': {'reflectance': {'type': 'rgb', 'value': [0.8, 0.2, 0.2]},
'type': 'diffuse'},
'radius': 1.0,
'to_world': Transform[
matrix=[[0.4, 0, 0, 0],
[0, 0.4, 0, 0],
[0, 0, 0.4, 1.2],
[0, 0, 0, 1]],
...
],
'type': 'sphere'},
'integrator': {'type': 'path'},
'sensor': {'fov': 45,
'to_world': Transform[...],
'type': 'perspective'},
'sun': {'type': 'constant'},
'type': 'scene'}
G'day!
I've just published a new version of mitsuba-scene-description to GitHub and PyPI: github.com/pixelsandpoi...
I've changed the generation process, so you no longer need to manually clone and build the API yourself. The Mitsuba plugin API will now be generated during package build.
1/x
23.02.2026 10:09
π 4
π 2
π¬ 1
π 0
The Adaptive Mind β Uncovering how the human mind adapts to ever-changing conditions
The position is for three years and is funded by the excellence cluster The Adaptive Mind (theadaptivemind-excellencecluster.de).
Please repost!
23.02.2026 08:53
π 3
π 0
π¬ 1
π 0
**Postdoc position in human category learning**
@thecharleywu.bsky.social, Frank JΓ€kel and I are seeking a postdoctoral fellow to lead a joint project on human category learning at the Centre for Cognitive Science @tuda.bsky.social.
www.career.tu-darmstadt.de/tu-darmstadt...
23.02.2026 08:53
π 39
π 28
π¬ 1
π 1
βTraining a human takes 20 years of foodβ
22.02.2026 12:54
π 2500
π 625
π¬ 41
π 14
Anyway. Kudos to @niallw.bsky.social for noticing the error, and my doctoral student @ben.graphics for quickly and transparently fixing it.
20.02.2026 10:24
π 2
π 0
π¬ 0
π 0
Indeed. Iβm already an LLM skeptic for moral and pedagogical reasons, but I also havenβt adopted a hard ban or similar. If you get stuff-ups like this in such an innocuous case, it makes me extremely skeptical of larger and more important uses.
20.02.2026 10:24
π 2
π 0
π¬ 1
π 0
@niallw.bsky.social pointed out an error in a preprint of ours that contained a fabricated citation. The cause: we used Claude to fix an arxiv upload / compile error. It decided the best way to do that was to remove an actual citation and replace it with a fabricated one.
bsky.app/profile/ben....
20.02.2026 07:39
π 12
π 5
π¬ 2
π 1
Are you certain itβs not also altering the underlying data for βnicerβ display?
20.02.2026 07:33
π 1
π 0
π¬ 1
π 0
PNAS
Proceedings of the National Academy of Sciences (PNAS), a peer reviewed journal of the National Academy of Sciences (NAS) - an authoritative source of high-impact, original research that broadly spans...
Bots have made their way to Prolific experiments. Our lab has stopped online testing of adults entirely now for this reason - we want to know if what we study is real. Probably data collected 2-3 years ago are ok, but moving forward we just can't know. www.pnas.org/doi/10.1073/...
19.02.2026 15:14
π 170
π 98
π¬ 6
π 11
Unfortunately, I left Claude fixing Arxiv compilation errors. Apparently, it changed a citation in the process (that was right in v1 of the paper). I am currently reviewing all the citations now again by hand and preparing a new version that fixes these. I will also post them here:
1/x
19.02.2026 09:48
π 7
π 1
π¬ 3
π 3
Great! Yes, I see loads of potential.
17.02.2026 06:28
π 1
π 0
π¬ 0
π 0
Sorry for the wait (been to China for 4 weeks between the years), but I finally managed to update the pre-print with more results and the code is now also available on: github.com/ag-perceptio...
If you run into issues, let me know.
16.02.2026 17:45
π 4
π 2
π¬ 1
π 1
Wow, hello Bluesky! We're the Brisbane Experimental Psychology Student Initiative (BEPSI)
We host monthly meetings with fresh research (cog, dev, comp, clin, neuro, forensic, psychophys) followed by wholesome networking (summer lawn bowls, so good)
1st meeting Weds 27th Feb 4pm - more soon! π§ π€
16.02.2026 06:24
π 12
π 3
π¬ 0
π 0