<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: jmiserez</title><link>https://news.ycombinator.com/user?id=jmiserez</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 25 May 2026 00:22:33 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=jmiserez" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by jmiserez in "Infinite Mac: Infinitemac.org"]]></title><description><![CDATA[
<p>Marathon is still alive!<p>AlephOne is the new engine for Marathon, runs all 3 games on modern platforms and is GPL: <a href="https://alephone.lhowon.org/" rel="nofollow">https://alephone.lhowon.org/</a><p>The original Mac OS 9 game files are freely available if you want to run them on a old Mac:
<a href="http://trilogyrelease.bungie.org/" rel="nofollow">http://trilogyrelease.bungie.org/</a></p>
]]></description><pubDate>Wed, 29 Mar 2023 06:51:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=35353558</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=35353558</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35353558</guid></item><item><title><![CDATA[New comment by jmiserez in "Ask HN: Programs that saved you 100 hours? (2022 edition)"]]></title><description><![CDATA[
<p>Give hstr a try: <a href="https://github.com/dvorka/hstr">https://github.com/dvorka/hstr</a><p>It's saved me countless hours over the years as it's just so much better than regular CTRL-R. I also find it to work better than fzf.</p>
]]></description><pubDate>Tue, 20 Dec 2022 22:49:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=34073943</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=34073943</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34073943</guid></item><item><title><![CDATA[New comment by jmiserez in "Git Notes"]]></title><description><![CDATA[
<p>No that's not the same thing, in fact that'll just do a git rebase, changing the commit itself and all commits after that one. Pretty much the polar opposite of what you want!<p>IntelliJ products try to provide a common interface and common naming for all "VCS" operations, whether it's Git/Mercurial/etc. In practice this obscures the actual Git operations though and requires learning yet another set of "abstract" IntelliJ-specific names for the same thing. I wish they'd stop doing that, it's really confusing and inaccurate.</p>
]]></description><pubDate>Mon, 28 Nov 2022 06:24:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=33770376</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=33770376</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33770376</guid></item><item><title><![CDATA[New comment by jmiserez in "Photography for geeks"]]></title><description><![CDATA[
<p>No magic and the same photons, but you can have the hardware sensor read them out differently. Specifically using varying amounts of analog gain / amplification before doing analog-to-digital conversion, minimizing noise. This varies based on camera design.<p>See the "ISO-Invariance and Downstream Electronic Noise" part here for a better explanation: <a href="https://www.lonelyspeck.com/how-to-find-the-best-iso-for-astrophotography-dynamic-range-and-noise" rel="nofollow">https://www.lonelyspeck.com/how-to-find-the-best-iso-for-ast...</a><p>The article mentions the Sony A7S as an example, with the sensor showing marked improvements in SNR when reaching ISO 100, 200, 1600 and 3200, while behaving ISO-invariant wrt. noise in between those values.</p>
]]></description><pubDate>Mon, 28 Nov 2022 05:33:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=33770138</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=33770138</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33770138</guid></item><item><title><![CDATA[New comment by jmiserez in "Kite is saying farewell and open-sourcing its code"]]></title><description><![CDATA[
<p>I don't often hack my own tools either, but it's great to have the possibility to do so.<p>When you really need that bug fixed for your edge case or platform, it's much easier to submit a patch rather than wait around for someone else to fix it.</p>
]]></description><pubDate>Mon, 21 Nov 2022 06:18:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=33689450</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=33689450</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33689450</guid></item><item><title><![CDATA[New comment by jmiserez in "macOS Ventura is now available"]]></title><description><![CDATA[
<p>Ventura even drops support for the 2016 (Touchbar) Macbook Pros which is frustrating. The machines are certainly powerful enough. But support for Intel Macs will probably be dropped sooner rather than later.</p>
]]></description><pubDate>Mon, 24 Oct 2022 21:28:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=33322883</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=33322883</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33322883</guid></item><item><title><![CDATA[New comment by jmiserez in "What ID3v2 could have been"]]></title><description><![CDATA[
<p>Usually the whole row is copied, updated, and then appended to a different file on disk. After some time a job runs that removes the unused rows by deleting them for good, thus rewriting files and compacting the database. This has lots of advantages, on a small scale resilience against power outages (journaling), and on a large scale you can e.g sync a second DB / backup by just streaming appends.<p>Simplifiying a lot here of course. E.g if your DB uses MVCC (multiversion concurrency control) old values cannot be removed until the last transaction is done seeing them.<p>Of course if you write your own storage engine you can do whatever you want. I wrote one for MariaDB a few years ago and you basically just have to implement the minimally required interfaces for it to work.<p>DBs traditionally have these technical details figured out pretty well, and the line between what is part of the DB and what is done by the OS can be blurry at times.</p>
]]></description><pubDate>Wed, 08 Jun 2022 11:23:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=31665770</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=31665770</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31665770</guid></item><item><title><![CDATA[New comment by jmiserez in "Ask HN: What are some good keyboards?"]]></title><description><![CDATA[
<p>The version with MX Silent switches is considerably quieter than the standard MX Red version. I'm hoping the Kinesis 360 coming out this year will be even quieter.</p>
]]></description><pubDate>Sat, 05 Mar 2022 16:37:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=30568947</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=30568947</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30568947</guid></item><item><title><![CDATA[New comment by jmiserez in "Hypercard Simulator"]]></title><description><![CDATA[
<p>><i>I guess a the height of hypercard, that really wasn't really on people's radar.</i><p>It didn't matter yet. People were shipping the software they made in HyperCard to customers on floppies or CDs. IIRC these were self-contained executables, so you didn't need to have HyperCard installed for it to run. One of the most famous examples of this was Myst: <a href="https://en.wikipedia.org/wiki/Myst" rel="nofollow">https://en.wikipedia.org/wiki/Myst</a>.</p>
]]></description><pubDate>Sun, 30 Jan 2022 21:14:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=30141164</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=30141164</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30141164</guid></item><item><title><![CDATA[New comment by jmiserez in "LG’s new 16:18 monitor"]]></title><description><![CDATA[
<p>FancyZones (part of Microsoft PowerToys) works well for me. I also like the fact that it's first-party, free and open-source:<p>Project page:
<a href="https://github.com/microsoft/PowerToys" rel="nofollow">https://github.com/microsoft/PowerToys</a><p>FancyZones docs:
<a href="https://docs.microsoft.com/en-gb/windows/powertoys/fancyzones" rel="nofollow">https://docs.microsoft.com/en-gb/windows/powertoys/fancyzone...</a></p>
]]></description><pubDate>Wed, 22 Dec 2021 15:12:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=29650338</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=29650338</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29650338</guid></item><item><title><![CDATA[New comment by jmiserez in "LG’s new 16:18 monitor"]]></title><description><![CDATA[
<p>I wonder why they couldn't go just a bit wider to make it 2880x2880 (1:1 and the same number of pixels as 4K), instead of 2560x2880.</p>
]]></description><pubDate>Wed, 22 Dec 2021 14:23:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=29649685</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=29649685</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29649685</guid></item><item><title><![CDATA[New comment by jmiserez in "Why Wolfram tech isn’t open source (2019)"]]></title><description><![CDATA[
<p>I'd also recommend the classic "The Cathedral and the Bazaar" essay by Eric Steven Raymond:<p><a href="http://www.catb.org/~esr/writings/cathedral-bazaar/cathedral-bazaar/" rel="nofollow">http://www.catb.org/~esr/writings/cathedral-bazaar/cathedral...</a><p>From Wikipedia:<p>><i>In 1998, the essay helped the final push for Netscape Communications Corporation to release the source code for Netscape Communicator and start the Mozilla project; it was cited by Frank Hecker and other employees as an outside independent validation of his arguments.</i><p><i>Netscape's public recognition of this influence brought Raymond renown in hacker culture.</i></p>
]]></description><pubDate>Sun, 19 Dec 2021 16:39:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=29615353</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=29615353</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29615353</guid></item><item><title><![CDATA[New comment by jmiserez in "Kinesis Advantage 360"]]></title><description><![CDATA[
<p>With the Advantage 2 you got 4 extra keycaps in the box: 3 Mac keys and an additional Alt key to replace the Windows one.<p>For the Advantage 360 they're saying 11 additional keycaps in the box. I'm sure one of those is a Windows key replacement.</p>
]]></description><pubDate>Sat, 18 Dec 2021 09:00:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=29602999</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=29602999</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29602999</guid></item><item><title><![CDATA[New comment by jmiserez in "When HDMI 2.1 isn't HDMI 2.1 – the confusing world of the standard"]]></title><description><![CDATA[
<p>Apparently he uses [1] a "Advanced Cable Tester v2" from Totalphase for his tests, starting at 15000$. Probably depends on what you need to test.<p>[1] <a href="https://www.reddit.com/r/UsbCHardware/comments/ny4y6z/comment/h1j6r28/" rel="nofollow">https://www.reddit.com/r/UsbCHardware/comments/ny4y6z/commen...</a></p>
]]></description><pubDate>Mon, 13 Dec 2021 21:43:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=29545066</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=29545066</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29545066</guid></item><item><title><![CDATA[New comment by jmiserez in "Toyota owners have to pay $8/month to keep using their key fob for remote start"]]></title><description><![CDATA[
<p>Regardless of model it's a good idea to put a emergency hammer / glass breaker in your car.
<i>(addendum: also to rescue someone else, not blaming the driver)</i></p>
]]></description><pubDate>Mon, 13 Dec 2021 20:46:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=29544407</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=29544407</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29544407</guid></item><item><title><![CDATA[New comment by jmiserez in "Summary of the AWS Service Event in the Northern Virginia (US-East-1) Region"]]></title><description><![CDATA[
<p>It absolutely is written down. The issue is that the results you get from modeling systems using queuing theory are often unintuitive and surprising. On top of that it's hard to account for all the seemingly minor implementation details in a real system.<p>During my studies we had a course where we built a distributed system and had to model it's performance mathematically. It was really hard to get the model to match the reality and vice-versa. So many details are hidden in a library, framework or network adapter somewhere (e.g buffers or things like packet fragmentation).<p>We used the book "The Art of Computer Systems Performance Analysis" (R. Jain), but I don't recommend it. At least not the 1st edition which had a frustrating amount of serious, experiment-ruining errata.</p>
]]></description><pubDate>Sat, 11 Dec 2021 12:36:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=29520453</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=29520453</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29520453</guid></item><item><title><![CDATA[New comment by jmiserez in "Pixel prevented me from calling 911"]]></title><description><![CDATA[
<p>To be honest that doesn't sound good at all. No response while you're in an actual emergency and then just "closing the ticket" unless you call again.</p>
]]></description><pubDate>Thu, 09 Dec 2021 10:42:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=29495928</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=29495928</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29495928</guid></item><item><title><![CDATA[New comment by jmiserez in "Apple broke up with me"]]></title><description><![CDATA[
<p>You can register domains for >1 year. You'll still need to renew it every year but you'll have a buffer in case something goes wrong.</p>
]]></description><pubDate>Sun, 05 Dec 2021 11:59:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=29448628</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=29448628</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29448628</guid></item><item><title><![CDATA[New comment by jmiserez in "Consumption of coffee and tea and risk of developing stroke and dementia"]]></title><description><![CDATA[
<p>><i>fruity i associate with citric acid.</i><p>Minor exception: "Exotic" fruits like mango or pineapple may mean there are fermentation flavors present, e.g. with naturally processed beans (vs washed process).<p>Good introduction by James Hoffmann: <a href="https://youtu.be/O9YnLFrM7Fs" rel="nofollow">https://youtu.be/O9YnLFrM7Fs</a> (decoding descriptions starts at 12:53)</p>
]]></description><pubDate>Wed, 17 Nov 2021 08:11:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=29250278</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=29250278</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29250278</guid></item><item><title><![CDATA[New comment by jmiserez in "Ask HN: How do you manage your personal documents?"]]></title><description><![CDATA[
<p>I've found - after trying several apps and custom scripts to do OCR - that the easiest most convenient solution is to just get a printer/scanner combo that does the PDF & OCR directly in hardware. That usually means something targeted towards SMBs that works standalone (in my case a Canon). I.e. specifically not a consumer device: the consumer units usually rely on separate client-side software for doing the OCR processing which complicates the workflow.</p>
]]></description><pubDate>Wed, 10 Nov 2021 12:14:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=29173823</link><dc:creator>jmiserez</dc:creator><comments>https://news.ycombinator.com/item?id=29173823</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29173823</guid></item></channel></rss>