> Once they no longer write about it, what then? The AI will no longer be able to reproduce new a11y conventions/guidelines, but if no one is writing about it, do any new a11y conventions/guidelines even exist at that…
I love Costco, but I get it. My wife and I always joke about how we can't leave without spending at least $100, and how that's only like 7 items sometimes.
> .NET is certainly better than Python, but I'm not very happy with the type system and the code organization versus my Rust projects. Have you given F# a whirl?
> So there must be some other reason you didn't get revenue? Right. I think my biggest takeaway from this article is that another engineer discovered that sales and marketing are important and difficult jobs.
You can write a helper method (or use FsToolkit.ErrorHandling[0]) to simplify the F# example to: let Foo () = getData() |> Task.map _.value And it'll be easier to work with the .NET ecosystem if you use the task…
For me, AI code generation for F# has been pretty good! There's one annoying thing Opus/Sonnet do (honestly don't remember what other models do): use old syntax for array indexing. values.[index] // Old way of indexing…
I didn't look at the URL at first and was surprised when this turned in to an ad. Oh well! > Stop selling "unlimited", when you mean "until we change our minds" The limits don't go in to affect until August 28th, one…
> sasmithjr was apparently trying to defend babysitting A.I. by making an analogy with mentoring juniors I regret adding that last bit to my comment because my main point (which I clearly messed up emphasizing and…
> [Dugan allegedly] escorted the them through a private back door to avoid arrest. According to the complaint [0] on page 11, Flores-Ruiz still ended up in a public hallway and was observed by one of the agents. They…
The only thing that might be tricky about FizzBuzz is if the person doesn't know about the modulo operator. I can't remember the last time I used it in production code; I use it far more thinking about FizzBuzz than I…
I agree people should be able to design things property, but I'm not sure this ramp is actually a good example. It might be! But no one is talking about an obvious issue for any ramp that would exist in that photo: it…
> Heating up water quickly is almost never a use case. It'd be helpful for my household for hot water for coffee and tea, and it'd also help us for heating up some extra water for grits or risotto when they need more.…
I cannot stress enough that I think your second bullet is missing the point by a country mile. The Substack post is specifically talking about Nazi viewpoints, not "bad" viewpoints for some shifting definition of bad.…
> Especially with risk of myocardiitis predominant in young males? Isn't the risk of myocarditis worse from COVID than the vaccines? From [1], "In this systematic review and meta-analysis, we found that the risk of…
In my mind, the difference between errors-as-values and exceptions is most useful when describing domain-specific errors and other issues that you have to handle in support of the domain/problem space. To me, domain…
It's possible that you could end up with your example as given, but I think you could organize it differently so that it has your handling while also maintaining the same basic top-level pipeline. Given what you've…
a <- 4 // Assignment, valid This is a compiler error because you haven't made your variable mutable. Also, I actually like that initial assignment and equality testing both use =. I think of `let a = 1` to be less like…
The article quotes that tweet in the third paragraph. It doesn't link to the tweet, but the contents of the tweet are included word-for-word. And then in the next paragraph the article notes the view and retweet counts…
> because the CoC allows this. Project owners could do this before the CoC was created, and even if the CoC explicitly disallowed it, the project owners could do it anyway. The existence of the CoC changes absolutely…
I love using Unquote[0] in F# for similar reasons; it uses F#'s code quotations. Assuming the variables have been defined with the values you state, the assertion is written as: test <@ width > 0 && x + width <…
Have you read Section 230? If so, which section/paragraph of it do you believe supports your understanding of it?
You can use F# in WebAssembly, too, via Bolero[0]. [0] https://fsbolero.io/
Look at the decimal type; it's less performant, but you'll avoid floating point issues. https://docs.microsoft.com/en-us/dotnet/api/system.decimal?v...
EEE is when a proprietary addition is made that affects interop with other conformant implementations of an open standard. This privacy feature does not alter how Chrome, FF, or Safari will render HTML or run…
The email service I use has a library that allows me to set the Host as a constructor parameter, so I have an EmailHost environment configuration value that I change. It's localhost for dev/testing and set to the…
> Once they no longer write about it, what then? The AI will no longer be able to reproduce new a11y conventions/guidelines, but if no one is writing about it, do any new a11y conventions/guidelines even exist at that…
I love Costco, but I get it. My wife and I always joke about how we can't leave without spending at least $100, and how that's only like 7 items sometimes.
> .NET is certainly better than Python, but I'm not very happy with the type system and the code organization versus my Rust projects. Have you given F# a whirl?
> So there must be some other reason you didn't get revenue? Right. I think my biggest takeaway from this article is that another engineer discovered that sales and marketing are important and difficult jobs.
You can write a helper method (or use FsToolkit.ErrorHandling[0]) to simplify the F# example to: let Foo () = getData() |> Task.map _.value And it'll be easier to work with the .NET ecosystem if you use the task…
For me, AI code generation for F# has been pretty good! There's one annoying thing Opus/Sonnet do (honestly don't remember what other models do): use old syntax for array indexing. values.[index] // Old way of indexing…
I didn't look at the URL at first and was surprised when this turned in to an ad. Oh well! > Stop selling "unlimited", when you mean "until we change our minds" The limits don't go in to affect until August 28th, one…
> sasmithjr was apparently trying to defend babysitting A.I. by making an analogy with mentoring juniors I regret adding that last bit to my comment because my main point (which I clearly messed up emphasizing and…
> [Dugan allegedly] escorted the them through a private back door to avoid arrest. According to the complaint [0] on page 11, Flores-Ruiz still ended up in a public hallway and was observed by one of the agents. They…
The only thing that might be tricky about FizzBuzz is if the person doesn't know about the modulo operator. I can't remember the last time I used it in production code; I use it far more thinking about FizzBuzz than I…
I agree people should be able to design things property, but I'm not sure this ramp is actually a good example. It might be! But no one is talking about an obvious issue for any ramp that would exist in that photo: it…
> Heating up water quickly is almost never a use case. It'd be helpful for my household for hot water for coffee and tea, and it'd also help us for heating up some extra water for grits or risotto when they need more.…
I cannot stress enough that I think your second bullet is missing the point by a country mile. The Substack post is specifically talking about Nazi viewpoints, not "bad" viewpoints for some shifting definition of bad.…
> Especially with risk of myocardiitis predominant in young males? Isn't the risk of myocarditis worse from COVID than the vaccines? From [1], "In this systematic review and meta-analysis, we found that the risk of…
In my mind, the difference between errors-as-values and exceptions is most useful when describing domain-specific errors and other issues that you have to handle in support of the domain/problem space. To me, domain…
It's possible that you could end up with your example as given, but I think you could organize it differently so that it has your handling while also maintaining the same basic top-level pipeline. Given what you've…
a <- 4 // Assignment, valid This is a compiler error because you haven't made your variable mutable. Also, I actually like that initial assignment and equality testing both use =. I think of `let a = 1` to be less like…
The article quotes that tweet in the third paragraph. It doesn't link to the tweet, but the contents of the tweet are included word-for-word. And then in the next paragraph the article notes the view and retweet counts…
> because the CoC allows this. Project owners could do this before the CoC was created, and even if the CoC explicitly disallowed it, the project owners could do it anyway. The existence of the CoC changes absolutely…
I love using Unquote[0] in F# for similar reasons; it uses F#'s code quotations. Assuming the variables have been defined with the values you state, the assertion is written as: test <@ width > 0 && x + width <…
Have you read Section 230? If so, which section/paragraph of it do you believe supports your understanding of it?
You can use F# in WebAssembly, too, via Bolero[0]. [0] https://fsbolero.io/
Look at the decimal type; it's less performant, but you'll avoid floating point issues. https://docs.microsoft.com/en-us/dotnet/api/system.decimal?v...
EEE is when a proprietary addition is made that affects interop with other conformant implementations of an open standard. This privacy feature does not alter how Chrome, FF, or Safari will render HTML or run…
The email service I use has a library that allows me to set the Host as a constructor parameter, so I have an EmailHost environment configuration value that I change. It's localhost for dev/testing and set to the…