HackerTrans
TopNewTrendsCommentsPastAskShowJobs

SwiftyBug

1,581 karmajoined vor 7 Jahren

comments

SwiftyBug
·vor 17 Stunden·discuss
I learned about the artificial pressurization not too long ago. But until I read your comment, I assumed that in a case like that, the inside and outside pressures would balance shortly and the sucking would cease. Now it occurred to me that maybe the pressurization system will continue to try to compensate pressure in a situation where pressure can´t be stabilized due to a broken window, which would cause the sucking to go on. Not sure if that would be the case. Anyone knows what happens?
SwiftyBug
·vorgestern·discuss
Na, PostPostgres would be much cooler.
SwiftyBug
·vor 4 Tagen·discuss
It's a book store.
SwiftyBug
·vor 24 Tagen·discuss
Brazil's national team performance not only in this World Cup, but the last 20 years. I don't even care about football, but as a kid who saw Brazil win the 2002 World Cup, it's hard to see it do so badly since.

And the future seems gloom overall. Not looking forward to it. I used to.
SwiftyBug
·vor 29 Tagen·discuss
Slightly off-topic:

I currently use tmux. Not because I need to multiplex shells in a remote server, but because I like to have my sessions persisted in my local machine. Even between reboots (technically not the same session, but the same tabs and splits I had). I currently have that with tmux and a tmux plugin that restores my sessions. But I think that tmux is overkill for this. And if I'm in a tmux session, then I can't use my terminal emulator's native tabs and splits. Does anyone have a recommendation of how to handle only terminal sessions on Linux?
SwiftyBug
·letzten Monat·discuss
I absolutely love the minimalist UI.

I see code reviews is in the roadmap, I can't wait to try it.
SwiftyBug
·letzten Monat·discuss
I mean, of course there is tooling involved. But it's part of the language. Unlike TypeScript which is a superset of JS and requires transpilation.
SwiftyBug
·letzten Monat·discuss
To what extent do you see Python drifting toward stronger typing? I ask because after 10 years without touching a single line of Python, I recently worked on a Python code base and I was very positively surprised by the static typing that's available in the language now. Not even necessary to to reach for additional tooling like JS and TS.
SwiftyBug
·letzten Monat·discuss
I don´t get the design choice for Glimmer components:

  export default class CounterComponent extends Component {
    <template>
      <p>0</p>

      <button type="button">+1</button>
      <button type="button">-1</button>
    </template>
  }
This is obviously not valid JS. If they already had to create a DSL for components, why not embrace it fully and introduce a different keyword instead?

    export default component CounterComponent < Component {
        <template>
            <p>0</p>

            <button type="button">+1</button>
            <button type="button">-1</button>
        </template>
    }
JSX class components, even though not technically valid JS (render method returns HTML-like syntax), resemble a JS class much more as it requires methods to declare the template and handle component lifetime.
SwiftyBug
·letzten Monat·discuss
I understand this is project-scoped and not intended to replace a window manager, but it just occurred to me that this concept could be a cool experiment for a Hyprland plugin. Instead of multiple workspaces, a single, infinite one that could be navigated by dragging and zooming in and out. I would probably hate to use that, but I supposed it would be a lot of fun to develop it.
SwiftyBug
·vor 2 Monaten·discuss
This is sad. I had a blast implementing my own interpreter from scratch. I saw, first hand, the effort Sarup put in trying to make CodeCrafters thrive. We had a few product feedback video chats, which were all much enjoyable. I tried to get my current employer to pay for CodeCrafters for the engineering team, but, as others in this thread already said, it's hard to justify this spending these days because of AI. Honestly, I think that it's a little short-sighted of the companies to not invest in hard skills for their employees, now more than ever. I definitely became a better engineer with the help of CodeCrafters.
SwiftyBug
·vor 2 Monaten·discuss
This is awesome! OpenAPI integration is a great feature.
SwiftyBug
·vor 2 Monaten·discuss
> Nobody writes essays in Slack

I 100% write long texts in Slack. I always try to provide as much context as possible when reaching out to someone with a question or request.
SwiftyBug
·vor 2 Monaten·discuss
One approach I've been really starting to enjoy is to use use Tailwind alongside scoped styles (in Svelte and Vue). This keeps template pollution minimal while still allowing for the conveniences Tailwind brings:

  <div class="counter-component">
      <button @click="count++">+</button>
      <span class="count" :data-is-even="count % 2 === 0">{{ count }}</span>
  </div>
  
  <style scoped>
  @reference "tailwindcss"
  
  .counter-component {
      @apply flex items-center gap-2;
  
      button {
          @apply bg-gray-800 text-white;
      }
  
      .count {
          @apply italic text-teal-500;
  
          &[data-is-even="true"] {
              @apply text-rose-500;
          }
      }
  }
  </style>
SwiftyBug
·vor 2 Monaten·discuss
Wow, you should really go to a butcher shop nearby and buy some filet mignon. Try making some steak au poivre, a classic of French cuisine. It's not too hard and it's delicious.
SwiftyBug
·vor 2 Monaten·discuss
I wonder how well Mandarin works for LLM-based programming. On one hand, it's very token efficient as Mandarin script is very dense in meaning. On the other, I suppose this can increase ambiguity.
SwiftyBug
·vor 2 Monaten·discuss
What do you mean by masking? And can you elaborate on the neurodiversity part? This is the first time I hear about alcohol as something that's reached for specifically by neurodivergent people.
SwiftyBug
·vor 2 Monaten·discuss
To me it's the opposite: I can go weeks without drinking. The moment there's a social event, I feel the urge to drink. It's like I can't enjoy it without alcohol. I've been trying to figure out why this happens, but I haven't had the strength to try and not drink in one a social gathering.
SwiftyBug
·vor 3 Monaten·discuss
Is Nidorino/Nidorina headcanon too? Each can also be one gender and have different entries in the Pokédex. Are they considered each other's male/female version?
SwiftyBug
·vor 3 Monaten·discuss
Interestingly, modal editing comes very natural to us. It enters muscle memory quite well.