<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: tpmoney</title><link>https://news.ycombinator.com/user?id=tpmoney</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 26 Aug 2026 05:51:12 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=tpmoney" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by tpmoney in "What's new in Emacs 31.1"]]></title><description><![CDATA[
<p>I can't say it has any particular bearing on the usage of emacs, but within the last year or so I started using a "ortholinear" keyboard (an ergodox-ez) and found that qwerty was uncomfortable on that with how lousy my typing form is. I tried a couple different layouts and landed on something called "middlemak"[1]. Of all the ones I tried, it really felt like the one with the least overall finger travel and awkward things to type in my day to day software development work (though there are still some odd letter combinations courtesy of english borrowing from everyone), and it's not a massive change from qwerty so a lot of muscle memory actually could carry over. Workman and Colemak both had some awkward motions or finger strains that just didn't work for me.<p>That's been both a good and a bad in that on the one hand, I didn't have to relearn every key, but on the other, especially because I swap between middlemak on the external keyboard and qwerty on the built-ins I'm sometimes mistyping because the qwerty key is one key over from where the middlemak version is. But at least for how my brain works, having that familiarity made sticking with the learning curve a lot easier.<p>I also can't speak for how it feels on a "normal" staggered keyboard since I only use it on the ergodox but I don't have a reason to think it would feel worse. If it helps, this is the keymap I use on the ergodox[2].<p>[1]: <a href="https://www.reddit.com/r/Middlemak/" rel="nofollow">https://www.reddit.com/r/Middlemak/</a>
[2]: <a href="https://configure.zsa.io/ergodox-ez-st/layouts/wzKWq/latest/0" rel="nofollow">https://configure.zsa.io/ergodox-ez-st/layouts/wzKWq/latest/...</a></p>
]]></description><pubDate>Wed, 26 Aug 2026 01:32:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=49443090</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49443090</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49443090</guid></item><item><title><![CDATA[New comment by tpmoney in "Everyone says assembly is untyped—everyone is wrong"]]></title><description><![CDATA[
<p>Sure, I agree that if you're making a CPUID inline assembly template that isn't setting the register value, and it accepts any values for EAX that would also cause it to read ECX then the behavior is going to be undefined and likely unexpected, but that doesn't seem to be a reason for this not to compile.<p>For one, requiring an input parameter when it isn't mandatory would mean that you're spending cycles setting a register with a value that you don't need and is just going to be overwritten anyway. A good number of the CPUID calls never read from ECX, and if you're going to call any of them, then the value in ECX is irrelevant. And sure, it's only an extra instruction or two, but presumably if you're dropping down to inline assembly, you kind of care about every wasted instruction.<p>Again, this seems to me like it should be a perfectly valid assembly template (based on <a href="https://www.felixcloutier.com/x86/cpuid" rel="nofollow">https://www.felixcloutier.com/x86/cpuid</a>):<p><pre><code>    // Returns the maximum input value for basic CPUID information
    cpu_extended_feature_flags :: asm() -> (a, b, c, d: u32) [
        a = %eax,
        b = %ebx,
        c = %ecx,
        d = %edx,
    ] {
        mov %eax 0x0
        cpuid
    }
</code></pre>
I admit I never touch inline assembly or really assembly at all save for the occasional microcontroller project, so maybe I'm missing something that's obvious to people more familiar with this. But to me the article seems to be sayin that the Odin templates will type check and validate that IF you have inputs from Odin types that are being put into registers or used as operands to your assembly, or are mapping registers and outputs from your assembly back to Odin types, that those mappings will be type compatible, and when you get those mappings wrong, you'll get a more useful error. But I didn't read it as saying that it will prevent you from writing assembly that does something completely unrelated to those inputs or outputs.</p>
]]></description><pubDate>Sun, 23 Aug 2026 03:14:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=49405823</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49405823</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49405823</guid></item><item><title><![CDATA[New comment by tpmoney in "Everyone says assembly is untyped—everyone is wrong"]]></title><description><![CDATA[
<p>I'm not sure the example template was supposed to be canonical, vs demonstrating multiple output destructuring. Certainly the actual instruction definition in the checker library seems to understand that there could be two possible inputs:<p><a href="https://github.com/odin-lang/Odin/blob/4247507dd5e31c9fd87166f53fd67b007ecca86c/core/rexcode/isa/x86/tablegen/instruction_table.odin" rel="nofollow">https://github.com/odin-lang/Odin/blob/4247507dd5e31c9fd8716...</a><p>But I'm also not entirely sure why the example should not have compiled. It seems to me that the idea here is to be able to define a typed set of something equivalent to a function that inlines some assembly, but nothing about that inherently requires that the number of input or output parameters to the template match the parameters in the underlying assembly calls. There's no reason (in my mind anyway) why this shouldn't be a perfectly valid template:<p><pre><code>    // Returns the extended feature flags obtained by calling CPUID
    // with EAX=7 and ECX=1
    cpu_extended_feature_flags :: asm() -> (a, b, c, d: u32) [
        a = %eax,
        b = %ebx,
        c = %ecx,
        d = %edx,
    ] {
        mov %eax 0x7
        mov %ecx 0x1
        cpuid
    }</code></pre></p>
]]></description><pubDate>Sat, 22 Aug 2026 21:34:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=49404083</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49404083</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49404083</guid></item><item><title><![CDATA[New comment by tpmoney in "Paul Atkins misreads Adam Smith and the American founding"]]></title><description><![CDATA[
<p>The author appears also to misread Paul Atkins, they say:<p><pre><code>    Start with the Declaration. Mr. Atkins’s most concrete 
    evidence is Jefferson’s well-worn copy of “The Wealth 
    of Nations.” But the Monticello source cited in his own 
    footnote reports that Jefferson acquired the book while 
    serving in France between 1784 and 1789, at least eight 
    years after he drafted the Declaration. Jefferson may 
    have encountered Smith’s ideas before 1776, but there 
    is no evidence that “The Wealth of Nations” shaped the 
    Declaration. 
</code></pre>
But in the speech they link to, the words are:<p><pre><code>    At the heart of our Founding Fathers’ revolution stood 
    an idea—one that found its fullest expression in two 
    fateful documents, crafted an ocean apart but together 
    in time in 1776: one penned in the summer heat of 
    Philadelphia, the other in the intellectual winds of 
    Edinburgh. 
    ...
    The authors never met, yet their ideas were 
    inseparable, and their contemporaneous works rested on 
    the same conviction: trust the individual, not the 
    institution.
</code></pre>
There is no possible way to read that as saying that the Declaration of Independence was shaped by The Wealth of Nations. It pretty clearly states that the "idea" is something that was refined separately but contemporaneously. He also says that the idea was pre-existing, hence that it found it's "fullest expression" in 1776 in the two separate documents.<p>The closest thing said in the speech that could be read as "the Declaration of Independence was inspired by The Wealth of Nations" is the next section of the speech:<p><pre><code>    Thomas Jefferson was no stranger to Adam Smith’s 
    philosophy—he was, in fact, a student of it, evidenced 
    by the well-worn copy of The Wealth of Nations 
    contained in his library, from which he gleaned wisdom 
    that he shared freely with friends and correspondents.
    
    It is little wonder, then, that our founding documents, 
    in many respects, reflect Smith’s central themes that 
    were debated at the time: that government must not grow 
    infinitely.
</code></pre>
If you read that quickly I can see how you might read it as "The Wealth of Nations inspired the Declaration" but the reading that I have and that I think was obviously intended was Jefferson was a drawn to the same principles and ideas that Smith was, and so it is unsurprising that these documents written in the same times by likeminded people share common core ideas.<p>It is really frustrating to me that aggressively hostile readings of things has become such a normal way of writing rebuttals in modern discourse. There is so much to criticize in how the government is run that we don't need to be wasting our time and energy rebutting things that haven't even been said.</p>
]]></description><pubDate>Sat, 22 Aug 2026 04:09:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=49396485</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49396485</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49396485</guid></item><item><title><![CDATA[New comment by tpmoney in "Aaron Swartz was prosecuted for scraping, while Meta does it without consequence"]]></title><description><![CDATA[
<p>While this sounds good in theory, I suspect the actual result would be much worse for justice in most cases. With the corporation acting as its own legal entity, if you are wronged, you sue and obtain justice from the corporation. If instead you needed to sue each and every shareholder to obtain their share of the liabilities, you'd likely spend many more years in court as each individual owner argues why they aren't personally liable for the given act because they didn't have knowledge, or control over the specific chain of events that caused you harm, and the courts have to sort out each individual case.</p>
]]></description><pubDate>Fri, 21 Aug 2026 00:53:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=49382337</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49382337</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49382337</guid></item><item><title><![CDATA[New comment by tpmoney in "Aaron Swartz was prosecuted for scraping, while Meta does it without consequence"]]></title><description><![CDATA[
<p>> Imagine if the US had a maximum sentence of 35 years for mere possession of a firearm but in practice, it would only be used in very unlikely conditions. It wouldn't last a minute. It's only allowed to be like this because nobody cares about tech.<p>This is effectively how all federal sentencing and reporting about that sentencing works, all the time. A lawyer blogger Popehat has talked about this for years[1]. Headlines pull add up all charges and the maximum statutory sentences for those and report it as if that's even remotely close to a likely outcome and it's not. In fact, Popehat actually wrote about that as it applied to Swartz in the aftermath of his suicide[2].<p><pre><code>    If you read about the Swartz prosecution, you saw people decrying the fact 
    that he was facing 35 years in prison. That's more than rapists and murders
    serve, they say. But they are talking about the maximum possible sentences, 
    not any sentence he was remotely likely to get. Recently in the context of 
    another case I explained how federal sentencing works, and how it's driven by 
    an arcane set of rules producing a recommendation that federal judges often 
    follow — rules that on most occasions produce a result well below the 
    maximum possible sentence.
</code></pre>
Which isn't to say that this sort of aggressive intimidation isn't bullshit. It is. But it's also not some unique "nobody cares about tech" thing.<p>[1]: <a href="https://www.popehat.com/p/beware-the-flood-of-trump-sentencing" rel="nofollow">https://www.popehat.com/p/beware-the-flood-of-trump-sentenci...</a><p>[2]: <a href="https://web.archive.org/web/20150604204913/http://www.popehat.com/2013/03/24/three-things-you-may-not-get-about-the-aaron-swartz-case/" rel="nofollow">https://web.archive.org/web/20150604204913/http://www.popeha...</a></p>
]]></description><pubDate>Fri, 21 Aug 2026 00:49:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=49382305</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49382305</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49382305</guid></item><item><title><![CDATA[New comment by tpmoney in "Aaron Swartz was prosecuted for scraping, while Meta does it without consequence"]]></title><description><![CDATA[
<p>> I think the point is to make corporate decision-makers bear some personal responsibility for the consequences of decisions made in pursuit of profit, growth or dominance. If all the upside is personal or corporate while the legal and social costs are simply externalised, there is very little incentive for restraint, no?<p>But what is the actual actionable result we want? That's what I'm asking. There's a lot of anger around all of this, and this isn't the first time we've seen this comparison to Aaron Swartz in all the discourse around that. But these sorts of angry "look at the hypocrisy" rants all seem very muddled in what they're asking for. Because on the one hand they're saying that this prosecution was an injustice and should never have happened, but on the other hand they seem to be asking for similar prosecutions and consequences in different cases where the defendant isn't as popular or likable. When we say we want Zuckerberg to "bear some personal responsibility for the consequences" in respect to meta potentially violating copyright, are we asking for him to be prosecuted like Swartz was? Are we asking for him to be personally sued by publishers instead of them suing Meta? And what is the outcome from this "personal responsibility" that we want? If we're asking for him to be prosecuted, are we asking for that because we actually think he should be convicted, and thus also saying we think Swartz' prosecution was justified? Or are we wanting prosecution for something we don't actually think is a crime, because we want to inflict some form of indirect and symbolic revenge on Zuckerberg for the multitude of other reasons we don't like him?<p>We should absolutely invoke the injustice that was the Swartz prosecution. What I don't think we should be doing is invoking it as some sort of vague demand for more prosecutions of that type against "the right people".</p>
]]></description><pubDate>Fri, 21 Aug 2026 00:02:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=49381948</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49381948</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49381948</guid></item><item><title><![CDATA[New comment by tpmoney in "Aaron Swartz was prosecuted for scraping, while Meta does it without consequence"]]></title><description><![CDATA[
<p>Ok and so what? We have been informed of an injustice, we are now angry. Now what? What do we want? Do we agree that the prosecution was unjust and wrong, celebrate that Meta is not being criminally prosecuted, lash out at the publishers filing the lawsuit and advocate for an official apology from the prosecutors and government that went after Aaron?<p>Or do we think that the prosecution was correct, apologize ourselves for any protests we might have voiced against the prosecution and demand similar prosecution of Meta and everyone who continues to torrent “Linux ISOs”?<p>Personally I agree that the prosecution was unjust, and so I find it to be a good thing that the stranglehold of excessive copyright is being weakened by the new AI moment. But that also why I find the sudden turn to copyright maximalism that seems to have taken over large parts of the tech industry so baffling. Why are we wasting our time pretending we want Meta prosecuted rather than spending our efforts ensuring that all these products that come out of this massive blending of human creative outputs are owned collectively by us all with no such recourse to the same copyright laws that they so valiantly shattered?</p>
]]></description><pubDate>Thu, 20 Aug 2026 21:21:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=49380443</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49380443</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49380443</guid></item><item><title><![CDATA[New comment by tpmoney in "Remote workers report the highest well-being in study of 7,700 employees"]]></title><description><![CDATA[
<p>Couldn't one argue that if you think "most" of the people who say they like going to the office are lying, abuse victims, burned out parents, power tripping managers, narcissists, perverts and lonely losers, that it might be *you* that has an unresolved issue? Maybe people really do enjoy being in the office because they enjoy spending time with like minded people engaging in a common activity. If there really was no benefit to gathering in a common space in person with like minded people to engage in a shared activity, conventions wouldn't be nearly as big of a thing as they are, and they certainly wouldn't be big among famously introverted nerd and geek interests and hobbies. And yet when I talk about a "convention" I bet your mind goes first to a nerd event, something like comic-con or a star trek convention, or even CES.</p>
]]></description><pubDate>Thu, 20 Aug 2026 05:01:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=49370543</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49370543</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49370543</guid></item><item><title><![CDATA[New comment by tpmoney in "Remote workers report the highest well-being in study of 7,700 employees"]]></title><description><![CDATA[
<p>Not everyone works at Initech though. My office is quiet, filed with sound deadening cubical furniture (a conversation at normal speaking volumes 10 feet away is almost inaudible) and ample private meeting rooms. Lunch is rarely above $12 and is on par with or better than most of the quick serve restaurants in the area both in terms of price and quality of food. The lights are at a reasonable level and most of the lighting is natural sunlight coming in from the huge floor to ceiling windows. The commute is bearable depending on where you live and while the housing costs are definitely high closest to the office, you can still easily find large single family homes on good sized pieces of land well within budget and inside a 30 minute commute. I am indeed incredibly lucky that I work for a company that took employee comfort and experience seriously when they built this office.<p>I wonder how much dislike around working in offices is less because working in an office is such a terrible experience vs working in a specific office for a company that doesn't care about their employee work environment is a terrible experience. I worked at a place for a brief window that made Initech look like a 5 star hotel, and if I had to work there every day, I might hate RTO too even though I found during the pandemic I didn't like WFH nearly as much as I thought I would.<p>So maybe "Anyone who's in leadership and wanting their employees to RTO should be ashamed of the fact that anyone could produce a list of grievances that long about working in their office"</p>
]]></description><pubDate>Thu, 20 Aug 2026 04:33:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=49370403</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49370403</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49370403</guid></item><item><title><![CDATA[New comment by tpmoney in "Remote workers report the highest well-being in study of 7,700 employees"]]></title><description><![CDATA[
<p>> Then post-COVID many companies had trouble luring people back when being in-office was purely optional. That's when you started seeing the RTO mandates and the refusal to allow anyone to switch to remote regardless of performance.<p>This is a bigger thing I think than most people realize. Before the pandemic I worked for a company that had a flexible policy of allowing people to work from home for the sake of work life balance (e.g. contractors, kid's recitals etc), but not an official "hybrid" policy for a fixed number of days remote. When the pandemic first hit, made it very clear when they sent everyone home that they wanted to get us back to the office as soon as it was safe to do so. When things started to open up again, they asked people to start voluntarily coming in to the office 2-3 days a week. And yet, the entire time they had that ask in place, every time I was in the office, I could probably have counted on one hand the number of people in the office on my floor and from everyone else I talked to who came in, it was the same every day. And I fully admit to being a part of that problem. But since people didn't do what was asked of them for a hybrid system, it seems obvious then that the company would insist then that everyone come back to the office full time. I really do believe that we would have ended with a hybrid system had people actually showed up on a fairly regular basis, but without people showing up, it became a negative feedback loop where people would show up less and less because every time they did, it was just remote work, but from the office.<p>It also probably didn't help that we had so many people all over every social media network (including HN here) bragging about how much they were doing during their work hours that was anything other than the work they were being paid to do. If you start broadcasting to the world how you're only giving your employer 4 hours a day out of the 8 hours they're paying you for when you're working from home, it should be unsurprising that they decide they can't trust people to work from home and insist they come back to the office.</p>
]]></description><pubDate>Thu, 20 Aug 2026 04:16:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=49370331</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49370331</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49370331</guid></item><item><title><![CDATA[New comment by tpmoney in "Remote workers report the highest well-being in study of 7,700 employees"]]></title><description><![CDATA[
<p>For a programmer, remote work is the worst. Constant endless notifications from emails, slack messages and calendars. Excessive amounts of meetings to replace what used to be 5 minute chats at someone's desk. Expectations of instantaneous and always on availability since everyone works different hours now and since you're remote and have a VPN they know you can get online. Intrusion into your private space with forced cameras, microphones and mandatory spyware that's now running on a machine on your personal network. Wasted minutes in every meeting dealing with microphone failures or latency induced "I was- oh- sorry- no you go first".<p>All that to say, like everything in life, remote work is a trade off.</p>
]]></description><pubDate>Thu, 20 Aug 2026 04:04:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=49370257</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49370257</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49370257</guid></item><item><title><![CDATA[New comment by tpmoney in "Remote workers report the highest well-being in study of 7,700 employees"]]></title><description><![CDATA[
<p>On the other hand, I usually find people are generally observant of your desk space, especially if you look really busy with something. But remotely, you're constantly interrupted by incessant notifications from the slack channels you're in, from people directly messaging you to see if you're available for something and from an increase in 30 minute meetings to replace what should have been a 5 minute chat at someone's desk. And that's not counting having to actually stop what you're doing and literally switch tasks and screens to go read through all the slack messages and emails you've missed. And that doesn't account for the extra time you have to spend going and correcting a conversation that went off the rails that you could have helped solve faster if only you'd known it was happening, but since it happened in another window while you were heads down, and not at the desk 5 feet away where you could hear it, you missed everything before the folks in question went way down a rabbit hole.</p>
]]></description><pubDate>Thu, 20 Aug 2026 03:58:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=49370224</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49370224</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49370224</guid></item><item><title><![CDATA[New comment by tpmoney in "Remote workers report the highest well-being in study of 7,700 employees"]]></title><description><![CDATA[
<p>I can see how this can help get you a change of pace, but as someone who learned during the pandemic they don't like remote working nearly as much as they thought they would, isn't doing this every day just commuting to a worse office with extra steps?<p>I guess if your office is really awful or your commute is ridiculously long it might be better. But all the talk you see about why working at an office is so bad for people's productivity cite the noise, distractions, unrelated chatter etc. Co-working spaces filled with people who aren't even on your team, coffee shops filled with angry customers and stay at home parents toting their toddlers and parks full of barking dogs and biting insects seem like they would all be their own cacophony of distractions and noises to rival even some of the worst open office plans.<p>Also at least around where I am, co-working spaces cost between $100-500 / month, and the coffee at the coffee shops while better than what is at the office is also $3-5 a cup. The parks are admittedly free, but the ergonomics of the tree trunk and root system leave a little to be desired. I'm sure it works for some people, but if I'm not spending my day working on my front porch in the sun with my dog, I think I'd rather be in the office instead of in the corner of a local coffee shop.</p>
]]></description><pubDate>Thu, 20 Aug 2026 03:51:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=49370180</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49370180</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49370180</guid></item><item><title><![CDATA[New comment by tpmoney in "Remote workers report the highest well-being in study of 7,700 employees"]]></title><description><![CDATA[
<p>From a nation standpoint, doesn't "incentivizing and promoting" remote work also incentivize off-shoring jobs out of your economy? If your nation's companies perfect remote work, why would they higher your highly paid citizens living in (relatively) high cost of living areas when they could hire massive remote teams in lower cost of living countries to do the same job for less?<p>I'm a big fan of flexibility, and certainly think companies should do their best to treat their employees as adults and let them do what works best for them and their teams. But it is really weird to me to watch an industry that has spent years trying to convince companies that hiring off-shore remote workers had all sorts of negative externalities on team cohesion and the development process suddenly fall head over heals in love with the idea of all companies going all in on "off-shore remote workers".</p>
]]></description><pubDate>Thu, 20 Aug 2026 03:38:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=49370130</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49370130</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49370130</guid></item><item><title><![CDATA[New comment by tpmoney in "Remote workers report the highest well-being in study of 7,700 employees"]]></title><description><![CDATA[
<p>I think the introvert / extrovert thing is oversimplifying things too much. I'm a very introverted person, and my favorite thing to be working on is stuff that's in the background quietly making things better in invisible ways. But that's the whole reason I want to be in an office with other people. Because I'm aware that I need people to know what it is that I do, and it's easier for me to make that happen when I can interact with someone one on one instead of having to blast stuff into a chat with 30 other people reading, or having to carefully pick my words because all the side bands of human communication that I've put so much effort into learning to read and use are gone in the sterile text of the screen.<p>We all know networking is an important part of your career. As an introvert, networking is a lot easier when I'm in a space where people already are and I can be seen, even if I'm not always being heard. And when I am heard in the office, it's usually among small groups of people, maybe 10 or less. Having to network by being actively visible and speaking in big open channels with 2-3 different teams and a few layers of management all watching, that's terrifying as an introvert but that's also how most companies run their chat systems because otherwise everyone has hundreds of channels that they have to keep track of and remember whose in what places and copy discussions around. Since it's easier just to have massive groups of people in one channel and have everyone use the larger channels most of the time, being remote and on slack is actually far more draining to me as an introvert. I also do best keeping tabs with what's going on when I can keep one ear on the other things going on around me instead of having to stop what I'm doing and intentionally scroll through pages and pages of slack messages.<p>And yes, because I'm introverted, being in person with a team of people that includes extroverts means I get human social connections that I need and would otherwise not seek out because, again I'm an introvert.</p>
]]></description><pubDate>Thu, 20 Aug 2026 03:18:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=49369997</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49369997</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49369997</guid></item><item><title><![CDATA[New comment by tpmoney in "Remote workers report the highest well-being in study of 7,700 employees"]]></title><description><![CDATA[
<p>I feel the opposite. Before the pandemic, I would have said I'd 100% want a fully remote job if I could have it. I even looked at applying to Gitlab because of that. And then the pandemic hit and I spent 2 years working from home all the time. One of the surprising things I learned in that was that I need a commute. I need a physical separation of work and the rest of my life that lets me mentally shift gears from thinking about work things to thinking about home things. I needed some time to just listen to music or a podcast or audio book without any other demands on my time.<p>And I found that going for a walk or something like that to replace the commute didn't have the same effect, for a number of reasons. There was the mental hurdle of forcing myself to try taking the walk instead of going straight from A to B since I was already there. There was the fact that while I could try to flush home concerns from my mind on the walk, coming back to my home where all those home concerns are right there for me to notice when I walk through the door meant that all that mental flushing was for naught.<p>Now I admit that I am fortunate enough to have a commute where I'm rarely in bumper to bumper traffic, and it's less than a 30 minute drive. But at least for me, a commute is a vital part of my work routine.</p>
]]></description><pubDate>Thu, 20 Aug 2026 03:03:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=49369909</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49369909</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49369909</guid></item><item><title><![CDATA[New comment by tpmoney in "Apple's App Tracking Transparency treated its own apps better than rivals"]]></title><description><![CDATA[
<p>As a personal example, Google Meet while not having “camera” in the name has an icon with a camera, a description that talks about “video calling” and is intentionally designed to support and enable video calls. And on my device I have declined to give meet permission to access the camera. On the rare occasions I need to use the app on my phone, I’m probably somewhere where I can’t or don’t want to be using the camera. It is simply safer and easier to deny the application access to the camera than it is to rely on its own internal functionality to disable using the camera. And it’s safer and simpler to require all 3rd party apps that want access to the camera to explicitly ask for permission than it is to evaluate them all for whether or not their use of the camera is both necessary and obvious enough that they don’t need the permission.</p>
]]></description><pubDate>Mon, 17 Aug 2026 18:44:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=49335745</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49335745</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49335745</guid></item><item><title><![CDATA[New comment by tpmoney in "Choose Boring Technology (2015)"]]></title><description><![CDATA[
<p>The biggest benefit to me as a developer at least in larger organizations that AWS gives is ownership of my stack and needs. I don’t need to file a purchase request for new servers to spin something up or deploy a new application. I don’t need to fight with other departments for the fixed CPU and memory capacities in our virtualization system.<p>But everything else would be so much simpler and better for most of the things I do if it could just be a normal box with normal software.<p>In theory I could build that experience with nothing but bare EC2 instances. But once you’re in AWS, they make using their managed things so tempting that convincing everyone else to not use them is an even bigger battle.</p>
]]></description><pubDate>Fri, 14 Aug 2026 16:53:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=49301359</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49301359</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49301359</guid></item><item><title><![CDATA[New comment by tpmoney in "Mea Culpa – Dark Hours"]]></title><description><![CDATA[
<p>> The problem is that this is only happening because the powerful are forcing it on us.<p>Look, I won't deny that like the dot-com bubble and the "cloud" hype of years before that there isn't overhyping and forcing going on. But this feels to me a lot like someone in the mid 90's looking at this "internet" thing and thinking it's all a fad being pushed on us by computer nerds. I'm not saying every company and every attempt to stuff "AI" into everything is going to be some revolution that will stick with us forever, but neither were a lot of early online providers. But like I said, AI is infrastructure, and people are going to figure out how to build things on top of it that will become integrated and standard parts of our lives, just like computers, the internet and the cloud are all today.</p>
]]></description><pubDate>Sun, 09 Aug 2026 22:55:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=49237066</link><dc:creator>tpmoney</dc:creator><comments>https://news.ycombinator.com/item?id=49237066</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49237066</guid></item></channel></rss>