<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: trb</title><link>https://news.ycombinator.com/user?id=trb</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 13 Apr 2026 08:58:24 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=trb" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by trb in "Claude Code is being dumbed down?"]]></title><description><![CDATA[
<p>I've commented on this ticket before: <a href="https://github.com/anthropics/claude-code/issues/8477#issuecomment-3886687124" rel="nofollow">https://github.com/anthropics/claude-code/issues/8477#issuec...</a><p>The thinking mode is super-useful to me as I _often_ saw the model "think" differently from the response. Stuff like "I can see that I need to look for x, y, z to full understand the problem" and then proceeds to just not do that.<p>This is helpful as I can interrupt the process and guide it to actually do this. With the thinking-output hidden, I have lost this avenue for intervention.<p>I also want to see what files it reads, but not necessarily the output - I know most of the files that'll be relevant, I just want to see it's not totally off base.<p>Tl;dr: I would _love_ to have verbose mode be split into two modes: Just thinking and Thinking+Full agent/file output.<p>---<p>I'm happy to work in verbose mode. I get many people are probably fine with the standard minimal mode. But at least in my code base, on my projects, I still need to perform a decent amount of handholding through guidance, the model is not working for me the way you describe it working for you.<p>All I need is a few tools to help me intervene earlier to make claude-code work _much_ better for me. Right now I feel I'm fighting the system frequently.</p>
]]></description><pubDate>Wed, 11 Feb 2026 23:01:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=46982465</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=46982465</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46982465</guid></item><item><title><![CDATA[New comment by trb in "The era of open voice assistants"]]></title><description><![CDATA[
<p>Finding microphones that look nice, can pick up voice at high enough quality to extract commands and that cover an entire room is surprisingly hard.<p>If this device delivers on audio quality it's totally worth it at $59.</p>
]]></description><pubDate>Fri, 20 Dec 2024 03:59:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=42468158</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=42468158</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42468158</guid></item><item><title><![CDATA[New comment by trb in "Where Does the Magic Go as We Grow Older? (2020)"]]></title><description><![CDATA[
<p>For me, I think it has to do with ..just having done more, experienced more.<p>When I built blanket forts as a child it was something new, my first attempt at building something. It was exiting to figure out how to do it, and enjoy the end product. After a few of those it became a bit more usual, and I started doing other things - play with model cars, build lego sets, etc.<p>I recently tried welding and I felt that same tinge of excitement - I'm gluing metal together! It's basically magic, I'm taking separate parts and turning them into one. I'm not welding purposefully or to build something, I just really like the act of welding.<p>Welding was new to me, I never experienced it. I think as a child I everything was new to me, the way welding is. I approached the world with a curiosity that drove me to play with it, to figure it out.<p>But now I've figured a lot of it out. It's not as fun to play with anymore, because I've exhausted all the angles of play I could come up with (and I did that a long time ago).<p>I still find that curiosity that drives me to play with something, to figure it out - but I have to look for it, find aspects of life I haven't experienced yet.</p>
]]></description><pubDate>Sat, 16 Nov 2024 21:58:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=42159712</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=42159712</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42159712</guid></item><item><title><![CDATA[New comment by trb in "Compare Google, Bing, Marginalia, Kagi, Mwmbl, and ChatGPT"]]></title><description><![CDATA[
<p>Same here, I was curious about Kagis low ranking, and couldn't replicate the search results. Also saw ublock Origin on #3, good results for tires, transitors and snow, etc. I've never used any of the Kagi search result weighing features.<p>Ctrl+F on the page for "System prompt" doesn't show any hits. Given how important those are for ChatGPT (another thought - was the author testing GPT3.5 or 4?) I'm not sure how much weight to put into the ChatGPT results either.<p>Not sure how much I can take away from this comparison.</p>
]]></description><pubDate>Sun, 31 Dec 2023 07:06:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=38822362</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=38822362</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38822362</guid></item><item><title><![CDATA[New comment by trb in "Ask HN: Monorepo vs. Multi-Repo"]]></title><description><![CDATA[
<p>I've experienced both, and I prefer the mono repo.<p>Our challenges with multiple repos mostly revolved around builds and orchestration. We had to apply all build/deploy changes to all repos, and that increased the chance of doing some small thing wrong. Finding what exactly is wrong with one repo that should be the same as all the others was like one of those "find the differences" pictures. Really annoying.<p>This is more microservices than multi repo related, but making sure all the different services are released in sync was hard and annoying and often caused issues. Eg a specific API was updated and released but the for a consumer had to be rolled back and the rolled back version wasn't compatible with the new API. So current version and roll back wasnt an option. Rolling back the API would require rolling back all consumers but crap, one of the consumers applied a big migration to our core database and rolling that bank would take forever. And so on.<p>Just tons of little edge cases that went wrong at the worst time because it was so hard to foresee all the issues.<p>Monorepo and monolith is so comfy. Want to share code? Move it up one or two directories and import from there. No issues with two bundled react versions in two builds. Easy to refer to code from other teams, never an issue that someone forgot to add you to that one repo almost no one uses but that you need to commit to during firefighting.<p>I'm not saying multi repos/micro services can't work, but it's hard - you need strong processes that prevent people from being lazy, you need monitoring and management well defined, you need extra tooling that's aware of the repo structure, you need a strong story around migrations, and so much more.<p>I currently work with a mono repo 
monolith that over a thousand devs contribute to daily and it's Cindy comfy. It feels much easier to fix too many devs in one repo (primarily via strong compartmentalization) than to fix too many repos/services</p>
]]></description><pubDate>Tue, 14 Dec 2021 07:53:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=29549311</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=29549311</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29549311</guid></item><item><title><![CDATA[New comment by trb in "Ask HN: Dark mode for HN please?"]]></title><description><![CDATA[
<p>fdsafdsafdsa</p>
]]></description><pubDate>Sat, 16 May 2020 06:23:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=23200928</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=23200928</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23200928</guid></item><item><title><![CDATA[New comment by trb in "Roadmap to becoming a React developer in 2018"]]></title><description><![CDATA[
<p>React is a view library that doesn't even provide a way to do XHR requests. Angular is a complete framework. They are very much hammer and screwdriver, completely different and incomparable tools.<p>There seem to be a lot of people thinking front-end is just a mess of different options all doing the same thing. And the same people show little understanding of the complexities and nuances of front-end solutions.</p>
]]></description><pubDate>Fri, 06 Jul 2018 20:39:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=17474909</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=17474909</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17474909</guid></item><item><title><![CDATA[New comment by trb in "Ask HN: Who is hiring? (November 2016)"]]></title><description><![CDATA[
<p>Hi there,<p>I'm happy to answer any questions you have, salary too, if you send me an email. Sadly I can't publicly disclose our salary range, so if you're willing to bear with me and jump through the emailing-hoop I'd appreciate it.<p>- Thomas</p>
]]></description><pubDate>Wed, 02 Nov 2016 04:28:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=12852252</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=12852252</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=12852252</guid></item><item><title><![CDATA[New comment by trb in "Ask HN: Who is hiring? (November 2016)"]]></title><description><![CDATA[
<p>Lasso Data Systems <a href="http://www.lassocrm.com/" rel="nofollow">http://www.lassocrm.com/</a> | Senior Front-End Developer | Vancouver, BC, Canada | Full-time | REMOTE or On-site, CANADA only<p>Lasso is a leading CRM for new home builders and real estate developers. We've been modernizing our app for the last few years, moving from a PHP stack to an Angular.js app and a Java-based REST API.<p>Now that we're done with most of the legacy-porting work, we've got a lot of new features to build and that's where you would come in.<p>As a Senior Front-End Developer you would take requirements from the Product Lead, create wire-frames and mock-ups, gather feedback via user interviews and finally implement the features in ES6, RxJS, Bootstrap and Angular.<p>We offer:<p>- full-time remote work. Most of our developers are working remotely all over Canada. However, if you prefer working in the office you're welcome to go there. It's located in Richmond, BC.<p>- when you start, we'll provide you with any hardware of your choosing<p>- a tools budget of up to $300 per transaction you can use to buy whatever you need to stay productive - no authorization needed<p>- formal education matching (up to $1500 yearly) and funding for other continued-learning courses, conferences, and workshops<p>- competitive Vancouver salary<p>Lasso has a very trusting and open work-environment, without fixed work-hours, imposed dead-lines, or in-office requirements. That does require you to have good time management skills, and be comfortable with self-directed work.<p>If you're interested or want to know more details, please message me at thomas@lassocrm.com (include your resume if you're applying :) ). I'm the front-end lead and have been happily working here for four years.</p>
]]></description><pubDate>Tue, 01 Nov 2016 18:54:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=12849033</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=12849033</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=12849033</guid></item><item><title><![CDATA[New comment by trb in "Ask HN: My startup has failed. What comes next?"]]></title><description><![CDATA[
<p>This happened to me. I worked on a side project in high school that grew into a company after about eight years of work. Three years and a pivot later we gave up due to decreasing traction, and returned whatever funds were left to the investors.<p>I moved back to my parents for about a year to work on other side projects, but ended up looking for a job and found an awesome small company that I'm very happy working for. I'm still working on market-focused side projects and without the stress of having to make money/gain traction it's a lot more fun. I really prefer this setup, especially since a small company allows me to scratch most product-development itches I have since there's not a lot of bureaucracy.<p>A lesson I've learned: Quit early. If you feel bad about the project right now, end it as soon as possible As in, tomrrow. Don't stick around waiting for the big break. I've done exactly that, and while we actually ended up with some paying customers after our pivot, we would've had to achieve an insane growth to be worth anything to my co-founder and me due to the dilution of our shares. It's not worth basically building a new company for the smaller fraction of shares you have after taking an investment.</p>
]]></description><pubDate>Mon, 29 Jun 2015 04:16:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=9796378</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=9796378</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=9796378</guid></item><item><title><![CDATA[New comment by trb in "Why do most public toilet doors open inwards?"]]></title><description><![CDATA[
<p>So..I wipe, touch the door handle and then wash my hands?</p>
]]></description><pubDate>Tue, 08 Jan 2013 06:50:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=5025196</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=5025196</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=5025196</guid></item><item><title><![CDATA[New comment by trb in "How to Make Your Site Look Half-Decent in Half an Hour"]]></title><description><![CDATA[
<p>Twitter bootstrap makes prototypes usable. It does not replace good design on a product, and no one claims that.<p>If you are developer, please use it on your next prototype instead of throwing together some html and css.</p>
]]></description><pubDate>Sun, 16 Dec 2012 04:52:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=4927373</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=4927373</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=4927373</guid></item><item><title><![CDATA[New comment by trb in "How to Make Your Site Look Half-Decent in Half an Hour"]]></title><description><![CDATA[
<p>Please don't be so harsh on the author.<p>She's not saying "this is going to be a professional design for your next project", the title itself contains "half-decent".<p>She's providing insightful tips for developers to make their pet projects look..like they're not designed by engineers (we do tend to make a mess of things).<p>And the advice she gives is perfectly fine for exactly that. There are fonts that look good together, subtly textured backgrounds do look better than simple, flat colored one's and using basic color theory upgrades a websites look (teal vs. orange, <i>cough</i>). Together, they make something that looks half-decent.<p>Just like the author claimed.</p>
]]></description><pubDate>Sun, 16 Dec 2012 04:49:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=4927366</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=4927366</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=4927366</guid></item><item><title><![CDATA[New comment by trb in "25-GPU cluster cracks every standard Windows password in less than 6 hours"]]></title><description><![CDATA[
<p>Intuition, most of the time. Here are some quite common ones:<p><a href="http://www.splashdata.com/press/PR121023.htm" rel="nofollow">http://www.splashdata.com/press/PR121023.htm</a><p>There's no reason why you would have a three attempts limit, or five, or ten, and so on. If I get three per account, I'll just use the top three and try again different accounts. If I get three attempts per IP, I'll use many different IPs and do the same.<p>To remain user friendly, delays are the way to go. E.g. you could have three different delays that add to each other: Account-level, IP-level and global. Increase each with every failed attempt up to 30 seconds of wait time, and add them together. This will slow down brute force attempts to the point where they're useless, while still allowing legitimate users to login (just with a little inconvenience).<p>As a result, if I failed three attempts with one account, and three one next, etc., my IP-level limit will prohibit me from moving on to other accounts. If I try a lot of passwords on one account, the account-level and IP-level ones will slow me down. And if there's a distributed attack with many IPs, the global delay will reduce the damage the attack can do. All the while legitimate users can still use the service.</p>
]]></description><pubDate>Mon, 10 Dec 2012 06:18:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=4897801</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=4897801</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=4897801</guid></item><item><title><![CDATA[New comment by trb in "How would I get started?"]]></title><description><![CDATA[
<p>A lot of this information might already be available, just not in the obvious places. An example:<p>"how to start an airline" came up a couple of times in this discussion. If you ask an existing airline "How should I begin?", they might see you as a future competitor or as a waste of time - either way, they won't gain anything by helping you.<p>But plane manufactures do gain something from helping you. Even if only every millionth guy looking for advice actually buys a plane, it's still worth it for them. In face, you can check out Boings guide on how to start an airline:<p><a href="http://www.boeing.com/commercial/startup/" rel="nofollow">http://www.boeing.com/commercial/startup/</a><p>I'd wager that it's the same in other industries. If you want to start a cable company, talk to the people that'd profit off of it - people selling routers, contractors that build the infrastructure, helpline operators, etc.<p>Starting a wiki is a great idea, and there's already some information you could copy/link to (depending on the license). You'd have some information right off the start.</p>
]]></description><pubDate>Sun, 09 Dec 2012 23:16:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=4896606</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=4896606</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=4896606</guid></item><item><title><![CDATA[New comment by trb in "Show HN: I built a thing"]]></title><description><![CDATA[
<p>Is there anything that prevents this from being a phone app and sell it in one of the app stores?<p>You could abstract away all the web and phone (press '9') stuff and just have a button "Open the door? Yes/No" if someone activates the buzzer.<p>Maybe add some easy management for pins that:<p>- always open (roommates/family/friends)<p>- open only one time (deliveries, not-so-close-friends)<p>- open only under certain conditions (time of day, day of 
month, etc)<p>Make it possible to easily share those pin numbers via SMS, 
Facebook, email, etc.<p>I think you have a product that's great for access management. You should highlight the additional benefits in your marketing, e.g.:<p>- easy to invite friends over for dinner<p>- easy to share apartment without the need for new keys<p>- easy to revoke access<p>- easy to let cleaning staff in during certain times of day<p>Another thought: Market it as a helpful add-on for AirBnB customers. You don't have to give someone a key to your apartment, just a PIN that only works for the time they rent the apartment (this is also useful for sub-leases). You can revoke access at any time, no matter where you are (big problem with keys).<p>Short version: I think you'd have a better chance packaging your product as a mobile app, abstracting away all the web/phone stuff and sell it as "entry management" instead of "automated buzzer".</p>
]]></description><pubDate>Sun, 04 Nov 2012 01:07:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=4738514</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=4738514</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=4738514</guid></item><item><title><![CDATA[New comment by trb in "Show HN: UChicago admissions asked me to find Waldo. I did."]]></title><description><![CDATA[
<p>It works for me, so it's publicly accessible now.</p>
]]></description><pubDate>Thu, 01 Nov 2012 05:30:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=4726345</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=4726345</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=4726345</guid></item><item><title><![CDATA[New comment by trb in "17 Year Old Builds a Better Search Engine"]]></title><description><![CDATA[
<p>You can wrap your search terms in " (double quotes), but they also offer a verbatim search options, which deactivates most fuzziness.</p>
]]></description><pubDate>Fri, 20 Jul 2012 06:31:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=4269707</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=4269707</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=4269707</guid></item><item><title><![CDATA[New comment by trb in "500px Terms of Service"]]></title><description><![CDATA[
<p>Aren't those clauses in there to cover transferring files to CDNs or backup services?<p>I'd interpret the "Basically" section as a display of their intent, since the full terms require a lot of legalese to protect 500px.<p>As NyxWulf and other commentators said, the "Basically" sections would probably play a role in a law suit anyway, so they couldn't hide contradicting terms in the left section.</p>
]]></description><pubDate>Thu, 12 Apr 2012 20:05:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=3833955</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=3833955</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=3833955</guid></item><item><title><![CDATA[New comment by trb in "Larry Page: one-year anniversary of taking over Google's CEO"]]></title><description><![CDATA[
<p>Could you please offer an argument instead of an opinion? Why should Google fulfill any of your demands, aside from you wanting it?<p>Could you please outline how google.com is turning into a web portal like yahoo.com?</p>
]]></description><pubDate>Wed, 04 Apr 2012 21:32:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=3799961</link><dc:creator>trb</dc:creator><comments>https://news.ycombinator.com/item?id=3799961</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=3799961</guid></item></channel></rss>