|
Wordle 538 3/6*
β¬π©β¬π¨β¬
β¬π©π©π©β¬
π©π©π©π©π©
Happiness will never come to those who fail to appreciate what they already have. -Anon
|
|
|
|
|
β¬π©π©β¬β¬
π©π©π©β¬β¬
π©π©π©π©π©
Life should not be a journey to the grave with the intention of arriving safely in a pretty and well-preserved body, but rather to skid in broadside in a cloud of smoke, thoroughly used up, totally worn out, and loudly proclaiming βWow! What a Ride!" - Hunter S Thompson - RIP
|
|
|
|
|
Wordle 538 4/6
π¨β¬β¬β¬β¬
β¬π¨β¬β¬β¬
β¬π©π©β¬β¬
π©π©π©π©π©
Get me coffee and no one gets hurt!
|
|
|
|
|
Wordle 538 4/6*
β¬β¬β¬π¨β¬
β¬β¬π©π©β¬
β¬β¬π©π©π¨
π©π©π©π©π©
|
|
|
|
|
Wordle 538 4/6
β¬β¬π¨β¬β¬
β¬β¬β¬π©β¬
β¬β¬π©π©π©
π©π©π©π©π©
"A little time, a little trouble, your better day"
Badfinger
|
|
|
|
|
|
In Italian folklore, the Befana (pronounced [beΛfaΛna]) is an old woman who delivers gifts to children throughout Italy on Epiphany Eve (the night of January 5) in a similar way to Santa Claus or the Three Magi Kings. Wiki
"A little time, a little trouble, your better day"
Badfinger
|
|
|
|
|
But can she make the trains run on time?
|
|
|
|
|
In Italy, that's an NP Complete problem.
|
|
|
|
|
You should see the traffic patterns? Talk about NP completeness. My son and his family spent a vacation in Rome and Naples. They absolutely loved it, but he would never drive a car there and he is a fearless driver in US.
"A little time, a little trouble, your better day"
Badfinger
|
|
|
|
|
I thought that same thing when I read about this Italian Santa.
"A little time, a little trouble, your better day"
Badfinger
|
|
|
|
|
There is a solution[^]
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
I am not convinced that would stop most cats!
|
|
|
|
|
Most cats would see that as a challenge.
|
|
|
|
|
|
How do you water that tree?
|
|
|
|
|
#Worldle #321 3/6 (100%)
π©π©π¨β¬β¬β¬
οΈ
β¬β¬β¬β¬β¬β‘οΈ
π©π©π©π©π©π
https://worldle.teuteuf.fr
had to use map. recognized the shape as pacific or indian ocean islands, but there so many,
"A little time, a little trouble, your better day"
Badfinger
|
|
|
|
|
At least reporting 'Internal Server Errors'.
Drowned in its own success I think.
"Time flies like an arrow. Fruit flies like a banana."
|
|
|
|
|
And it appears to be back, if slow.
"Time flies like an arrow. Fruit flies like a banana."
|
|
|
|
|
It is "still" down ... I became very curious after seeing some more info on YT, and tried it right now, but I had no luck Quote: We're experiencing exceptionally high demand. Please hang tight as we work on scaling our systems. Perhaps everyone is interested in getting their homework done 
modified 11-Dec-22 15:27pm.
|
|
|
|
|
my last button implementation works okay, but it can sometimes report events out of order because it doesn't actually queue events. In the case of a click followed by a long click, the long click will be reported first if they're close enough together. This may work for simple UI scenarios, but nothing polished.
so what i did was i made the button (optionally) interrupt based. on the interrupt it logs a timestamp and whether the button was pressed or depressed into a circular buffer.
the idea then is when you call update() next (the cooperatively threaded "pump" method) it will parse the contents of that circular buffer and fire callbacks as necessary.
It seems simple, but long clicks, and multi-clicks, plus the case where you hold the button down on startup complicate things.
parsing button clicks reminds me of parsing the contents of [] brackets in regex, esp since you could do stuff like [[[:alpha:]]-a-z]
all this for a button. seems simple, right?
To err is human. Fortune favors the monsters.
|
|
|
|
|
Like Morse code with an always live button.
"A little time, a little trouble, your better day"
Badfinger
|
|
|
|
|
Input buffers can be bears. The regex comparison is interesting.
"A little time, a little trouble, your better day"
Badfinger
|
|
|
|
|
The actual buffering part is pretty easy. The trick is parsing what I put in there. Basically each event (button down, or button up) has a timestamp associated with it, and the idea is to compute deltas between them for multi-click events or long presses. That's part of it, but there also the corner cases I alluded to.
To err is human. Fortune favors the monsters.
|
|
|
|
|
Understood.
Buttons and switches can be tricky for the user.
Once we did a UI study on the states of a switch or button. Physical toggle switches with labels are preferred (old style used in aircraft). But they are expensive and heavy so many control panels use lights and labels. Red light ON means OFF, green light ON means ON. But when they are both on confuses folks. If one does not have colored lights, OFF labeled light ON means OFF? ON labeled light ON means ON. Stuff like that. You would be surprised how many people get these things reversed. Anyway, I digress.
"A little time, a little trouble, your better day"
Badfinger
|
|
|
|