<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: andreyvit</title><link>https://news.ycombinator.com/user?id=andreyvit</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 23 Sep 2026 03:56:38 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=andreyvit" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by andreyvit in "Grok 4.7"]]></title><description><![CDATA[
<p>Well when I ran out of Grok SuperHeavy subscription ($300) once and tried to use extra credits to cover half a day remaining till reset, $50 in extra credits went in two hours. Based on that, subscription definitely lasts longer; Grok subscription just about covers a week of my work (sometimes a bit extra remains unused, sometimes it runs out half a day to a day early). And as a point of comparison, it lasts for doing same tasks as 2.5-3 weekly limits of Codex on 5.6 Sol did (using xhigh on both Sol and Grok); I needed 3x$200 Codex subscriptions to cover my weekly usage.</p>
]]></description><pubDate>Mon, 21 Sep 2026 17:59:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=49790864</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=49790864</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49790864</guid></item><item><title><![CDATA[New comment by andreyvit in "Ask HN: Does anyone else feel like nothing matters anymore?"]]></title><description><![CDATA[
<p>Yes, AI is eating the relevancy of non-AI stuff. Is that a bad thing, though? I imagine that, during the industrial revolution, all the farming concepts also became irrelevant for many.<p>The times are a-changing; what's relevant now is figuring out the most efficient uses of AI, and keeping up with how that evolves month to month. Big opportunities there for people who can stay flexible.</p>
]]></description><pubDate>Tue, 18 Aug 2026 17:17:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=49349003</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=49349003</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49349003</guid></item><item><title><![CDATA[New comment by andreyvit in "Show HN: Shitty – fast terminal. Memory-unsafe and faster than yours"]]></title><description><![CDATA[
<p>I disagree that FaTTY is better than shitty. And I concur with the original commenter; an awesome name fit for the terminal proliferation age.</p>
]]></description><pubDate>Mon, 03 Aug 2026 05:36:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=49151594</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=49151594</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49151594</guid></item><item><title><![CDATA[New comment by andreyvit in "You only need the frontier model for one single edit"]]></title><description><![CDATA[
<p>It's hard to argue with the numbers, but starting with a (mostly true!) “research is the most expensive part” premise, this strikes me as an odd direction to go to optimize costs:<p>1. As others pointed out, we feed all the same research turns to a smaller model, so we pay the uncached price for all of them.<p>2. During research, the model typically reads more code than is relevant, to figure out what is relevant and what is not. If that's the expensive part, we keep paying for those turns with the most expensive model?<p>3. There is no quality comparison of the resulting code. Same plan != same code, and AI tokens during the initial implementation phase isn't the only cost attributable to the task.<p>I do the opposite:<p>1. Outsource research to a subagent, or several parallel subagents. Let them output the relevant code paths only. Using gpt-5.6-terra-high on Codex and sonnet on Claude. Merge results into a single per-task research file. This saves tokens and context window of the bigger model, and avoids re-researching after compactions and in subagents.<p>2. Use the smartest agent (Sol xhigh ultra / Fable max) for both planning and execution. Tell it to use the research file where possible.<p>3. Switch to dumber agents for verbose substeps, e.g. gpt-5.6-luna-medium / sonnet is enough to drive browser use.<p>Sadly, got no numbers to back this approach.<p>PS: Of course, different task complexities and codebase complexities demand different approaches. The most expensive part is actually the code review step, which they don't mention/have at all. We should come up with some sort of complexity grading, so that discussions like this can be contextualized.</p>
]]></description><pubDate>Tue, 21 Jul 2026 07:25:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=48989159</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=48989159</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48989159</guid></item><item><title><![CDATA[New comment by andreyvit in "Backtrack-Free Cursive"]]></title><description><![CDATA[
<p>Wondering how many people are like me and hate writing in cursive.<p>I stopped using it right after graduating high school (where it was required), never used in drafts after elementary school, and only ever used normal print letters in the university (and also included TeX commands because I was typesetting lecture notes later and was figuring out the optimal command set on the fly).</p>
]]></description><pubDate>Mon, 13 Jul 2026 09:18:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=48889900</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=48889900</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48889900</guid></item><item><title><![CDATA[New comment by andreyvit in "Stop Using JWTs"]]></title><description><![CDATA[
<p>Let me bite, as someone who usually hates JWT but sometimes uses it, including for browser auth.<p>Why JWT is bad: it's a cargo cult solving a non-existent issue in a more complicated way than necessary. An HTTPOnly session cookie containing just a random ID is shorter and easier to handle.<p>Why JWT is also bad: a typical way to use it exposes too much attack surface. Almost every JWT library has way too much functionality, supports multiple algorithms, and many people are too sloppy with their dependencies, so you probably haven't read every line of code that runs in your auth.<p>How to use JWT safely:<p>1. Have a use case that cannot be easier solved with just a random session identifier. For example, one party creates tokens and another unrelated party verifies them. If same party issues and validates tokens, you better have a super high load, unique use case -- but then you're senior enough to not take random advice from strangers.<p>2. Write your own JWT handling code. It's literally a few lines of code to create tokens and a few dozen to validate. Only implement the exact algorithms and claims you use.<p>3. In a typical scenario, JWT should still carry something like a user ID which you should immediately verify against a database. Stateless sessions doesn't mean no DB lookups on validation. If you DO authenticate based on the token alone, the token should be super short lived (seconds or single digit minutes).</p>
]]></description><pubDate>Tue, 16 Jun 2026 20:34:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=48561653</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=48561653</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48561653</guid></item><item><title><![CDATA[New comment by andreyvit in "Ask HN: Who is hiring? (June 2026)"]]></title><description><![CDATA[
<p>Bubblehouse | Integration Engineer | FULLY REMOTE | $70–110k/yr | Full-time<p>We're a fast-growing custom & private loyalty platform powering programs for household-name brands. Small, fully-remote team across the US and Europe.<p>We want a detail-obsessed, autonomous mid-to-senior engineer (~5–10 yrs) to investigate customer problems, drive integrations end to end, and own the specs that make them work.<p>You will use AI to its fullest, but will keep a very close eye on whatever that AI produces. As such, this role is less about coding, and more about figuring out what to build, how that best fits into the system, and why things are as they are, debugging edge cases, anticipating failure modes, talking to people, and plain old debugging.<p>Tech-wise, we're running on Golang, and using custom database engine on top of local key-value stores, colocating the storage and compute on dedicated hardware servers, and reading data directly from mmap'ed pages of the database. Ever came across HN saying that one can run Twitter on a single machine these days? We're doing that in production. Zero lines of React, few third-party dependencies carefully vetted, every line of JavaScript manually written, and we render HTML server-side like it's 2005.<p>You: detail-oriented to a fault, self-motivated about investigation/debugging work, comfortable spoken English for client calls, available 9am to noon in New York time.<p>We are straightforward, driven, personal, and a little messy. We all care, and we expect you to care too.<p>Details + how to apply: <a href="https://jobs.bubblehouse.com/integration-engineer/" rel="nofollow">https://jobs.bubblehouse.com/integration-engineer/</a></p>
]]></description><pubDate>Tue, 02 Jun 2026 19:37:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=48375155</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=48375155</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48375155</guid></item><item><title><![CDATA[Zoo 2: getting the most out of Codex]]></title><description><![CDATA[
<p>Article URL: <a href="https://tarantsov.com/meet-zoo-2/">https://tarantsov.com/meet-zoo-2/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48026755">https://news.ycombinator.com/item?id=48026755</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 05 May 2026 18:47:42 +0000</pubDate><link>https://tarantsov.com/meet-zoo-2/</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=48026755</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48026755</guid></item><item><title><![CDATA[New comment by andreyvit in "Ask HN: Who is hiring? (April 2026)"]]></title><description><![CDATA[
<p>Bubblehouse | Fully REMOTE | Full-Time | $200–250k | Principal Engineer<p>Bubblehouse is a fast-growing custom loyalty platform, tripling the revenue each year. Headquartered in NYC, the entire team is fully remote and spread across the globe. We power loyalty programs for brands like American Girl and Old Spice.<p>We’re expanding our lean team of extremely experienced developers. Companies are switching from other platforms thanks to the customizations and flexibility that we offer, enabled by our pace and technical excellence, which we intend to keep for years to come.<p>We run on Golang and use custom data storage on top of local key-value stores, colocating the storage and compute on dedicated hardware servers, and reading data directly from mmap’ed pages of the database. Ever came across HN saying that one can run Twitter on a single machine these days? We’re doing that in production.<p>Zero lines of React, almost zero third-party dependencies (carefully vetted), every line of JavaScript manually written with respect and understanding of the web platform. We render HTML server-side like it’s 2005.<p>Looking for:<p>1. Top to bottom understanding of the software stack, from the modern-ish web platform to CPU caches.<p>2. Thinking and problem solving outside the box. (We don’t _always_ go for unconventional solutions, but we do it often enough to require a person who can do justice considering the entire problem space at every step.)<p>3. Demonstrated ability and hunger to learn new things quickly. (Every month we’re doing things we have never done before.)<p>4. Broad experience across multiple programming paradigms, platforms and software stacks.<p>5. Demonstrated care for the software craftsmanship (which can take many forms).<p>6. Great spoken English, and ability to communicate 9am to noon in New York time zone.<p>We give you a literally fast-paced environment (with features delivered in days) where you need to solve very challenging problems with practical advanced technology, take on entrenched market leaders, and help entrepreneurs across small and large businesses delight their fans.<p>Send a plain text cover letter to andrey+hiring@bubblehouse.com. Help us see how you stand out. Summarize your experience. Link to 1–5 impressive things you’ve built and proud of, link to where we can see some of your code, include your portfolio/CV, describe the platforms and stacks you’re an expert in. How did you start programming? What are you most passionate about in technology? What are the most interesting or weird things you’ve done? What are your strongest held professional opinions? Please make your email easy to read, we’ll appreciate that.<p>(If you have applied before, no need to re-apply, we’ll reach out.)</p>
]]></description><pubDate>Wed, 01 Apr 2026 20:38:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=47606253</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=47606253</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47606253</guid></item><item><title><![CDATA[New comment by andreyvit in "Ask HN: Who is hiring? (March 2026)"]]></title><description><![CDATA[
<p>Bubblehouse | Fully REMOTE | Full-Time | $200–250k | Principal Engineer<p>Bubblehouse is a fast-growing custom loyalty platform, tripling the revenue each year. Headquartered in NYC, the entire team is fully remote and spread across the globe. We power loyalty programs for brands like American Girl and Old Spice.<p>We’re expanding our lean team of extremely experienced developers. Companies are switching from other platforms thanks to the customizations and flexibility that we offer, enabled by our pace and technical excellence, which we intend to keep for years to come.<p>We run on Golang and use custom data storage on top of local key-value stores, colocating the storage and compute on dedicated hardware servers, and reading data directly from mmap’ed pages of the database. Ever came across HN saying that one can run Twitter on a single machine these days? We’re doing that in production.<p>Zero lines of React, almost zero third-party dependencies (carefully vetted), every line of JavaScript manually written with respect and understanding of the web platform. We render HTML server-side like it’s 2005.<p>Looking for:<p>1. Top to bottom understanding of the software stack, from the modern-ish web platform to CPU caches.<p>2. Thinking and problem solving outside the box. (We don’t _always_ go for unconventional solutions, but we do it often enough to require a person who can do justice considering the entire problem space at every step.)<p>3. Demonstrated ability and hunger to learn new things quickly. (Every month we’re doing things we have never done before.)<p>4. Broad experience across multiple programming paradigms, platforms and software stacks.<p>5. Demonstrated care for the software craftsmanship (which can take many forms).<p>6. Great spoken English, and ability to communicate 9am to noon in New York time zone.<p>We give you a literally fast-paced environment (with features delivered in days) where you need to solve very challenging problems with practical advanced technology, take on entrenched market leaders, and help entrepreneurs across small and large businesses delight their fans.<p>Send a plain text cover letter to andrey+hiring@bubblehouse.com. Help us see how you stand out. Summarize your experience. Link to 1–5 impressive things you’ve built and proud of, link to where we can see some of your code, include your portfolio/CV, describe the platforms and stacks you’re an expert in. How did you start programming? What are you most passionate about in technology? What are the most interesting or weird things you’ve done? What are your strongest held professional opinions? Please make your email easy to read, we’ll appreciate that.<p>(If you have applied before, no need to re-apply, we’ll reach out.)</p>
]]></description><pubDate>Mon, 02 Mar 2026 20:51:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=47223881</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=47223881</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47223881</guid></item><item><title><![CDATA[New comment by andreyvit in "Lite^3, a JSON-compatible zero-copy serialization format"]]></title><description><![CDATA[
<p>Hey, I'm sorry, but your Postgres example is completely wrong: because of MVCC, a new version of the data will be stored on every update regardless of the choice of data representation, making the in-place mutability much less of an advantage. (It might be faster than a pair of a compact immutable format + mutable patch layer on top, or it might be slower; the answer ain't immediately obvious to me!)<p>What you should be imagining instead is a document database entirely built around Lite³-encoded documents, using something like rollback journals instead of MVCC.<p>We're doing something similar in my company, storing zero-serialization immutable [1] docs in a key-value store (which are read via mmap with zero copying disk-to-usage) and using a mutable [2] overlay patch format for updates. In our analytics use cases, compact storage is very important, in-place mutability is irrelevant (again because of Copy-on-Write at the key-value store level), and the key advantage is zero serialization overhead.<p>What I'm saying is that Lite³ is a very timely and forward-looking format, but the merging of immutable and mutable formats into one carries tradeoffs that you probably want to discuss, and the discussion into the appropriate use cases is very much worth having.<p>[1] <a href="https://github.com/andreyvit/edb/blob/main/kvo/immutable.go" rel="nofollow">https://github.com/andreyvit/edb/blob/main/kvo/immutable.go</a>
[2] <a href="https://github.com/andreyvit/edb/blob/main/kvo/mutable.go" rel="nofollow">https://github.com/andreyvit/edb/blob/main/kvo/mutable.go</a></p>
]]></description><pubDate>Fri, 19 Dec 2025 12:16:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=46324996</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=46324996</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46324996</guid></item><item><title><![CDATA[New comment by andreyvit in "Time Warp IDE – Complete environment for old-school coding"]]></title><description><![CDATA[
<p>Hey, could I ask what percentage of the repo has been vibe coded, roughly? Just wondering.</p>
]]></description><pubDate>Fri, 10 Oct 2025 01:21:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=45534647</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=45534647</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45534647</guid></item><item><title><![CDATA[New comment by andreyvit in "Ask HN: Who is hiring? (October 2025)"]]></title><description><![CDATA[
<p>Bubblehouse | Fully REMOTE | Full-Time | $200–250k | Principal Engineer<p>Bubblehouse is a fast-growing custom loyalty platform, tripling the revenue each year. Headquartered in NYC, the entire team is fully remote and spread across the globe. We power loyalty programs for brands like American Girl and Old Spice.<p>We’re expanding our lean team of extremely experienced developers. Companies are switching from other platforms thanks to the customizations and flexibility that we offer, enabled by our pace and technical excellence, which we intend to keep for years to come.<p>We run on Golang and use custom data storage on top of local key-value stores, colocating the storage and compute on dedicated hardware servers, and reading data directly from mmap’ed pages of the database. Ever came across HN saying that one can run Twitter on a single machine these days? We’re doing that in production.<p>Zero lines of React, almost zero third-party dependencies (carefully vetted), every line of JavaScript manually written with respect and understanding of the web platform. We render HTML server-side like it’s 2005.<p>Looking for:<p>1. Top to bottom understanding of the software stack, from the modern-ish web platform to CPU caches.<p>2. Thinking and problem solving outside the box. (We don’t _always_ go for unconventional solutions, but we do it often enough to require a person who can do justice considering the entire problem space at every step.)<p>3. Demonstrated ability and hunger to learn new things quickly. (Every month we’re doing things we have never done before.)<p>4. Broad experience across multiple programming paradigms, platforms and software stacks.<p>5. Demonstrated care for the software craftsmanship (which can take many forms).<p>6. Great spoken English, and ability to communicate 9am to noon in New York time zone.<p>We give you a literally fast-paced environment (with features delivered in days) where you need to solve very challenging problems with practical advanced technology, take on entrenched market leaders, and help entrepreneurs across small and large businesses delight their fans.<p>Send a plain text cover letter to andrey+hiring@bubblehouse.com. Help us see how you stand out. Summarize your experience. Link to 1–5 impressive things you’ve built and proud of, link to where we can see some of your code, include your portfolio/CV, describe the platforms and stacks you’re an expert in. How did you start programming? What are you most passionate about in technology? What are the most interesting or weird things you’ve done? What are your strongest held professional opinions? Please make your email easy to read, we’ll appreciate that.<p>(If you have applied before, no need to re-apply, we’ll reach out.)</p>
]]></description><pubDate>Thu, 02 Oct 2025 10:30:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=45448017</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=45448017</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45448017</guid></item><item><title><![CDATA[My all-star zoo, or why I hired Linus Torvalds and Rob Pike for my AI team]]></title><description><![CDATA[
<p>Article URL: <a href="https://tarantsov.com/all-star-zoo/">https://tarantsov.com/all-star-zoo/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45415972">https://news.ycombinator.com/item?id=45415972</a></p>
<p>Points: 8</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 29 Sep 2025 16:53:26 +0000</pubDate><link>https://tarantsov.com/all-star-zoo/</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=45415972</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45415972</guid></item><item><title><![CDATA[New comment by andreyvit in "Delete FROM users WHERE location = 'Iran';"]]></title><description><![CDATA[
<p>I believe “vast manority” may be a stretch; do you happen to know if there’s a way to quantify that? In my bubble, almost everyone that I personally know and who generally has reasonable beliefs, is on the Israel’s side of this conflict.</p>
]]></description><pubDate>Thu, 25 Sep 2025 01:07:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=45368074</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=45368074</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45368074</guid></item><item><title><![CDATA[New comment by andreyvit in "Delete FROM users WHERE location = 'Iran';"]]></title><description><![CDATA[
<p>I’m not sure if you’re actually asking or not, but in case you want to hear an answer, it’s because Israel is considered to be defending itself after a horrible attack, not that dissimilar to Ukraine really in some people’s view (me included). This goes back to a worldview where residents of a country share a portion of the blame for their country’s actions. This view is not universal, but has a certain mindshare (again, myself included), and if you imagine it fair for residents of a place to share the fate caused by the cumulative actions of that place, it’s not a big stretch to see how Israel’s actions can be considered natural and just by some, and so can the sanctions against residents of Iran and Russia.</p>
]]></description><pubDate>Tue, 23 Sep 2025 22:11:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=45353432</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=45353432</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45353432</guid></item><item><title><![CDATA[New comment by andreyvit in "Ask HN: Who is hiring? (September 2025)"]]></title><description><![CDATA[
<p>Bubblehouse | Fully REMOTE | Full-Time | $200-250k | Principal Engineer<p>Bubblehouse is a fast-growing custom and private loyalty platform. Headquartered in NYC, the entire team is fully remote and spread across US and Europe. We power loyalty programs for large brands, including household names.<p>We’re again expanding our lean team of extremely experienced developers. Companies are switching from other platforms thanks to the customizations and flexibility that we offer, enabled by our pace and technical excellence, which we intend to keep for years to come.<p>Tech-wise, we’re running on Golang, and using custom data storage on top of local key-value stores, colocating the storage and compute on dedicated hardware servers, and reading data directly from mmap’ed pages of the database. Ever came across HN saying that one can run Twitter on a single machine these days? We’re doing that in production.<p>Zero lines of React, almost zero third-party dependencies (carefully vetted), every line of JavaScript manually written with respect and understanding of the web platform. We render HTML server-side like it’s 2005.<p>Looking for:<p>1. Top to bottom understanding of the software stack, from the modern-ish web platform to CPU caches.<p>2. Thinking and problem solving outside the box. (We don’t _always_ go for unconventional solutions, but we do it often enough to require a person who can do justice considering the entire problem space at every step.)<p>3. Demonstrated ability and hunger to learn new things quickly. (Every month we’re doing things we have never done before.)<p>4. Broad experience across multiple programming paradigms, platforms and software stacks.<p>5. Demonstrated care for the software craftsmanship (which can take many forms).<p>6. Great spoken English, and ability to communicate 9am to noon in New York time zone.<p>We give you a literally fast-paced environment (with features delivered in days) where you need to solve very challenging problems with practical advanced technology, take on entrenched market leaders, and help entrepreneurs across small and large businesses delight their fans.<p>Send a plain text cover letter to andrey+hiring@bubblehouse.com. Help us see how you stand out. Summarize your experience. Link to 1–5 impressive things you’ve built and proud of, link to where we can see some of your code, include your portfolio/CV, describe the platforms and stacks you’re an expert in. How did you start programming? What are you most passionate about in technology? What are the most interesting or weird things you’ve done? What are your strongest held professional opinions? Please make your email easy to read, we’ll appreciate that.<p>(If you have applied before, no need to re-apply, we’ll reach out.)</p>
]]></description><pubDate>Mon, 01 Sep 2025 22:27:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=45097165</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=45097165</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45097165</guid></item><item><title><![CDATA[New comment by andreyvit in "Ask HN: Freelancer? Seeking freelancer? (May 2025)"]]></title><description><![CDATA[
<p>SEEKING FREELANCER | Bubblehouse | FULLY REMOTE (all countries) | Magento Developer | 0-10 hrs/week ongoing (flexible)<p>Bubblehouse provides a white-glove, custom loyalty platform tailored for e-commerce brands — from small enthusiast shops to large enterprises (for example, we're powering loyalty for one of Mattel's brands). We're fast, lean, and love solving niche loyalty challenges.<p>We need a reliable Magento/PHP freelancer to tackle occasional Magento 2 tasks related to our Magento integration and problem solving for clients. You’ll be our go-to person for ongoing development and problem-solving related to our Magento integration module.<p>The ideal candidate:<p>- Has solid hands-on experience with Magento 2 internals (custom modules, observers, integrations).<p>- Writes clean, modern PHP, uses Composer & Git confidently.<p>- Knows how to diagnose tricky Magento issues.<p>- Can overlap partially with our team between 9 am – noon New York time for quick check-ins while actively engaged on our tasks.<p>- Can self-direct, communicate clearly, and invoice cleanly.<p>Work style:<p>- Fully remote, async-first. Occasional calls only as needed, we hate unnecessary calls.<p>- Compact, friendly, no-nonsense team.<p>- Quick task turnarounds, minimal bureaucracy.<p>Interested? Fill out this form to apply: <a href="https://bubblehouse.typeform.com/to/wsGgLyb2" rel="nofollow">https://bubblehouse.typeform.com/to/wsGgLyb2</a></p>
]]></description><pubDate>Thu, 01 May 2025 20:19:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=43862904</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=43862904</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43862904</guid></item><item><title><![CDATA[New comment by andreyvit in "Go Data Structures: Interfaces (2009)"]]></title><description><![CDATA[
<p>@dang Probably needs (2009)?</p>
]]></description><pubDate>Sun, 09 Feb 2025 08:28:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=42989326</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=42989326</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42989326</guid></item><item><title><![CDATA[New comment by andreyvit in "Why do bees die when they sting you? (2021)"]]></title><description><![CDATA[
<p>I think your example is perfect. What he gave you is not a complete answer to why, because, as you say, he might have been doing a number of other jobs. So why roofs specifically? Add the description of how he inherited his father’s carpenter business but whenever he visited clients, they all had leaky roof, yadayada, and that he now feels happy enough to not look for any further changes, and you get the kind of answer OP is looking for.</p>
]]></description><pubDate>Mon, 20 Jan 2025 09:54:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=42766915</link><dc:creator>andreyvit</dc:creator><comments>https://news.ycombinator.com/item?id=42766915</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42766915</guid></item></channel></rss>