frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

Mini NASes marry NVMe to Intel's efficient chip

https://www.jeffgeerling.com/blog/2025/mini-nases-marry-nvme-intels-efficient-chip
183•ingve•4h ago

Comments

koeng•3h ago
Are there any mini NAS with ECC ram nowadays? I recall that being my personal limiting factor
amluto•3h ago
Yes, but not particularly cheap: https://www.asustor.com/en/product?p_id=89
MarkSweep•3h ago
Asustor has some cheaper options that support ECC. Though not as cheap as those in the OP article.

FLASHSTOR 6 Gen2 (FS6806X) $1000 - https://www.asustor.com/en/product?p_id=90

LOCKERSTOR 4 Gen3 (AS6804T) $1300 - https://www.asustor.com/en/product?p_id=86

brookst•3h ago
The Aoostar WTR max is pretty beefy, supports 5 nvme and 6 hard drives, and up to 128GB of ECC ram. But it’s $700 bare bones, much more than these devices in the article.
Takennickname•3h ago
Aoostar WTR series is one change away from being the PERFECT home server/nas. Passing the storage controller IOMMU to a VM is finicky at best. Still better than the vast majority of devices that don't allow it at all. But if they do that, I'm in homelab heaven. Unfortunately, the current iteration cannot due to a hardware limitation in the AMD chipset they're using.
brookst•3h ago
Good info! Is it the same limitation on WTR pro and max? The max is an 8845hsv versus the 5825u in the pro.
vbezhenar•3h ago
HP Microservers.
dontlaugh•3h ago
I got myself a gen8, they’re quite cheap. They do have ECC RAM and take 3.5” hard drives.

At some point though, SSDs will beat hard drives on total price (including electricity). I’d like a small and efficient ECC option for then.

Havoc•3h ago
One of the arm ones is yes. Can't for the life of me remember which though - sorry - either something in bananapi or lattepanda part of universe I think
qwertox•3h ago
Minisforum N5 Pro Nas has up to 96 GB of ECC RAM

https://www.minisforum.com/pages/n5_pro

https://store.minisforum.com/en-de/products/minisforum-n5-n5...

    no RAM 1.399€
  16GB RAM 1.459€
  48GB RAM 1.749€
  96GB RAM 2.119€
96GB DDR5 SO-DIMM costs around 200€ to 280€ in Germany.

https://geizhals.de/?cat=ramddr3&xf=15903_DDR5~15903_SO-DIMM...

I wonder if that 128GB kit would work, as the CPU supports up to 256GB

https://www.amd.com/en/products/processors/laptop/ryzen-pro/...

I can't force the page to show USD prices.

wyager•2h ago
Is this "full" ECC, or just the baseline improved ECC that all DDR5 has?

Either way, on my most recent NAS build, I didn't bother with a server-grade motherboard, figuring that the standard consumer DDR5 ECC was probably good enough.

layer8•2h ago
The DDR5 on-die ECC doesn’t report memory errors back to the CPU, which is why you would normally want ECC RAM in the first place. Unlike traditional side-band ECC, it also doesn’t protect the memory transfers between CPU and RAM. DDR5 requires the on-die ECC in order to still remain reliable in face of its chip density and speed.
cuu508•3h ago
What are the non-Intel mini NAS options for lower idle power?

I know of FriendlyElec CM3588, are there others?

Havoc•3h ago
I've been running one of these quad nvme mini-NAS for a while. They're a good compromise if you can live with no ECC. With some DIY shenanigans they can even run fanless

If you're running on consumer nvmes then mirrored is probably a better idea than raidz though. Write amplification can easily shred consumer drives.

turnsout•2h ago
I’m a TrueNAS/FreeNAS user, currently running an ECC system. The traditional wisdom is that ECC is a must-have for ZFS. What do you think? Is this outdated?
evanjrowley•1h ago
One way to look at it is ECC has recently become more affordable due to In-Band ECC (IBECC) providing ECC-like functionality for a lot of newer power efficient Intel CPUs.

