livingcoder

joined 2 years ago
[–] livingcoder@programming.dev 2 points 10 months ago (4 children)

I don't know of any guidance about avoiding Erythritol when pregnant, but aside from that, the sentiment is generally reasonable but you'll still end up avoiding foods that would only negatively impact a pregnancy. You can imagine the other side of that coin: are you taking vitamin supplements that are meant to be taken by someone who is pregnant? I would imagine not, but then the question becomes "Why not?". (not trying to be hostile, just making a point)

[–] livingcoder@programming.dev 6 points 10 months ago (14 children)

I found this article that mentions how normal consumption levels are far lower than 6mM. https://www.fda.gov/media/182122/download

[–] livingcoder@programming.dev 1 points 10 months ago (1 children)

Is there a way to view the full paper? I'm curious if they properly isolated for people who are also overweight (the kind of people who would consume this artificial sweetener).

[–] livingcoder@programming.dev 8 points 10 months ago

Unfortunately enough men exist that vote differently than women that they naturally become a voting block.

[–] livingcoder@programming.dev 55 points 10 months ago (2 children)

I'm sure Chuck Schumer will get to the bottom of this after he finishes his book tour on antisemitism in America while being completely tone-deaf on the absolute disdain many of us have for our tax dollars supporting a genocide in the 21st century.

[–] livingcoder@programming.dev 0 points 11 months ago

This was a good blog post. I have started using approach #3 as well for just about every situation where I was originally planning on just using a enum type by itself. Inevitably I end up needing to apply shared state to all of my enums (create date, parent table ID, etc.) and this approach has really worked out very well. You can also add some convenience functions for returning if the kind is one of the variants (ex: IsKeywordSearch) to make if-statements easier to read (and a match on the type enum is overly verbose when you don't need the properties contained within the enum itself).

[–] livingcoder@programming.dev 1 points 11 months ago* (last edited 11 months ago)

This looks like the old logo died, laying in a pool of blood. I would like to imagine that they may be subtly acknowledging the end, or at least the art director is.

[–] livingcoder@programming.dev 3 points 11 months ago

But my freedom...

[–] livingcoder@programming.dev 5 points 11 months ago

I had to look it up and it looks like you're right. If only my teacher had spent any effort at all explaining that.

[–] livingcoder@programming.dev 7 points 11 months ago

When the car is at a stop is when he is most vulnerable. He must fight everyone, right there, until the car starts moving again.

[–] livingcoder@programming.dev 27 points 11 months ago (4 children)

I had a similar experience with square roots, writing both the positive and negative answers. It's wild for a teacher to actively reject correct answers because "that's not what we learned today" (the negative answers, in my case).

[–] livingcoder@programming.dev 2 points 11 months ago
# Copy pwd into clipboard using pbcopy
alias cpwd="pwd | tr -d '\n' | pbcopy && echo 'pwd copied into clipboard'"
view more: ‹ prev next ›