18 Followers
89 Following
115 Posts
Eat Code Sleep
keyC44277AB1252CE81C1122EE177CF1D41EE6E1B47
open_slate: A Powerful and Private 2-in-1 Tablet by Brax Technologies PBC - Indiegogo

Meet open_slate: a poweful 2-in-1 tablet with modular design, native Linux and Android support and hardware killswitches.

How far back in time can you understand English?

An experiment in language change

Dead Language Society

The RustWeek 2026 schedule, including the talk details for RustWeek 2026, is now published!

https://2026.rustweek.org/schedule/tuesday/
https://2026.rustweek.org/schedule/wednesday/

Don't forget to buy your ticket!

#rustweek2026 #rust

Talk schedule - RustWeek 2026

RustWeek 2026, The Netherlands - May 18 - 23 2026. The world's biggest Rust conference returns to beautiful Utrecht, welcoming over 900+ community members, professionals and the maintainers of Rust.

Finally found a solution to a problem called: “How do I switch between two phones without having to go trough excruciating setup process over and over again”?

Granted, this probably isn’t a problem for people who checks notes don’t try to mainline their phones, but it was still annoying.

Reading about how Android stores information led me to deprecated utilities, people calling each other idiots on xda-developers (as it is tradition) and so on.

However, I finally figured it out. I can’t guarantee it would work across different Android builds, I tested this on LineageOS. No stupid apps needed.

#!/usr/bin/env zsh export SRC=<source_device> export DEST=<destination_device> adb -s $SRC root adb -s $SRC shell 'tar -cvzf /data/local/tmp/source.tar.gz \ /data/system/users \ /data/system/package* \ /data/media \ /data/data \ /data/app \ /storage/emulated/* \ /data/user_de/* \ /data/misc/profiles/* \ /data/misc/apexdata \ /data/misc_ce/*/apexdata \ /data/misc_de/*/apexdata' adb -s $SRC pull /data/local/tmp/source.tar.gz . adb -s $SRC shell 'rm /data/local/tmp/source.tar.gz' adb -s $DEST root adb -s $DEST push source.tar.gz /data/local/tmp/ adb -s $DEST shell 'tar -xvf /data/local/tmp/source.tar.gz' adb -s $DEST shell 'rm /data/local/tmp/source.tar.gz' adb -s $DEST shell 'rm -rf /data/dalvik-cache/arm/*' adb -s $DEST shell 'rm -rf /data/dalvik-cache/arm64/*' adb -s $DEST shell 'rm -rf /data/misc/apexdata/com.android.art/dalvik-cache' adb -s $DEST shell 'sync; echo b > /proc/sysrq-trigger' rm source.tar.gz printf 'Heads up! Data migration finished.\07\n'
Today's digital #sovereignty data point, courtesy of #SWH2026. This chart shows who is hosting French research projects but I've no doubt it is representative of other sectors.

Open-source self-driving for 325 car models from 27 brands

Link: https://comma.ai
Discussion: https://news.ycombinator.com/item?id=46740029

comma.ai — make driving chill

An AI upgrade for your car

I've slept for 9 hours and have enough cognitive capacity to change the universe
People are becoming the average of the 5 AIs they spend time with.

people are MISSING OUT on U+2044 FRACTION SLASH!

9400723⁄205473
👆 this does NOT use sub-/superscript letters!

[to clarify, it gets rendered as sub/superscript in a lot of places even though it’s not sub/superscript characters]

@eramdam still can’t believe they called the low level virtual machine WASM and the weird assembler LLVM