https://www.phoronix.com/news/Intel-IGEN6-IBECC-Driver

Not every new CPU has it, for example, the Intel N95, N97, N100, N200, i3-N300, and i3-N305 all have it, but the N150 doesn't!

It's kind of disappointing that the low power NAS devices reviewed here, the only one with support for IBECC had a limited BIOS that most likely was missing this option. The ODROID H4 series, CWWK NAS products, AOOSTAR, and various N100 ITX motherboards all support it.

stoltzmann•1h ago
That traditional wisdom is wrong. ECC is a must-have for any computer. The only reason people think ECC is mandatory for ZFS is because it exposes errors due to inherent checksumming and most other filesystems don't, even if they suffer from the same problems.
magicalhippo•1h ago
Been running without for 15+ on my NAS boxes, built using my previous desktop hardware fitted with NAS disks.

They're on 24/ and run monthly scrubs, as well as monthly checksum verification of my backup images, and not noticed any issues so far.

I had some correctable errors which got fixed when changing SATA cable a few times, and some from a disk that after 7 years of 24/7 developed a small run of bad sectors.

That said, you got ECC so you should be able to monitor corrected memory errors.

Matt Ahrens himself (one of the creators of ZFS) had said there's nothing particular about ZFS:

There's nothing special about ZFS that requires/encourages the use of ECC RAM more so than any other filesystem. If you use UFS, EXT, NTFS, btrfs, etc without ECC RAM, you are just as much at risk as if you used ZFS without ECC RAM. Actually, ZFS can mitigate this risk to some degree if you enable the unsupported ZFS_DEBUG_MODIFY flag (zfs_flags=0x10). This will checksum the data while at rest in memory, and verify it before writing to disk, thus reducing the window of vulnerability from a memory error.

I would simply say: if you love your data, use ECC RAM. Additionally, use a filesystem that checksums your data, such as ZFS.

https://arstechnica.com/civis/viewtopic.php?f=2&t=1235679&p=...

matja•1h ago
ECC is a must-have if you want to minimize the risk of corruption, but that is true for any filesystem.

Sun (and now Oracle) officially recommended using ECC ever since it was intended to be an enterprise product running on 24/7 servers, where it makes sense that anything that is going to be cached in RAM for long periods is protected by ECC.

In that sense it was a "must-have", as business-critical functions require that guarantee.

Now that you can use ZFS on a number of operating systems, on many different architectures, even a Raspberry Pi, the business-critical-only use-case is not as prevalent.

ZFS doesn't intrinsically require ECC but it does trust that the memory functions correctly which you have the best chance of achieving by using ECC.

Havoc•53m ago
Ultimately comes down to how important the data is to you. It's not really a technical question but one of risk tolerance
jauntywundrkind•3h ago
Would be nice to see what those little N100 / N150 (or big brother N305 / N350) can do with all that NVMe. Raw throughput is pretty whatever but hypothetically if the CPU isn't too gating, there's some interesting IOps potential.

Really hoping we see 25/40GbaseT start to show up, so the lower market segments like this can do 10Gbit. Hopefully we see some embedded Ryzens (or other more PCIe willing contendors) in this space, at a value oriented price. But I'm not holding my breath.

dwood_dev•3h ago
The problem quickly becomes PCIe lanes. The N100/150/305 only have 9 PCIe 3.0 lanes. 5Gbe is fine, but to go to 10Gbe you need x2.

Until there is something in this class with PCIe 4.0, I think we're close to maxing out the IO of these devices.

geerlingguy•3h ago
Not only the lanes, but putting through more than 6 Gbps of IO on multiple PCIe devices on the N150 bogs things down. It's only a little faster than something like a Raspberry Pi, there are a lot of little IO bottlenecks (for high speed, that is, it's great for 2.5 Gbps) if you do anything that hits CPU.
dwood_dev•2h ago
The CPU bottleneck would be resolved by the Pentium Gold 8505, but it still has the same 9 lanes of PCIe 3.0.

