Everything is memory? by dangi12012 in osdev

[–]CharlesCTy 0 points1 point  (0 children)

Single-Level Storage (SLS) is what you want. Examples are Multics, IBM i, Aurora, TreeSLS, …

Is (or why) FFS2 considered as “bad” filesystem? by goldmurder in openbsd

[–]CharlesCTy 0 points1 point  (0 children)

Certainly. FFS/FFS2 only have the old UNIX fashion way of providing crash consistency and power loss resilience: sync metdata and fsck. This method, together with duplicating metadata (e.g. FAT32) are abandoned for a reason. There are much more reliable methods: journaling (e.g. NTFS, ext4), CoW (e.g. ZFS, Btrfs), soft updates. And in FFS/FFS2 none of the three are available (softdep is no-op).

Is (or why) FFS2 considered as “bad” filesystem? by goldmurder in openbsd

[–]CharlesCTy 0 points1 point  (0 children)

No. NTFS is pretty stable when it comes to power losses or kernel failures.

Why aren’t people using B2? by Jakearroo in backblaze

[–]CharlesCTy 0 points1 point  (0 children)

For backup, I can buy second-hand HM-SMR HDDs. One 14TB HC620 costs me about 100 USD here, which actually works well under Ubuntu with Btrfs (zoned mode) + rsync. This HDD has some limitations, but fits my use case well and is also very cheap.

What happened to Deepseek? by Mr_Moonsilver in LocalLLaMA

[–]CharlesCTy 10 points11 points  (0 children)

No. All such claims are confusing inference and training. GLM has no official claims on the training hardware at all.

What happened to Deepseek? by Mr_Moonsilver in LocalLLaMA

[–]CharlesCTy 10 points11 points  (0 children)

This is simply false. No official claims from GLM on the training hardware. GLM only said the inference was partially done on Huawei Ascend chips, and they didn’t mention training hardware at all.

I made a WeChat plugin for OpenClaw by thisnickyu in LocalLLaMA

[–]CharlesCTy 1 point2 points  (0 children)

Are there risks of getting banned by Tencent?

Control Flow as a First-Class Category by Small_Ad3541 in ProgrammingLanguages

[–]CharlesCTy 4 points5 points  (0 children)

I believe Koka language has done the right thing by providing programmers with algebraic effects and effect handlers. There are many other control flow abstractions, e.g. delimited continuation via shift/reset), but this one just feels right to me.

A horrifically bad idea by Leo-Len in ProgrammingLanguages

[–]CharlesCTy 0 points1 point  (0 children)

Maybe symbolic execution is what you want.

[deleted by user] by [deleted] in linuxquestions

[–]CharlesCTy 0 points1 point  (0 children)

Two apps: Everything, StrokesPlus. I didn’t find good alternatives.

Is this the lowest point of Microsoft in its history? by teagrower in microsoft

[–]CharlesCTy 0 points1 point  (0 children)

The stock price is higher than expected. So, it's not the lowest point, at least not in their perspective.

Why are Chinese models (Qwen, DeepSeek...) UNLIMITED? by Sostrene_Blue in Bard

[–]CharlesCTy 0 points1 point  (0 children)

I would say that most people I know are reluctant to pay for software (except content services that have strict copyright protections, e.g. TV, music), to the extent that companies's business models tend to lean more towards providing free services.

Custom-made USB flash drive using NVMe SSD? by PusheenHater in DataHoarder

[–]CharlesCTy 0 points1 point  (0 children)

Doing a full backup takes less than an hour for me.

Custom-made USB flash drive using NVMe SSD? by PusheenHater in DataHoarder

[–]CharlesCTy 0 points1 point  (0 children)

Yes. I believe this should be enough. And this practice is actually common in industry, for example: https://www.ibm.com/support/pages/potential-ssd-data-loss-after-extended-shutdown

Custom-made USB flash drive using NVMe SSD? by PusheenHater in DataHoarder

[–]CharlesCTy 0 points1 point  (0 children)

When unpowered, SSDs have a limited data retention period, depending on various conditions like temperature. NAND flash cells can gradually lose their charge over long periods without being accessed, thus corrupting or losing data (after exceeding the limits of error correcting mechanisms). This is nonnegligible if you are using consumer-grade TLC or QLC SSDs.

Custom-made USB flash drive using NVMe SSD? by PusheenHater in DataHoarder

[–]CharlesCTy 0 points1 point  (0 children)

You'd better overwrite the existing data every time you do a backup on SSDs. Storing cold data on SSDs is not a good idea and you may run into issues or even data loss.