Follow the instructions on the curry box. It should break apart into pieces like a chocolate bar.
You can also just add one square at a time and keep tasting it until it’s the strength you want.
Start by boiling potatoes, carrots, onion. When they soften add roux. It’s a pretty forgiving recipe
頑張って!
This seems like very standard ML. I’m not surprised it works, but also it likely takes a huge amount of training data (i.e. print samples) to recognize a specific machine.
So it’s interesting and useful, but not as impressive or useful as the article makes it seem.
Looks cozy! If you’ll forgive a bit of unsolicited advice: use tacks instead of tape where possible. Tacks leave behind a tiny hole that can easily be completely erased with a tiny bit of touch up paint whereas tape can pull off large sections of paint and really mess up the sheetrock when removed.
Love the laptop stickers!
Ironically AI would probably work ok here whereas excel is using a human-designed pattern matching heuristic that apparently either has a bug or didn’t take into account your locale properly. I say that as someone with a relatively negative opinion of ai
This is a task ai would do well at whereas most of the Excel workflow it would not.
Many houseplants you buy from the hardware store or similar have been terribly mistreated by the store and transport process so they’ll show signs of stress within days of bringing them home usually.
New plant owners often assume they’re doing something wrong, but you have to remember the plant just went through some major trauma so it’s going to have issues for a little bit.
Just wanted and care for it as prescribed and it’ll usually get better eventually.
Bonus tip: buy a plant from a locally nursery and it’ll likely be healthy when you get it :)
This is something I’m struggling with a bit actually.
I created a custom peer to peer networking library for an old game from the 90s. It uses an ICE (webRTC) library with a signaling server to establish peer to peer connections. I looked into libp2p but I can’t wrap my head around how a DHT would be better than my simple signaling / lobby server. Yes, you’d have lots of potential relay servers around, but I already use a TURN server provoder for my current solution that has global relays for pennies per month. And Kademlia/DHT doesn’t remove the need for a primary server somewhere because every new client needs an initial peer to connect - so I have to provide a static peer anyway. Not sure how this is any different than a server.
Anyway - I really like libp2p and want to explore the option, but that’s my experience with an alternative p2p option.