Monaspace - Microsoft presents a new font family for code
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    12mo ago 80%

    They would still line up, wouldn't they? Or am I misunderstanding how the texture healing would work... Would they not take the same total amount of space?

    3
  • Online movie reviews [Beetlemoses]
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    12mo ago 86%

    Letterboxd is pretentious, which is a good way to find ✨cinema✨, but if you just want to turn your brain off and watch an Adam Sandler movie or something, letterboxd is not the platform to look at reviews

    17
  • Find yourself
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    12mo ago 100%

    Engineer I guess... Thief is the objectively better enterprise programmer option but I don't know why I always forget about it and just write a ternary ¯⁠\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯

    12
  • Do portable charges prioritize iphones charging speed over androids?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    1y ago 100%

    Xiaomi makes Android phones, what would they get out of trying to make iPhones look better.

    Most likely explanation is the voltage difference people have mentioned

    12
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Jump
    You have to be pretty skilled to mess up that badly
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    1y ago 76%

    "You can never tell with Americans"?

    What does that even mean lmao. Do people outside of the US not make jokes or lie?

    7
  • The Jackbox Party Pack 10 - Launch Trailer - Nintendo Switch
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    1y ago 100%

    Played the demo on steam, and the games were really fun. This pack feels a little different in that the couple of demo games were very "oh wow we could actually sit down and play this game" vibes vs. Just a quick thing to throw on in the background of a party.

    9
  • How dare you ask this? Was it just to get into a programming memes page?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    1y ago 100%

    This makes a ton of sense and I think you probably solved this mystery for me.

    "Oh I need to iterate over something, and keep track of new information as I do it, therefore I should be able to create 'dynamic variables' as I progress."

    6
  • How dare you ask this? Was it just to get into a programming memes page?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    1y ago 100%

    I distinctly remember asking this question during a 100 level programming class but I just can not remember why I'd ever want to do this?

    What problem could I have possibly have been trying to solve where this would seem like the answer.

    63
  • Why so many POST requests?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    1y ago 100%

    That's just how federation works. You've federated with an instance/user so now your self hosted instance will be updated.

    Is there a reason you're concerned about the requests? The payloads should be relatively small, and unless you're running on some really old hardware, one request a second with a small payload should not have any noticeable impact.

    6
  • *Permanently Deleted*
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    1y ago 100%

    I try not to just reverse decisions I end up not liking, but I'll tell you what I'm a goddamn adult with minimal game time and I'll be damned if I'm going to restart because I accidentally clicked on the wrong thing or decided to pick a very stupid fight.

    It's going to take me forever to get through the game as is, I don't need to add all that extra overhead.

    3
  • Introducing Predictive Debugging: A Game-Changing Look into the Future
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    1y ago 100%

    I have indeed. We even practice pure TDD and won't accept PRs without test coverage, but it doesn't change the fact that sometimes bugs happen, and when they do it tends to be much more effective to work through the problem with a debugger than make guesses at what things need to be logged, or poked into or whatever.

    If what you're doing works for you, more power to you, but in my opinion I'd never give up a tool in my toolset because it makes me far more productive than I'd be without it.

    5
  • Introducing Predictive Debugging: A Game-Changing Look into the Future
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    1y ago 88%

    I feel like you're missing out on a ton of awesome features by not using a debugger? Step backs are super useful, inline/live commands save you from re-running the code to see a different value, you can change values on the fly.

    And it's nice to say "think about your code more" but when you're working with large teams, on legacy codebases, you don't often have the opportunity to "think about your code" because you're trying to decipher what someone wrote 3 years ago and they don't even work with the company anymore.

    7
  • No more code headers?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    1y ago 100%

    Its wild to me that some people hear "your code should be self documenting" and take that to mean "never write comments".

    All self documenting should mean is I can look at a method and get a general understanding of what it does, and it shouldn't have any unknown functionality. Specific implementations, design quirks, choices that might only make sense if you know business context should all be comments in your code.

    On the other side of all that I worked with someone who insisted methods were documented college style, the "authors" name, date it was written, what it does, why it's here, our star sign. I hate that just as much, so much clutter.

    14
  • Does Wefwef have Christian’s blessing? It’s so good, and I don’t wanna see it get shut down.
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    1y ago 100%

    What part of wefwef would cause an issue? Unless the wefwef devs are using visual assets from Apollo that are not free to use, there's no issue.

    You can't sue someone for... What? The visual placement of buttons? How the animations work? The entire software industry would collapse overnight if we couldn't re-use design patterns.

    15
  • Why I prefer trunk-based development - Trisha Gee
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearWE
    wethegreenpeople
    1y ago 96%

    My problem with trunk based development is I feel like people treat it as the solution to a problem that is fundamentally a developer culture problem.

    You need to commit small changes, frequently, which requires you to only change small sections of the code and make incremental changes, something which can be a difficult habit to get used to.

    This is really the main benefit of trunk based development, and it's something you can get with feature branches as well, you just have to make sure everyone on your team starts reducing scope of their features and merging in smaller and smaller features sets.

    There's nothing inherit in the trunk based development model that stops someone from sitting on changes for a month, never pulling, and then trying to pull and ending up with a bunch of conflicts anyways. So it really feels like "yeah use trunk based development" boils down to "integrate continuously" which can be done with a branching model.

    23
  • open.spotify.com

    # Tracklist - Paradise on Cleveland (feat. Drake) - Money on the Dresser - Gucci Grocery Bag - Cars Bring Me Back (feat. Future) - Wit Da Racks (feat. 21 Savage, Travis Scott & Yak Gotti) - Uncle M - Abracadabra (feat. Travis Scott) - Went Thru It - Oh U Went (feat. Drake) - Want Me Dead (feat. 21 Savage) - Hellcat Kenny (feat. Lil Uzi Vert) - Mad Dog - Jonesboro - Hoodie (feat. BSlime & Lil Gotit) - Global Access (feat. Nate Ruess) Executive Produced by Metro Boomin

    14
    2