I only came across the existence of this CPU a few months ago, it is Nearly the same price class as a N100, but has a full Alder Lake P-Core in addition. It is a shame it seems to only be available in six port routers, then again, that is probably a pretty optimal application for it.

lostlogin•1h ago
This is what baffles me - 2.5gbps.

I want smaller, cooler, quieter, but isn’t the key attribute of SSDs their speed? A raid array of SSDs can surely achieve vastly better than 2.5gbps.

transpute•3h ago
Intel N150 is the first consumer Atom [1] CPU (in 15 years!) to include TXT/DRTM for measured system launch with owner-managed keys. At every system boot, this can confirm that immutable components (anything from BIOS+config to the kernel to immutable partitions) have the expected binary hash/tree.

TXT/DRTM can enable AEM (Anti Evil Maid) with Qubes, SystemGuard with Windows IoT and hopefully future support from other operating systems. It would be a valuable feature addition to Proxmox, FreeNAS and OPNsense.

Some (many?) N150 devices from Topton (China) ship without Bootguard fused, which _may_ enable coreboot to be ported to those platforms. Hopefully ODROID (Korea) will ship N150 devices. Then we could have fanless N150 devices with coreboot and DRTM for less-insecure [2] routers and storage.

[1] Gracemont (E-core): https://chipsandcheese.com/p/gracemont-revenge-of-the-atom-c... | https://youtu.be/agUwkj1qTCs (Intel Austin architect, 2021)

[2] "Xfinity using WiFi signals in your house to detect motion", 400 comments, https://news.ycombinator.com/item?id=44426726#44427986

bee_rider•3h ago
Should a mini-NAS be considered a new type of thing with a new design goal? He seems to be describing about a desktop worth of storage (6TB), but always available on the network and less power consuming than a desktop.

This seems useful. But it seems quite different from his previous (80TB) NAS.

What is the idle power draw of an SSD anyway? I guess they usually have a volatile ram cache of some sort built in (is that right?) so it must not be zero…

transpute•2h ago
> Should a mini-NAS be considered a new type of thing with a new design goal?

  - Warm storage between mobile/tablet and cold NAS
  - Sidecar server of functions disabled on other OSes
  - Personal context cache for LLMs and agents
layer8•2h ago
HDD-based NASes are used for all kinds of storage amounts, from as low as 4TB to hundreds of TB. The SSD NASes aren’t really much different in use case, just limited in storage amount by available (and affordable) drive capacities, while needing less space, being quieter, but having a higher cost per TB.
CharlesW•1h ago
> Should a mini-NAS be considered a new type of thing with a new design goal?

Small/portable low-power SSD-based NASs have been commercialized since 2016 or so. Some people call them "NASbooks", although I don't think that term ever gained critical MAS (little joke there).

Examples: https://www.qnap.com/en/product/tbs-464, https://www.qnap.com/en/product/tbs-h574tx, https://www.asustor.com/en/product?p_id=80

privatelypublic•1h ago
With APSD the idle draw of a SSD is in the range of low tens of milliwatts.
jeffbee•28m ago
> less power consuming than a desktop

Not really seeing that in these minis. Either the devices under test haven't been optimized for low power, or their Linux installs have non-optimal configs for low power. My NUC 12 draws less than 4W, measured at the wall, when operating without an attached display and with Wi-Fi but no wired network link. All three of the boxes in the review use at least twice as much power at idle.

amelius•3h ago
What types of distributed/network filesystem are people running nowadays on Linux?
geerlingguy•3h ago
Ceph or MooseFS are the two that I've seen most popular. All networked FS have drawbacks, I used to run a lot of Gluster, and it certainly added a few grey hairs.
sekh60•59m ago
I use Ceph. 5 nodes, 424TiB of raw space so far.
dwood_dev•2h ago
I love reviews like these. I'm a fan of the N100 series for what they are in bringing low power x86 small PCs to a wide variety of applications.

