<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: izakfr</title><link>https://news.ycombinator.com/user?id=izakfr</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 18 Apr 2026 14:16:53 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=izakfr" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by izakfr in "Launch HN: Karsa (YC W25) – Buy and save stablecoins internationally"]]></title><description><![CDATA[
<p>This looks cool! Stablecoin on-ramps are still not perfect. I think it's important to meet customers where they're at, so a lot of the banking-centric onboarding options won't work everywhere. Don't really understand a lot of the criticism on this thread, seems to mostly be caused by the "crypto = bad" opinion. Good luck with Karsa, keep up the good work!</p>
]]></description><pubDate>Fri, 31 Jan 2025 16:52:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=42889287</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=42889287</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42889287</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: Vigilant - Blazing fast dev-friendly logs"]]></title><description><![CDATA[
<p>CTO of Vigilant here. Does anyone have ideas on how to do versioning for an SDK that you change often? Would putting new features in a "beta" release version make sense?</p>
]]></description><pubDate>Fri, 24 Jan 2025 17:00:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=42815067</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=42815067</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42815067</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: A playable game of Tetris inside a PDF"]]></title><description><![CDATA[
<p>This is really awesome, great job!</p>
]]></description><pubDate>Thu, 09 Jan 2025 17:46:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=42648022</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=42648022</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42648022</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: Varse – Simple remote application config"]]></title><description><![CDATA[
<p>Thank you for the feedback, this is helpful!<p>One of the features we're excited about adding is a way to cache values locally. Having control of cache ttl and refresh intervals would be a must if we added that. You're right that the tool should just work without the developer worrying about affecting latency.</p>
]]></description><pubDate>Tue, 05 Nov 2024 17:40:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=42053574</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=42053574</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42053574</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: Varse – Simple remote application config"]]></title><description><![CDATA[
<p>You could make a variable like `rollout_percent` that is an number. It could be set to 1. Then in your app you could do something like:<p>const rollout_percent = await varse_client.getNumber('rollout_percent');<p>const random_number = Math.random() * 100;<p>if (random_number <= rollout_percent) {<p>// do gated action and will trigger for 1% of users when rollout_percent === 1<p>}</p>
]]></description><pubDate>Tue, 05 Nov 2024 17:09:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=42053319</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=42053319</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42053319</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: Varse – Simple remote application config"]]></title><description><![CDATA[
<p>The axios point is helpful, thank you for mentioning it. I'll make a bug ticket to fix.<p>Also, we should probably put restrictions the keyname scheme. Ideally, it should be something readable.</p>
]]></description><pubDate>Tue, 05 Nov 2024 17:00:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=42053229</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=42053229</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42053229</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: Varse – Simple remote application config"]]></title><description><![CDATA[
<p>Just updated the repo. Thanks for the clarification.</p>
]]></description><pubDate>Tue, 05 Nov 2024 16:42:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=42053008</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=42053008</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42053008</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: Varse – Simple remote application config"]]></title><description><![CDATA[
<p>Yeah that's a good point. We meant application config. I will change the repo's description to reflect this.</p>
]]></description><pubDate>Tue, 05 Nov 2024 16:39:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=42052965</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=42052965</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42052965</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: Varse – Simple remote application config"]]></title><description><![CDATA[
<p>Feature Flags looks like it's crafted around automated rollouts. Varse was designed to be more manual, just for reading / writing key - value pairs. You can use it to store long-lived variables like database_url. It could also be used for short lived variables like percent_db_migration_rollout.<p>Have you used Feature Flags in the past? I'm curious what your experience was.</p>
]]></description><pubDate>Tue, 05 Nov 2024 16:39:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=42052955</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=42052955</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42052955</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: Varse – Simple remote server variables"]]></title><description><![CDATA[
<p>It's a variable or config that gets injected into a server at runtime. At least that's what I've heard it called in the past. I think it's interchangeable with environment variable.</p>
]]></description><pubDate>Tue, 05 Nov 2024 16:20:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=42052759</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=42052759</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42052759</guid></item><item><title><![CDATA[Show HN: Varse – Simple remote application config]]></title><description><![CDATA[
<p>Hey HN,<p>We wanted a simple way to update application configs, without redeploying. We wanted to remotely set variables, and read them in our application. We created Varse to do this.<p>Varse has a dashboard for creating key - value pairs and an SDK to read them. It's un-opinionated and allows for strings, booleans, or even json objects to be stored.<p>We have instructions for running it yourself. We also have a hosted version where you can create an account and manage variables.<p>This is our first time building an open source project. We'd love feedback on how to do it right.<p>Github: <a href="https://github.com/varse-io/varse">https://github.com/varse-io/varse</a><p>Hosted Version: <a href="https://app.varse.io/signup" rel="nofollow">https://app.varse.io/signup</a><p>Website: <a href="https://www.varse.io/" rel="nofollow">https://www.varse.io/</a><p>Contact: izak@varse.io</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42052207">https://news.ycombinator.com/item?id=42052207</a></p>
<p>Points: 38</p>
<p># Comments: 23</p>
]]></description><pubDate>Tue, 05 Nov 2024 15:27:03 +0000</pubDate><link>https://github.com/varse-io/varse</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=42052207</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42052207</guid></item><item><title><![CDATA[Show HN: Repaint – A visual editor for HTML and CSS]]></title><description><![CDATA[
<p>We’re Izak and Ben the founders of Repaint (YC S23). Repaint is an editor, like Figma, that natively exports code.<p>We launched Repaint on HN a little over a month ago. At that point, it was a website builder. There was a lot of feedback that Repaint should directly export code. We took this feedback and decided to change the editor.<p>We completely cut website hosting and decided to focus solely on code export. We’ve added templates for login forms and dashboards to help you get started.<p>The editor experience is similar to Figma. It is a WebGL canvas that has panning and zooming. The internal data-structure is a DOM, like HTML. The style attributes on each node map directly to CSS. Exporting the styles has no translation problems.<p>At Repaint, we spend a lot of time translating designs to code. We’re excited to build something that will help improve our own workflow.<p>We’re hoping to talk to anyone who has issues translating designs to code. If this is something that would help you, please to reach out to izak@repaint.com.<p>Main Website: <a href="https://repaint.com">https://repaint.com</a><p>Contact: izak@repaint.com</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=41881477">https://news.ycombinator.com/item?id=41881477</a></p>
<p>Points: 7</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 18 Oct 2024 17:18:32 +0000</pubDate><link>https://www.repaint.com/home</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=41881477</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41881477</guid></item><item><title><![CDATA[New comment by izakfr in "Ask HN: Why don't you like Figma to code?"]]></title><description><![CDATA[
<p>The two-way sync does seem to be another problem with these export tools. Thanks for sharing, I'll take a look!</p>
]]></description><pubDate>Wed, 16 Oct 2024 16:37:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=41861090</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=41861090</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41861090</guid></item><item><title><![CDATA[Ask HN: Why don't you like Figma to code?]]></title><description><![CDATA[
<p>It's a common sentiment that Figma to code tools don't work well. What exactly is bad about the code that these tools generate? Is it that the code doesn't look consistent with how'd you write it?<p>Plugins either seem to either provide too little detail (Figma Dev mode) or feel too bloated (Anima).<p>Has this been your experience as well? Do you have any alternatives that you've liked?</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=41860927">https://news.ycombinator.com/item?id=41860927</a></p>
<p>Points: 3</p>
<p># Comments: 7</p>
]]></description><pubDate>Wed, 16 Oct 2024 16:20:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=41860927</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=41860927</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41860927</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: Mitata – Benchmarking tooling for JavaScript"]]></title><description><![CDATA[
<p>This is awesome! I’ve been working on optimizing a javascript library recently and am feeling the pain of performance testing. I’ll check this out.</p>
]]></description><pubDate>Sat, 28 Sep 2024 21:42:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=41683189</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=41683189</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41683189</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: Repaint – a WebGL based website builder"]]></title><description><![CDATA[
<p>Since almost all websites use HTML / CSS, its the output format we wanted to target. If you don't use HTML it breaks things like SEO, accessibility, etc.</p>
]]></description><pubDate>Wed, 04 Sep 2024 14:39:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=41446348</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=41446348</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41446348</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: Repaint – a WebGL based website builder"]]></title><description><![CDATA[
<p>Our current API is design in the editor -> HTML / CSS. Exposing the internal data structure wouldn't work well. We've changed the structure multiple times in the past few months. We have plans to change it rather dramatically in the future.</p>
]]></description><pubDate>Wed, 04 Sep 2024 14:36:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=41446316</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=41446316</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41446316</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: Repaint – a WebGL based website builder"]]></title><description><![CDATA[
<p>Wow, this is really cool! Thanks for sharing.</p>
]]></description><pubDate>Wed, 04 Sep 2024 14:19:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=41446163</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=41446163</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41446163</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: Repaint – a WebGL based website builder"]]></title><description><![CDATA[
<p>At the top of this post there is a link to the playground.<p>Here's the link: <a href="https://app.repaint.com/playground">https://app.repaint.com/playground</a></p>
]]></description><pubDate>Wed, 04 Sep 2024 14:18:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=41446145</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=41446145</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41446145</guid></item><item><title><![CDATA[New comment by izakfr in "Show HN: Repaint – a WebGL based website builder"]]></title><description><![CDATA[
<p>Yes, repaint.com is made in Repaint.<p>What do you mean drawn live? The content is animated, but is still present in the DOM for indexing purposes.</p>
]]></description><pubDate>Wed, 04 Sep 2024 14:17:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=41446132</link><dc:creator>izakfr</dc:creator><comments>https://news.ycombinator.com/item?id=41446132</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41446132</guid></item></channel></rss>