Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)J
Posts
2
Comments
1063
Joined
2 yr. ago

  • The problem is most people are lazy and don't understand anything. They just use the app they know, even if it sucks.

    If you got it to be popular it could work , but I don't see how you could.

  • ls never asks you to create an account or to update.

    Don't give anyone ideas.

    "Pay $2.99/mo to see hidden files!"

  • I feel like most people don't buy software anymore. Everything runs in the browser.

    Like, nerds and enthusiasts and game playing people sure. But most people? Nah. It's all Instagram, Facebook, tiktok, Reddit, YouTube. Maybe like roll20 if they're a dnd nerd. Most people aren't doing Photoshop or blender.

  • Being an adult in the sense of being responsible, feel pretty good about. Pay the bills. Feed myself. Go to work.

    Being an adult in the sense of having no fun, or tightly restricted fun, not so much. Still go see live music and play video games.

  • I did have a coworker that was both a picky eater and didn't cook. She'd order seamless (GrubHub) for most meals. That's got to be like... $30/meal, two meals a day so $60, seven days a week, ~$400/week? My monthly food budget is like $200. Plus she'd go out drinking. Guess that adds up. That's like $100k over five years.

    She also had an expensive gym membership she didn't use and was too shy to cancel.

  • Some of my peers should be rich enough to retire, but fell victim to lifestyle inflation. Sure they're making $250k/year, but they moved into a $5k/mo apartment, go on expensive vacations, and just do whatever in their day to day. I don't know where their money goes. Maybe they are secretly investing.

    Meanwhile I live like a goblin on less

  • Good. The more people switch, the more support there will be.

  • Personally I feel like SQL syntax is upside down, and things are used before they are defined.

     
        
    SELECT 
    a.id -- what the fuck is a?
    , a.name
    , b.city -- and b??
    from users a -- oh 
    join city b on a.id = b.user_id -- oh here's b
    
      

    I'd expect it to instead be like

     
        
    From users a
    join city b on a.id = b.user_id
    SELECT
    a.id,
    a.name,
    b.city
    
      
  • Lowering indent levels is nice in functions. Early returns mean you don't have to think as much. "If it got here, I know foo isn't null because it already would have returned".

  • Yeah some comments are not useful

     python
        
    # returns the value as a string
    return str(user.id)
    
    
      

    Some comments are

     python
        
    # returns the user id as a string because ZenDesk's API throws errors if it gets a number.
    # See ticket RA-1037
    # See ZenDesk docs: https://etc/
    return str(user.id)
    
      
  • Does Japan not have the fervent anti intellectualism that we have in the US with our right wing? And it's not in bed with racism to fuck public education together?

  • Sometimes the word "Interesting" causes my brain to recall the character generation in Morrowind. The guy says something like ""Interesting. Now before I stamp these papers, make sure this information is correct.""

  • Conservatism, mostly.

  • Give him the ability to divest his wealth first.

  • One of my jobs went to microservices. Not really sure why. They had daily active users in the thousands, maybe. But it meant we spent a lot of time on inter-service communication, plus local development and testing got a lot more complicated.

    But before that, it was a single API written in Go by an intern, so maybe it was an improvement.

  • I've had a couple cases where I didn't change their mind on the spot, we at least reached a point of "I see what you're saying and why you believe that" that was better than we started.

    It's just a lot of work, and is doomed if the other person isn't present in good faith. But it's nice when it happens. It helps to ask sincere questions, and try to clear up any assumptions you might not share.

  • Probably get as many conservatives out of power as possible. Once they're gone we can work on climate change, better electoral systems, removing the evils of capitalism, and so on.

  • It's wild to me how some places I've worked are like locked down, all the infrastructure is in terraform or whatever and can be deployed immediately... and other places are like "ssh into prod with the credentials from confluence, edit the config in vim, and paste the new code into a new file"

  • There was an article on a tech news site recently about how to unshittify windows. Just like 4 pages of stuff to turn off and uninstall.

    People in the comments unsurprisingly were like "Linux is free and getting better all the time". People were mad. So mad.