One curiosity for @geerlingguy, does the Beelink work over USB-C PD? I doubt it, but would like to know for sure.

geerlingguy•2h ago
That, I did not test. But as it's not listed in specs or shown in any of their documentation, I don't think so.
moondev•57m ago
Looks like it only draws 45w which could allow this to be powered over POE++ with a splitter, but it has an integrated AC input and PSU - that's impressive regardless considering how small it is but not set up for PD or POE
devwastaken•2h ago
i want a NAS i can puf 4tb nvme’s in and a 12tb hdd running backup every night. with ability to shove a 50gbps sfp card in it so i can truly have a detached storage solution.
jbverschoor•2h ago
Yeah that’s what I want too. I don’t necessarily need a mirror of most data, some I do prefer, but that’s small.

I just want a backup (with history) of the data-SSD. The backup can be a single drive + perhaps remote storage

lostlogin•1h ago
Would you really want the backup on a single disk? Or is this backing up data that is also versioned on the SSDs?
lostlogin•1h ago
10gbps would be a good start. The lack of wifi is mentioned as a downside, but do many people want that on a NAS?
whatever1•2h ago
Question regarding these mini pcs: how do you connect them to plain old hard drives ? Is thunderbolt / usb these days reliable enough to run 24/7 without disconnects like an onboard sata?
jeffbee•2h ago
I've never heard of these disconnects. The OWC ThunderBay works well.
layer8•2h ago
For that money it can make more sense to get a UGreen DXP4800 with built-in N100: https://nas.ugreen.com/products/ugreen-nasync-dxp4800-nas-st...

You can install a third-party OS on it.

