<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: exsysadmin</title><link>https://news.ycombinator.com/user?id=exsysadmin</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 07 Jun 2026 20:29:41 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=exsysadmin" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by exsysadmin in "Ntsc-rs – open-source video emulation of analog TV and VHS artifacts"]]></title><description><![CDATA[
<p>Probably quantization noise is meant:<p><a href="https://en.wikipedia.org/wiki/Quantization_(signal_processing)" rel="nofollow">https://en.wikipedia.org/wiki/Quantization_(signal_processin...</a></p>
]]></description><pubDate>Sun, 07 Jun 2026 13:30:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=48434639</link><dc:creator>exsysadmin</dc:creator><comments>https://news.ycombinator.com/item?id=48434639</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48434639</guid></item><item><title><![CDATA[New comment by exsysadmin in "A faster way to copy SQLite databases between computers"]]></title><description><![CDATA[
<p>--no-whole-file is the standard, except for local paths (on the same system, the delta-transfer algorithm would be a waste of work, as it reads src and dst to find the delta with rolling checksums -- over the network it can save lots of time and bandwidth)<p>--inplace is independent of that: it specifies writing directly to target files (instead of write to temp file and rename to target after completion)</p>
]]></description><pubDate>Sat, 03 May 2025 11:22:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=43878327</link><dc:creator>exsysadmin</dc:creator><comments>https://news.ycombinator.com/item?id=43878327</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43878327</guid></item><item><title><![CDATA[New comment by exsysadmin in "A faster way to copy SQLite databases between computers"]]></title><description><![CDATA[
<p>The last time I had to call fsfreeze (or xfs_freeze) before creating an LVM snapshot was maybe 17-18 years ago on a system with rather old (even for the time) "stable" versions of everything, where it was not yet integrated.<p>Since decades, lvm triggers a freeze before snapshot creation and an unfreeze afterwards, if the filesystem supports it.<p>> fsfreeze is unnecessary for device-mapper devices. The device-mapper (and LVM) automatically freezes a filesystem on the device when a snapshot creation is requested. For more details see the dmsetup(8) man page.<p><a href="https://man7.org/linux/man-pages/man8/fsfreeze.8.html" rel="nofollow">https://man7.org/linux/man-pages/man8/fsfreeze.8.html</a><p>It is part of the VFS:<p>> freeze_fs
> 
>     called when VFS is locking a filesystem and forcing it into a consistent state. This method is currently used by the Logical Volume Manager (LVM) and ioctl(FIFREEZE). Optional.<p><a href="https://docs.kernel.org/filesystems/vfs.html" rel="nofollow">https://docs.kernel.org/filesystems/vfs.html</a><p>All relevant filesystems implement it.<p>> List of these filesystems include (2016-12-18) btrfs, ext2/3/4, f2fs, jfs, nilfs2, reiserfs, and xfs. Previous list may be incomplete, as more filesystems get support.<p>Using LVM snapshots is absolutely fine for creating consistent and complete copies of sqlite databases. You have to to copy the rollback-journal or WAL, too: they are part the db, it will checkpoint to the db file when you open it or its copy. Every committed transaction before the snapshot is in it. It is complete.<p>And even if you do use a mode below PRAGMA synchronous=FULL (
<a href="https://sqlite.org/pragma.html#pragma_synchronous" rel="nofollow">https://sqlite.org/pragma.html#pragma_synchronous</a> ) -- FULL is needed to ensure durability as it fsync()s the WAL on every commit -- you are better of than with a system crash: the freeze writes out every dirty page to disk, which is not guaranteed in case of a crash, where in NORMAL mode, you might lose the transactions written to the WAL file, but not to synced to disk yet.</p>
]]></description><pubDate>Sat, 03 May 2025 10:52:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=43878178</link><dc:creator>exsysadmin</dc:creator><comments>https://news.ycombinator.com/item?id=43878178</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43878178</guid></item><item><title><![CDATA[New comment by exsysadmin in "How much can you get out of a $4 VPS?"]]></title><description><![CDATA[
<p>On their managed servers you can install data bases via KonsoleH and they manage it. (Never used the managed servers myself. MySQL and PostgreSQL?)<p><a href="https://www.hetzner.com/managed-server" rel="nofollow">https://www.hetzner.com/managed-server</a><p>The webhosting packages also include 1..unlimited DBs (MySQL and PostgreSQL)<p><a href="https://www.hetzner.com/webhosting/" rel="nofollow">https://www.hetzner.com/webhosting/</a></p>
]]></description><pubDate>Mon, 06 Feb 2023 18:04:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=34681466</link><dc:creator>exsysadmin</dc:creator><comments>https://news.ycombinator.com/item?id=34681466</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34681466</guid></item></channel></rss>