<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: lojack</title><link>https://news.ycombinator.com/user?id=lojack</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 27 Aug 2026 11:55:28 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=lojack" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by lojack in "You should write an agent"]]></title><description><![CDATA[
<p>> This post is a <insert-startup-here> advertisement<p>same thing you said but in a different context... sir, this is a hackernews</p>
]]></description><pubDate>Fri, 07 Nov 2025 03:12:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=45843198</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=45843198</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45843198</guid></item><item><title><![CDATA[New comment by lojack in "Claude Opus 4.1"]]></title><description><![CDATA[
<p>Lets see: We have GitHub, and GitHub Enterprise Server, and a GitHub API. Then there's the command line and a desktop version, and one that is just browser based I guess. Then you have different pricing plans, Free, Team, and Enterprise? How is Enterprise different than GitHub Enterprise Server? It's very easy to find evidence to confirm our bias.<p>Claude code is actually one of the most straightforward products I've used as far as onboarding goes. You download the tool, and follow the instructions. You can use one of the 3 plans, and everything else is automatic. You can figure out token usage and what models and versions to use and how to use MCP servers and all of that -- there's a lot of power -- but you don't need to do ANY of that to get started trying it out.<p>You're not being:<p>> That critic who doesn't try the stuff he criticizes<p>You're being:<p>> That critic who is trying to confirm their biases</p>
]]></description><pubDate>Wed, 06 Aug 2025 01:44:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=44806740</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=44806740</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44806740</guid></item><item><title><![CDATA[New comment by lojack in "Focus and Context and LLMs"]]></title><description><![CDATA[
<p>Definitely not a prompt and pray type thing, though you can do that if you choose. It shows its work, in the newest version there's three modes (planning, executing, auto accepting edits). You can also hit Esc at any time to redirect as you see it going in the wrong direction.</p>
]]></description><pubDate>Mon, 09 Jun 2025 01:57:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=44220848</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=44220848</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44220848</guid></item><item><title><![CDATA[New comment by lojack in ""Ensuring Accountability for All Agencies" – Executive Order"]]></title><description><![CDATA[
<p>> The reason for this law is simply to bring the various agencies under executive authority in line.<p>Just to be very clear, since it actually matters... this is an executive order, not a law. No one voted on it, it was just declared to be true.</p>
]]></description><pubDate>Thu, 20 Feb 2025 03:29:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=43110774</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=43110774</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43110774</guid></item><item><title><![CDATA[New comment by lojack in "In my life, I've witnessed three elite salespeople at work"]]></title><description><![CDATA[
<p>> In every place I’ve worked, outside of independent contracting, the sales person didn’t do the trench work.<p>Have you ever worked at a place where the sales people promised features that didn't exist? A bad sales person can ensure you're in the trenches doing work that  is urgent but not important. A good sales person anticipates requirements, identifies when they're not currently available, and proactively works with the right people to get the important features prioritized strategically.<p>The sales people talk to the customers, so from a certain perspective they're the ones in the trenches and talking to customers while you're in the back office plugging away at a keyboard.</p>
]]></description><pubDate>Mon, 06 Jan 2025 02:34:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=42607035</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=42607035</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42607035</guid></item><item><title><![CDATA[New comment by lojack in "Show HN: Venmo Unofficial API"]]></title><description><![CDATA[
<p>The first time I had the plug pulled on a public API a product I worked on used sucked pretty bad. At this point its happened to me so many times that its just another line item of business risks thats an inevitability. I've never worked at a company that failed to recover as a result. Then again, I've never worked at a company whose entire business hinged on one single API.<p>The likelihood of things breaking or behaving in unexpected ways are data points I think about when assessing risk irrespective of whether an API is public or not. In some industries even the public APIs are more risky than using the unofficial Venmo API likely is.</p>
]]></description><pubDate>Tue, 19 Nov 2024 04:58:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=42180196</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=42180196</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42180196</guid></item><item><title><![CDATA[New comment by lojack in "SMURF: Beyond the Test Pyramid"]]></title><description><![CDATA[
<p>> Anyone who's ever had to work on a system that had copious unit tests deep within will know the pain of not just changing code to fix a bug, but having to change a half-dozen tests because your function interfaces have now changed and a healthy selection of your tests refuse to run anymore.<p>In my experience this problem tends to be caused by heavily mocking things out more so than the unit tests themselves. Mocking things out can be a useful tool with its own set of downsides, but should not be treated as a requirement for unit tests. Tight coupling in your codebase can also cause this, but in that case I would say the unit tests are highlighting a problem and not themselves a problem.<p>Perhaps you're talking about some other aspect of unit tests? If that's the case then I'd love to hear more.</p>
]]></description><pubDate>Sun, 20 Oct 2024 04:02:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=41892767</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=41892767</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41892767</guid></item><item><title><![CDATA[New comment by lojack in "Show HN: Brew.fm – Let bots discover new music on Spotify for you"]]></title><description><![CDATA[
<p>As with all music recommendation engines, I want the ability to remove things from the mix. I have zero interest in music similar to Kidz Bop, it's just something I happen to play for my kids.</p>
]]></description><pubDate>Sun, 21 Aug 2022 03:49:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=32537253</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=32537253</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32537253</guid></item><item><title><![CDATA[New comment by lojack in "Ask HN: How do you deal with rude interviewers?"]]></title><description><![CDATA[
<p>Interviewers tend to have one of two different mentalities...<p>Some are trying to see you fail. They're looking for a reason to say "no". They tend to not be of any help on a problem, will often try to find ways to trick you. They also tend to have an ego problem -- you need to prove to them that you're worthy of joining the team.<p>The other class of interviewers are those that want you to succeed. They will answer questions, and help clarify things. Even if you are unqualified for the role, and they know it, they still want to help you along so they can see your best work. People that shut down when they get nervous tend to open up to these interviewers. They also tend to be the people that are more pleasant to work with.</p>
]]></description><pubDate>Wed, 11 May 2022 17:44:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=31343351</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=31343351</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31343351</guid></item><item><title><![CDATA[New comment by lojack in "immudb – world’s fastest immutable database, built on a zero trust model"]]></title><description><![CDATA[
<p>but is a traditional database cryptographically secure? if a super user with write permissions (or, say, direct access to the physical data store) modifies records are users able to validate the integrity of the data?</p>
]]></description><pubDate>Mon, 27 Dec 2021 21:01:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=29706734</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=29706734</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29706734</guid></item><item><title><![CDATA[New comment by lojack in "Ask HN: Startup acquired by a large company and it sucks. What to do?"]]></title><description><![CDATA[
<p>I also said:<p>> Similarly, the work OP is doing may be much less important than they think it is.</p>
]]></description><pubDate>Wed, 22 Dec 2021 15:00:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=29650180</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=29650180</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29650180</guid></item><item><title><![CDATA[New comment by lojack in "Ask HN: Startup acquired by a large company and it sucks. What to do?"]]></title><description><![CDATA[
<p>Good leadership that sets clear direction and initiatives followed by good middle management that takes these initiatives and disseminates it into something relevant and actionable by the teams doing the work. If you're lacking this then its worth trying to ask for this information to help inform your decisions.<p>For the record I fully acknowledge that this may not be possible and they very well may need to work within the system in a less-than-optimal state. Understanding the root of the problems help you navigate and ideally enact change even if it's more localized.</p>
]]></description><pubDate>Wed, 22 Dec 2021 14:57:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=29650148</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=29650148</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29650148</guid></item><item><title><![CDATA[New comment by lojack in "Ask HN: Startup acquired by a large company and it sucks. What to do?"]]></title><description><![CDATA[
<p>> is probably one request in a long queue of requests that team is dealing with<p>You've explained away the crux of the problem without even identifying it as a problem. Queues are an inappropriate construct for managing work. If something urgent & important takes weeks to even get looked at then there is a prioritization problem. If something that isn't urgent or important even gets worked on at all then there is a commitment problem. Based on what OP has described, the company is likely doing a lot of work they shouldn't be doing and working on things in the wrong order. Similarly, the work OP is doing may be much less important than they think it is.<p>Now, I agree that it's important to understand how the system works, but IMO it's equally as important to understand how it can be improved. Long lead times is definitely not a good thing, and also not a foregone conclusion at big companies.</p>
]]></description><pubDate>Tue, 21 Dec 2021 21:50:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=29642564</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=29642564</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29642564</guid></item><item><title><![CDATA[New comment by lojack in "Schizophrenia linked to marijuana use disorder is on the rise, study finds"]]></title><description><![CDATA[
<p>correlation != causation<p>OP was commenting on why there may not necessarily be a causation, and you commented on how the doctors tend to think there's a correlation. It just as well could be that schizophrenia tends to lead to increased marijuana consumption as people are self medicating. I'm no expert, so I don't have any strong beliefs around causation, but I do think both lines of thought (marijuana causing schizophrenia, or vice versa) seem pretty logical to me.<p>It's pretty widely believed that there is a correlation between the two, but the reason behind the link is where there's a lot of debate.</p>
]]></description><pubDate>Thu, 22 Jul 2021 19:29:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=27923129</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=27923129</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27923129</guid></item><item><title><![CDATA[New comment by lojack in "Console Do Not Track – Proposal for a standard environment variable"]]></title><description><![CDATA[
<p>Does removing PII preclude data from being surveillance?</p>
]]></description><pubDate>Tue, 06 Jul 2021 16:59:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=27751233</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=27751233</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27751233</guid></item><item><title><![CDATA[New comment by lojack in "Show HN: Organizedly – Linked notes, todo's, calendar and queries"]]></title><description><![CDATA[
<p>Unless they're self hosting, this might even be a super easy thing to add. With AWS and many other cloud providers this is either the default or a simple checkbox.</p>
]]></description><pubDate>Mon, 04 Jan 2021 15:05:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=25632151</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=25632151</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25632151</guid></item><item><title><![CDATA[New comment by lojack in "Who Americans spend their time with, by age"]]></title><description><![CDATA[
<p>I don't even necessarily think its just leaving your baby alone with other people. Pre-covid with a <1 year old and a toddler we would have play dates all the time for a break. You stop being the source of entertainment and become a mediator, which is much less work. The baby then gets passed around to whoever has a free hand.<p>I suspect there has always been pressure to not leave your baby with someone else and go off and do your own thing. The difference is now people are physically more distant from everyone else (I blame the ease of transportation) so being around close friends and family is the exception and not the standard.</p>
]]></description><pubDate>Fri, 11 Dec 2020 16:51:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=25387785</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=25387785</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25387785</guid></item><item><title><![CDATA[New comment by lojack in "South Africa's lottery probed as 5, 6, 7, 8, 9 and 10 drawn"]]></title><description><![CDATA[
<p>> I've done the math on my local lotteries and I only buy tickets when the EV of the return is greater than the cost of a single ticket.<p>If you want to get really technical, you also need to consider the number of people playing. When the jackpot gets extra high more people tend to play, so the likelihood of having to split a jackpot (which happens all the time) becomes higher. Without doing the math I would guess EV of the return is rarely ever greater than the cost of a single ticket.</p>
]]></description><pubDate>Thu, 03 Dec 2020 05:20:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=25285683</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=25285683</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25285683</guid></item><item><title><![CDATA[New comment by lojack in "Netflix CEO explains why he pays technologists huge salaries"]]></title><description><![CDATA[
<p>> Good developers are the ones that create code that resists the slide from a 10x code-base to a 0.1x code-base.<p>10x is 100 times bigger than 0.1x FWIW.<p>> but I argue that it is at least partly due to the prevailing code-base.<p>Its almost exclusively because of the prevailing code-base. We can't forget that the prevailing code base was built by developers of varying skills. You can have "100x" developers build it or you can have "0.1x" developers build it.<p>> One of my least favorite people to work with is also a "high throughput" developer who is a prolific creator of software, but everything created by this person is an un-maintainable, un-documented, un-tested, brittle block of procedural copy-pasta that ends up in the critical business path. And yes, this developer "snapped" about a year ago and it has been a 3 person project ever since to scramble to fix this stuff.<p>Was this person the aforementioned "Rick" from this article?</p>
]]></description><pubDate>Mon, 28 Sep 2020 17:18:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=24618983</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=24618983</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=24618983</guid></item><item><title><![CDATA[New comment by lojack in "Pure Skill Minesweeper"]]></title><description><![CDATA[
<p>> for time-beating purposes, it is optimal to instantly guess as soon as you identify that a guess is necessary<p>Often that is the case, but sometimes you reach a point where you ultimately need to guess, but you can make an informed guess based on the number of mines remaining. Then the question becomes, is it worth guessing and potentially losing faster, or are you having a really good game and want to risk losing late in the game?</p>
]]></description><pubDate>Mon, 17 Aug 2020 04:46:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=24184078</link><dc:creator>lojack</dc:creator><comments>https://news.ycombinator.com/item?id=24184078</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=24184078</guid></item></channel></rss>