jkortufor•2h ago
I have experienced them - I have a B650 AM5 motherboard and if I connect a Orico USB HDD enclosure to the fastest USB ports, the ones comming directly from the AMD CPU (yes, it's a thing now), after 5-10 min the HDD just disappears from the system. Doesn't happen on the other USB ports.
jeffbee•2h ago
Well, AMD makes a good core but there are reasons that Intel is preferred by some users in some applications, and one of those reasons is that the peripheral devices on Intel platforms tend to work.
monster_truck•2h ago
The last sata controller (onboard or otherwise) that I had with known data corruption and connection issues is old enough to drive now
michaelt•2h ago
Would you not simply buy a regular NAS?

Why buy a tiny, m.2 only mini-NAS if your need is better met by a vanilla 2-bay NAS?

projektfu•2h ago
Good question. I imagine for the silence and low power usage without needing huge amounts of storage. That said, I own an n100 dual 3.5 bay + m.2 mini PC that can function as a NAS or as anything and I think it's pretty neat for the price.
asalahli•1h ago
This sounds exactly like what I'm looking. Care to share the brand&model?
x0x0•1h ago
power regularly hits 50 cents a kilowatt hour where I live. Most of those seem to treat power like its free.
blargthorwars•2h ago
I've run a massive farm (2 petabytes) of ZFS on FreeBSD servers with Zraid over consumer USB for about fifteen years and haven't had a problem: directly attaching to the motherboard USB ports and using good but boring controllers on the drives like the WD Elements series.
TiredOfLife•2h ago
I have been running usb hdds 24/7 connected to raspberry pi as a nas for 10 years without problems
al_borland•2h ago
I’ve been thinking about moving from SSDs for my NAS to solid state. The drive are so loud, all the time, it’s very annoying.

My first experience with these cheap mini PCs was with a Beelink and it was very positive and makes me question the longevity of the hardware. For a NAS, that’s important to me.

jbverschoor•2h ago
HDD -> SSD I assume For me it’s more and random access times
chime•2h ago
I've been using a QNAP TBS-464 [1] for 4 years now with excellent results. I have 4x 4TB NVMe drives and get about 11TB usable after RAID. It gets slightly warm but I have it in my media cabinet with a UPS, Mikrotik router, PoE switches, and ton of other devices. Zero complaints about this setup.

The entire cabinet uses under 1kwh/day, costing me under $40/year here, compared to my previous Synology and home-made NAS which used 300-500w, costing $300+/year. Sure I paid about $1500 in total when I bought the QNAP and the NVMe drives but just the electricity savings made the expense worth it, let alone the performance, features etc.

1. https://www.qnap.com/en-us/product/tbs-464

al_borland•1h ago
Thanks, I’ll give it a look. I’m running a Synology right now. It only has 2 drives, so just swapping those out for SSDs would cost as much as a whole 4xNVMe setup, as I have 8TB HDDs in there now.
leptons•22m ago
> moving from SSDs for my NAS to solid state.

SSD = Solid State Drive

So you're moving from solid state to solid state?

7e•2h ago
These need remote management capabilities (IPMI) to not be a huge PITA.
yonatan8070•1h ago
How often do you use IPMI on a server? I have a regular desktop running Proxmox, and I haven't had to plug in a monitor since I first installed it like 2 years ago
herf•2h ago
Which SSDs do people rely on? Considering PLP (power loss protection), write endurance/DWPD (no QLC), and other bugs that affect ZFS especially? It is hard to find options that do these things well for <$100/TB, with lower-end datacenter options (e.g., Samsung PM9A3) costing maybe double what you see in a lot of builds.
nightfly•1h ago
ZFS isn't more effected by those, your just more likely to notice them with ZFS. You'll probably never notice write endurance issues on a home NAS
privatelypublic•1h ago
QLC isn't an issue for consumer NAS- are 'you' seriously going to write 160GB/day, every day?
magicalhippo•1h ago
QLC have quite the write performance cliff though, which could be an issue during use or when rebuilding the array.

Just something to be aware of.

sandreas•1h ago
While it may be tempting to go "mini" and NVMe, for a normal use case I think this is hardly cost effective.

You give up so much by using an all in mini device...

No Upgrades, no ECC, harder cooling, less I/O.

I have had a Proxmox Server with a used Fujitsu D3417 and 64gb ecc for roughly 5 years now, paid 350 bucks for the whole thing and upgraded the storage once from 1tb to 2tb. It draws 12-14W in normal day use and has 10 docker containers and 1 windows VM running.

So I would prefer a mATX board with ECC, IPMI 4xNVMe and 2.5GB over these toy boxes...

However, Jeff's content is awesome like always

samhclark•1h ago
I think you're right generally, but I wanna call out the ODROID H4 models as an exception to a lot of what you said. They are mostly upgradable (SODIMM RAM, SATA ports, M.2 2280 slots), and it does support in-band ECC which kinda checks the ECC box. They've got a Mini-ITX adapter for $15 so it can fit into existing cases too.

No IPMI and not very many NVME slots. So I think you're right that a good mATX board could be better.

sandreas•37m ago
Well, if you would like to go mini (with ECC and 2.5G) you could take a look at this one:

https://www.aliexpress.com/item/1005006369887180.html

Not totally upgradable, but at least pretty low cost and modern with an optional SATA + NVMe combination for Proxmox. Shovel in an enterprise SATA and a consumer 8TB WD SN850x and this should work pretty good. Even Optane is supported.

IPMI could be replaced with NanoKVM or JetKVM...

geek_at•33m ago
Not sure about the odroid but I got myself the nas kit from friendly elec. With the largest ram it was about 150 bucks and comes with 2,5g ethernet and 4 NVME slots. No fan and keeps fairly cool even under load.

Running it with encrypted zfs volumes and even with a 5bay 3.5 Inch HDD dock attached via USB

https://wiki.friendlyelec.com/wiki/index.php/CM3588_NAS_Kit

fnord77•20m ago
these little boxes are perfect for my home

My use case is a backup server for my macs and cold storage for movies.

6x2Tb drives will give me a 9Tb raid-5 for $809 ($100 each for the drives, $209 for the nas).

Very quiet so I can have it in my living room plugged into my TV. < 10W power.

I have no room for a big noisy server.

miladyincontrol•1h ago
Still think its highly underrated to use fs-cache with NASes (usually configured with cachefilesd) for some local dynamically scaling client-side nvme caching.

Helps a ton with response times with any NAS thats primarily spinning rust, especially if dealing with decent amount of small files.

attendant3446•1h ago
I was recently looking for a mini PC to use as a home server with, extendable storage. After comparing different options (mostly Intel), I went with the Ryzen 7 5825U (Beelink SER5 Pro) instead. It has an M.2 slot for an SSD and I can install a 2.5" HDD too. The only downside is that the HDD is limited by height to 7 mm (basically 2 TB storage limit), but I have a 4 TB disk connected via USB for "cold" storage. After years of using different models with Celeron or Intel N CPUs, Ryzen is a beast (and TDP is only 15W). In my case, AMD now replaced almost all the compute power in my home (with the exception of the smartphone) and I don't see many reasons to go back to Intel.
ozim•1h ago
So Jeff is really decent guy that doesn’t keep terabytes of Linux ISOs.
archagon•1h ago
These look compelling, but unfortunately, we know that SSDs are not nearly as reliable as spinning rust hard drives when it comes to data retention: https://www.tomshardware.com/pc-components/storage/unpowered...

(I assume the same applies to M.2, but have not confirmed.)

If this isn’t running 24/7, I’m not sure I would trust it with my most precious data.

bhouston•49m ago
I am currently running a 8 4TB NVMe NAS via OpenZFS on TrueNAS Linux. It is good but my box is quite large. I made this via a standard AMD motherboard with both built-in NVMe slots as well as a bunch of expansion PCEi cards. It is very fast.

I was thinking of replacing it with a Asustor FLASHSTOR 12, much more compact form factor and it fits up to 12 NVMes. I will miss TrueNAS though, but it would be so much smaller.

1oooqooq•19m ago
I will wait until the have AMD efficient chip for one very simple reason: AMD graciously allow ECC on some* cpus.

*well, they allowed on all CPUs, but after zen3 they saw how much money intel was making and joined in. now you must get a "PRO" cpu, to get ECC support, even on mobile (but good luck finding ECC sodimm).

AV1 FGS Suboptimal?

https://daejeonchronicles.com/2024/02/13/is-av1s-fgs-suboptimal/
1•sharpshadow•1m ago•0 comments

DiffuCoder: Understanding and Improving Masked Diffusion Models for Code

https://arxiv.org/abs/2506.20639
1•simonpure•2m ago•0 comments

The Faery Tale Adventure 1987 Amiga source code

https://github.com/viridia/faery-tale-amiga
1•indigoabstract•8m ago•0 comments

The Story behind Caesar Salad

https://www.nationalgeographic.com/travel/article/story-behind-caesar-salad
1•Bluestein•8m ago•0 comments

Observations of the seiche that shook the world

https://www.nature.com/articles/s41467-025-59851-7
1•geox•8m ago•0 comments

Show HN: Golang Challenges: Learn and Practice (See Demo)

https://github.com/RezaSi/go-interview-practice
1•RezaSi•10m ago•0 comments

Free and Open-source – Digital cold wallet

https://www.getsecurevault.com/
1•msmello•12m ago•0 comments

Show HN: AirBending – hand gesture based macOS app MIDI controller

https://www.nanassound.com/products/software/airbending
2•bepitulaz•13m ago•0 comments

Legacy of Spinjitzu – Ninja RPG Adventure

https://3dplants.gumroad.com/l/baidl
2•21stcenturydude•13m ago•1 comments

Show HN: QuickImageResize.pro – Free Image Conversion and Resizing Tool

https://quickimageresize.pro/
2•AustinMunday•16m ago•0 comments

Jim Shooter, Editor Who 'Saved the Comics Industry,' Dies at 73

https://www.nytimes.com/2025/07/03/arts/jim-shooter-dead.html
3•voxadam•17m ago•2 comments

Show HN: Browse Netflix and Prime catalogs by country, with multilingual support

https://www.wheretowatch.stream/catalogs/netflix/us/all/all
2•ericrenan•19m ago•0 comments

Jane Street banned from dealing securities in India

https://www.ft.com/content/bf4fbf13-a22e-4145-9c19-1492cca9167d
2•haltingproblem•20m ago•0 comments

Show HN: Built a lovable clone to see what makes agentic apps tick

https://github.com/beam-cloud/lovable-clone
3•llom2600•24m ago•1 comments

The techie who allegedly juggled multiple startup jobs and fooled YC founders

https://indianexpress.com/article/trending/trending-globally/who-is-soham-parekh-yc-startup-scam-soham-gate-10103719/
2•fallinditch•26m ago•0 comments

Looking for Early Testers for a AI Assistant Inside Zotero

3•jie6•29m ago•0 comments

Any Deb Needs Thsis

2•dimakrivolap•29m ago•0 comments

Legacy of Giants – A reminder to look ahead during these rough times

https://old.reddit.com/r/nasa/comments/1lr0gqh/legacy_of_giants_a_reminder_to_look_ahead_during/
2•taubek•30m ago•0 comments

Robotic probe quickly measures key properties of new materials

https://news.mit.edu/2025/robotic-probe-quickly-measures-key-properties-new-materials-0704
2•gnabgib•35m ago•0 comments

Show HN: Ncrypt – Query encrypted files privately with FHE

https://github.com/ncrypt-ai/ncrypt
3•rstock•36m ago•0 comments

Trae Agent

https://github.com/bytedance/trae-agent
2•indigodaddy•39m ago•0 comments

Mawkdown, a lightweight, line-oriented(ish) text markup tool implemented in Awk

https://codeberg.org/owl/mawkdown
4•Bogdanp•40m ago•0 comments

Open Cosmos has acquired Connected, a Portuguese startup

https://www.computerweekly.com/news/366626964/Boost-for-European-space-sovereignty-as-Open-Cosmos-gets-Connected
2•Bluestein•44m ago•0 comments

Psychedelics and Alzheimer's Disease

https://psychedelirium.substack.com/p/psychedelics-and-alzheimers-disease
2•yenniejun111•45m ago•0 comments

Tunnel SSH Traffic over HTTPS [video]

https://www.youtube.com/watch?v=AAjrZ6qGCm0
2•thunderbong•46m ago•1 comments

Charging Devices with Indoor Lighting

https://publishing.aip.org/publications/latest-content/charging-devices-with-indoor-lighting/
2•gnabgib•47m ago•0 comments

Building an Open Source Jarvis Style Realtime Assistant in Rust

https://rohan.ga/blog/jarvis/
2•ocean_moist•48m ago•0 comments

New Evidence Adds to Findings Hinting at Network of Caves on Moon (2024)

https://science.nasa.gov/solar-system/new-evidence-adds-to-findings-hinting-at-network-of-caves-on-moon/
2•ViktorRay•52m ago•1 comments

Why Prompt Libraries Are Quietly Becoming the Frameworks of AI Coding (2025)

3•devtechinsights•57m ago•0 comments

'Positive review only': Researchers hide AI prompts in papers

https://asia.nikkei.com/Business/Technology/Artificial-intelligence/Positive-review-only-Researchers-hide-AI-prompts-in-papers
3•Tomte•57m ago•0 comments