<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: marknadal</title><link>https://news.ycombinator.com/user?id=marknadal</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 09 Apr 2026 08:38:58 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=marknadal" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by marknadal in "We’re Mozilla’s New Startup Incubator. AMA"]]></title><description><![CDATA[
<p>Hey, I'm Mark Nadal and I was accepted into Mozilla's "Fix the Internet" program - it has been fantastic so far & huge respect to everyone at Mozilla for putting this on.<p>Note: I doubt anyone will see this comment as HackerNews has shadow banned my account because my Open Source project competes with some of YC's investments (it undermines & destroys the need/market for some of their crypto-coin scams).<p>I interviewed with YC a few years ago and their entire process was terribly unprofessional - I've gone through 3 accelerator programs now, and interviewed at many more. YC itself seems pretty awesome, but beware of the politics - if a single person (HN mod in my case) feels like you are a threat to their status, that person has enough marketing power to hurt you. Find the GOOD people in YC and work with them, don't leave it to chance or you'll fall out of good graces.<p>In contrast, look what Mozilla is doing! They're helping move the internet (the world, the community) forward, and are a non-profit foundation. I highly recommend applying to their program. They are GOOD people, doing good work. Please please do everything you can to help them make this a success - the internet depends on it.</p>
]]></description><pubDate>Thu, 14 May 2020 21:20:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=23185647</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=23185647</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23185647</guid></item><item><title><![CDATA[New comment by marknadal in "Simdjson 0.3: Faster JSON parser"]]></title><description><![CDATA[
<p>I think that is a good hill to die on, tho I would rather prioritize UX (browser not freezing) and server responsiveness. Ideally we'd have no CPU chunking & good UX, but if we have to choose one, which would you sacrifice?</p>
]]></description><pubDate>Wed, 01 Apr 2020 22:34:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=22754192</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22754192</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22754192</guid></item><item><title><![CDATA[New comment by marknadal in "Simdjson 0.3: Faster JSON parser"]]></title><description><![CDATA[
<p>If string[index-1] === `\\` Then skipAgain</p>
]]></description><pubDate>Wed, 01 Apr 2020 15:49:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=22749939</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22749939</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22749939</guid></item><item><title><![CDATA[New comment by marknadal in "Simdjson 0.3: Faster JSON parser"]]></title><description><![CDATA[
<p>Holy Cow! 2.5GB/s that is amazing.<p>Meanwhile I can barely get Chrome/NodeJS to parse 20MB in less than 100ms :(.<p>How useful (or useless) would Simdjson as a Native Addon to V8 be? I assume transferring the object into JS land would kill all the speed gains?<p>I wrote my own JSON parser just last week, to see if I could improve the NodeJS situation. Discovered some really interesting factoids:<p>(A) JSON parse is CPU-blocking, so if you get a large object, your server cannot handle any other web request until it finishes parsing, this sucks.<p>(B) At first I fixed this by using setImmediate/shim, but discovered to annoying issues:<p>(1) Scheduling too many setImmediates will cause the event loop to block at the "check" cycle, you actually have to load balance across turns in the event loop like so (<a href="https://twitter.com/marknadal/status/1242476619752591360" rel="nofollow">https://twitter.com/marknadal/status/1242476619752591360</a>)<p>(2) Doing the above will cause your code to be way slow, so a trick instead, is to actually skip setImmediate and invoke your code 3333 (some divider of NodeJS's ~11K stack depth limit) times or for 1ms before doing a real setImmediate.<p>(C) Now that we can parse without blocking, our parser's while loop (<a href="https://github.com/amark/gun/blob/master/lib/yson.js" rel="nofollow">https://github.com/amark/gun/blob/master/lib/yson.js</a>) marches X byte increments at a time (I found 32KB to be a sweet spot, not sure why).<p>(D) I'm seeing this pure JS parser be ~2.5X slower than native for big complex JSON objects (20MB).<p>(E) Interestingly enough, I'm seeing 10X~20X faster than native, for parsing JSON records that have large values (ex, embedded image, etc.).<p>(F) Why? This happened when I switched my parser to skip per-byte checks when encountering `"` to next indexOf. So it would seem V8's built in JSON parser is still checking every character for a token which slows it down?<p>(G) I hate switch statements, but woah, I got a minor but noticeable speed boost going from if/else token checks to a switch statement.<p>Happy to answer any other Qs!<p>But compared to OP's 2.5GB/s parsing?! Ha, mine is a joke.</p>
]]></description><pubDate>Wed, 01 Apr 2020 06:43:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=22746314</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22746314</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22746314</guid></item><item><title><![CDATA[New comment by marknadal in "About CRDTs"]]></title><description><![CDATA[
<p>I get some hate my Open Source project & actively abuse downvotes/flagging to censor me.<p>But for every 1 hater there are 100s of hackers that have found, starred, used, or told me (in our chat channel) they were thankful they discovered GUN via HackerNews.<p>& HN guidelines encourage on-topic submissions & comments (<a href="https://news.ycombinator.com/newsguidelines.html" rel="nofollow">https://news.ycombinator.com/newsguidelines.html</a>) "Anything that good hackers would find interesting ... anything that gratifies one's intellectual curiosity" even you have to admit that GUN discussions have sparked a lot of intellectual & algorithm chats.<p>Finally, you state I'm not spamming then say I am spamming. Spam is indiscriminate posting of something, yet your very own comment says "you always post GUN in discussions about CRDTs & decentralization." That is indeed on-topic according to HN policy.</p>
]]></description><pubDate>Mon, 30 Mar 2020 18:35:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=22730800</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22730800</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22730800</guid></item><item><title><![CDATA[New comment by marknadal in "About CRDTs"]]></title><description><![CDATA[
<p>Not sure why my post was flagged.<p>Just to be clear, Martin (site owner) added GUN to the list, not me. Proof:<p><a href="https://twitter.com/martinkl/status/1244672269395406849" rel="nofollow">https://twitter.com/martinkl/status/1244672269395406849</a></p>
]]></description><pubDate>Mon, 30 Mar 2020 17:41:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=22730217</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22730217</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22730217</guid></item><item><title><![CDATA[New comment by marknadal in "About CRDTs"]]></title><description><![CDATA[
<p>Thanks, was on mobile which doesn't show it.<p>Edit: (reply is now showing)</p>
]]></description><pubDate>Mon, 30 Mar 2020 17:07:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=22729840</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22729840</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22729840</guid></item><item><title><![CDATA[New comment by marknadal in "About CRDTs"]]></title><description><![CDATA[
<p>Hey, my Open Source database is the #1 CRDT rated system on GitHub, and is used in-production by 10M+ people a month, at non-profits like the Internet Archive, and others.<p><a href="https://github.com/topics/crdt" rel="nofollow">https://github.com/topics/crdt</a><p>Mind adding it to the site?</p>
]]></description><pubDate>Mon, 30 Mar 2020 16:59:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=22729757</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22729757</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22729757</guid></item><item><title><![CDATA[New comment by marknadal in "Show HN: UIDesignDaily – soft launch with 600 open-source designs"]]></title><description><![CDATA[
<p>Gorgeous work! Such a great blessing & story, thanks for sharing.</p>
]]></description><pubDate>Thu, 26 Mar 2020 19:16:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=22696871</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22696871</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22696871</guid></item><item><title><![CDATA[New comment by marknadal in "Wavve: making $76k a month turning podcasts into videos"]]></title><description><![CDATA[
<p>Wow, even better / awesome! Thank you!</p>
]]></description><pubDate>Thu, 26 Mar 2020 19:13:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=22696844</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22696844</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22696844</guid></item><item><title><![CDATA[New comment by marknadal in "Wavve: making $76k a month turning podcasts into videos"]]></title><description><![CDATA[
<p>(no affiliation) <a href="https://www.headliner.app/" rel="nofollow">https://www.headliner.app/</a> will do this for free < videos/month.</p>
]]></description><pubDate>Thu, 26 Mar 2020 19:12:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=22696832</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22696832</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22696832</guid></item><item><title><![CDATA[Secure Rendering: A New Browser Standard for User Privacy]]></title><description><![CDATA[
<p>Article URL: <a href="https://hackernoon.com/secure-rendering-a-new-browser-standard-for-user-privacy-dv783b9h">https://hackernoon.com/secure-rendering-a-new-browser-standard-for-user-privacy-dv783b9h</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=22607403">https://news.ycombinator.com/item?id=22607403</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 17 Mar 2020 17:24:16 +0000</pubDate><link>https://hackernoon.com/secure-rendering-a-new-browser-standard-for-user-privacy-dv783b9h</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22607403</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22607403</guid></item><item><title><![CDATA[New comment by marknadal in "Shelter in place for Bay Area counties"]]></title><description><![CDATA[
<p>And how do they expect to legally & constitutionally enforce this?<p>Not that SF isn't already a ghost town tho.</p>
]]></description><pubDate>Tue, 17 Mar 2020 02:25:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=22600883</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22600883</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22600883</guid></item><item><title><![CDATA[New comment by marknadal in "U.S. will suspend all travel from Europe for 30 days"]]></title><description><![CDATA[
<p>Does this mean return flights too?<p>Or just travel originating from Europe and going inbound to USA?</p>
]]></description><pubDate>Thu, 12 Mar 2020 01:44:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=22552716</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22552716</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22552716</guid></item><item><title><![CDATA[New comment by marknadal in "What Sets Us Apart: Filecoin’s Proof System"]]></title><description><![CDATA[
<p>Thanks for the reply.<p>If you ever have time, it'd be great to snag whatever code or data you had, to create a replicable test case for us to make a fix against. Sorry about the wasted time you experienced, I hate that.</p>
]]></description><pubDate>Mon, 09 Mar 2020 19:43:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=22528979</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22528979</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22528979</guid></item><item><title><![CDATA[New comment by marknadal in "What Sets Us Apart: Filecoin’s Proof System"]]></title><description><![CDATA[
<p>Thanks for the comment.<p>Could you expand further what didn't work? We have some pretty heavy load in-production systems running. Definitely some rough edges still, so I'd like to hear what problems you had, so I can focus on fixing them in the future.<p>Thanks again.</p>
]]></description><pubDate>Fri, 06 Mar 2020 02:28:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=22500524</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22500524</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22500524</guid></item><item><title><![CDATA[New comment by marknadal in "What Sets Us Apart: Filecoin’s Proof System"]]></title><description><![CDATA[
<p>Links?</p>
]]></description><pubDate>Fri, 06 Mar 2020 00:10:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=22499822</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22499822</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22499822</guid></item><item><title><![CDATA[New comment by marknadal in "What Sets Us Apart: Filecoin’s Proof System"]]></title><description><![CDATA[
<p>IPFS, a YC company, is trying to censor Open Source competitors? Interesting. What are you scared of?</p>
]]></description><pubDate>Thu, 05 Mar 2020 23:41:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=22499641</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22499641</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22499641</guid></item><item><title><![CDATA[New comment by marknadal in "What Sets Us Apart: Filecoin’s Proof System"]]></title><description><![CDATA[
<p><a href="https://web.stanford.edu/~nadal/A-Decentralized-Data-Synchronization-Protocol.pdf" rel="nofollow">https://web.stanford.edu/~nadal/A-Decentralized-Data-Synchro...</a><p><a href="https://era.eco/" rel="nofollow">https://era.eco/</a><p><a href="http://axe.eco/" rel="nofollow">http://axe.eco/</a></p>
]]></description><pubDate>Thu, 05 Mar 2020 22:33:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=22499070</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22499070</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22499070</guid></item><item><title><![CDATA[New comment by marknadal in "What Sets Us Apart: Filecoin’s Proof System"]]></title><description><![CDATA[
<p>I think parent was saying the projects using IPFS are relatively unknown, so where are the millions come from?<p>I have the same question.<p>In contrast, GUN, has 20M+ downloads/month from known sources: Internet Archive, HackerNoon, etc. (<a href="https://github.com/amark/gun" rel="nofollow">https://github.com/amark/gun</a> see jsdelivr download stats).</p>
]]></description><pubDate>Thu, 05 Mar 2020 22:15:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=22498939</link><dc:creator>marknadal</dc:creator><comments>https://news.ycombinator.com/item?id=22498939</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22498939</guid></item></channel></rss>