The archive.ph links never work for me. The are you human, check always gets stuck in a loop. Is there there any way around that?
I know it's a bit of a meme but I was always curious to try out some of the recipes in the "Microwave cooking for one" recipe book. https://www.microwavecookingforone.com/
Why do you not want to cook the proteins? Does it break them down to uselessness, or do the become harmful?
I found this a good review of the physical and chemical impact quitting marijuana. https://youtu.be/7u_cm5b1s7Y I'd argue that the chemical withdrawal effects of marijuana, are nothing compared to habitual smoking,…
I recently had a similar experience. I purchased a bag of citric acid, and it was boldly labeled as non-GMO and "approved for use with organic food".
The only time `IsSet` would be false is when `NewOption` was not used to initialize the value. e.g. var o Option[int32] or could have `None` helper func None[T any]() Option[T] { return Option[T]{} } o := None[int32]()
Another way to do `Option` without pointers could be similar to the following with a struct with two members. type Option[T any] struct { v T isSet bool } func NewOption[T any](v T) Option[T] { return Option[T]{ v: v,…
Did you ever see the time where spammers could share calendar invites with you that would automatically get applied to your calendar without you accepting it... Google eventually added an option to change this behavior.…
What do you use for motion detection? I've found the Unifi NRV motion detection to be very poor. Especially raining at night.
Have you considered enabling parallel tests for that package? It let's test functions run in parallel with each other. Might address some of the issue with the performance.
Na that's a bunch of BS Amazon came up with to validate their position. There is nothing stopping Amazon from putting Chromecast app support other than Amazon. The only thing I can guess is Amazon wanted chromecast to…
I've been at Amazon for a bit over 5 years with 12 years total. Joined with about 7 years of prior experience. From the other post I see I did a very poor job of negotiating when I first joined with my experience. I've…
Check out Derek Parker's talk from GopherCon 2015. He provides specific reasons gdb has difficulties with debugging Go programs, and why a tool which specifically understands how Go functions is needed.…
http://www.amazon.com/dp/0393317552 Guns, Germs, and Steel by Jared M. Diamond does a great job of explaining this in detail, and not just in the North Americas, but examples throughout the world. It boils down to a few…
Looks like this issue is pervasive in other languages as well. Out of curiosity ran the same test in Javascript and received the same result. s = "We went to eat at multiple cafe\u0301" "We went to eat at multiple…
The archive.ph links never work for me. The are you human, check always gets stuck in a loop. Is there there any way around that?
I know it's a bit of a meme but I was always curious to try out some of the recipes in the "Microwave cooking for one" recipe book. https://www.microwavecookingforone.com/
Why do you not want to cook the proteins? Does it break them down to uselessness, or do the become harmful?
I found this a good review of the physical and chemical impact quitting marijuana. https://youtu.be/7u_cm5b1s7Y I'd argue that the chemical withdrawal effects of marijuana, are nothing compared to habitual smoking,…
I recently had a similar experience. I purchased a bag of citric acid, and it was boldly labeled as non-GMO and "approved for use with organic food".
The only time `IsSet` would be false is when `NewOption` was not used to initialize the value. e.g. var o Option[int32] or could have `None` helper func None[T any]() Option[T] { return Option[T]{} } o := None[int32]()
Another way to do `Option` without pointers could be similar to the following with a struct with two members. type Option[T any] struct { v T isSet bool } func NewOption[T any](v T) Option[T] { return Option[T]{ v: v,…
Did you ever see the time where spammers could share calendar invites with you that would automatically get applied to your calendar without you accepting it... Google eventually added an option to change this behavior.…
What do you use for motion detection? I've found the Unifi NRV motion detection to be very poor. Especially raining at night.
Have you considered enabling parallel tests for that package? It let's test functions run in parallel with each other. Might address some of the issue with the performance.
Na that's a bunch of BS Amazon came up with to validate their position. There is nothing stopping Amazon from putting Chromecast app support other than Amazon. The only thing I can guess is Amazon wanted chromecast to…
I've been at Amazon for a bit over 5 years with 12 years total. Joined with about 7 years of prior experience. From the other post I see I did a very poor job of negotiating when I first joined with my experience. I've…
Check out Derek Parker's talk from GopherCon 2015. He provides specific reasons gdb has difficulties with debugging Go programs, and why a tool which specifically understands how Go functions is needed.…
http://www.amazon.com/dp/0393317552 Guns, Germs, and Steel by Jared M. Diamond does a great job of explaining this in detail, and not just in the North Americas, but examples throughout the world. It boils down to a few…
Looks like this issue is pervasive in other languages as well. Out of curiosity ran the same test in Javascript and received the same result. s = "We went to eat at multiple cafe\u0301" "We went to eat at multiple…