Harry embarks on 'pseudo royal' tour - but Palace is silent over whether four-day visit will include seeing his father
VMAs 2025 best dressed! Sabrina Carpenter, Tate McRae and Ashlee Simpson flash the flesh in VERY revealing gowns at MTV bash
CodeSOD: Pretty Little State Machine
State machines are a powerful way to organize code. They are, after all, one of the fundamental models of computation. That's pretty good. A well designed state machine can make a complicated problem clear, and easy to understand.
Chris, on the other hand, found this one.
static { sM.put(tk(NONE, NONE, invite), sp(PENDING, INVITED)); // t1 sM.put(tk(REJECTED, REJECTED, invite), sp(PENDING, INVITED)); // t2 sM.put(tk(PENDING, IGNORED, invite), sp(PENDING, INVITED)); // t3 sM.put(tk(PENDING, INVITED, cancel), sp(NONE, NONE)); // t4 sM.put(tk(PENDING, IGNORED, cancel), sp(NONE, NONE)); // t5 sM.put(tk(PENDING, BLOCKED, cancel), sp(NONE, BLOCKED)); // t6 sM.put(tk(INVITED, PENDING, accept), sp(ACCEPTED, ACCEPTED)); // t7 sM.put(tk(INVITED, PENDING, reject), sp(REJECTED, REJECTED)); // t8 sM.put(tk(INVITED, PENDING, ignore), sp(IGNORED, PENDING)); // t9 sM.put(tk(INVITED, PENDING, block), sp(BLOCKED, PENDING)); // t10 sM.put(tk(ACCEPTED, ACCEPTED, remove), sp(NONE, NONE)); // t11 sM.put(tk(REJECTED, REJECTED, remove), sp(NONE, NONE)); // t12 sM.put(tk(IGNORED, PENDING, remove), sp(NONE, NONE)); // t13 sM.put(tk(PENDING, IGNORED, remove), sp(NONE, NONE)); // t14 sM.put(tk(BLOCKED, PENDING, remove), sp(NONE, NONE)); // t15 sM.put(tk(PENDING, BLOCKED, remove), sp(NONE, BLOCKED)); // t16 sM.put(tk(NONE, BLOCKED, invite), sp(PENDING, BLOCKED)); // t17 sM.put(tk(IGNORED, PENDING, invite), sp(PENDING, INVITED)); // t19 sM.put(tk(INVITED, PENDING, invite), sp(ACCEPTED, ACCEPTED)); // t20 sM.put(tk(NONE, NONE, remove), sp(NONE, NONE)); // t21 sM.put(tk(NONE, BLOCKED, remove), sp(NONE, BLOCKED)); // t22 sM.put(tk(BLOCKED, NONE, remove), sp(NONE, NONE)); // t23 }Honestly, I only know this is a state machine because Chris told me. I could hazard a guess base on the variable name sM. The comments certainly don't help. Numbering lines isn't exactly what I want comments for. I don't know what tk or sp are actually doing.
So yes, this is an unreadable blob that I don't understand, which is always bad. But do you know what elevates this one step above that? If you note the third parameter to the tk function- invite, cancel, accept, etc? Those are constants. So are INVITED, PENDING, ACCEPTED.
While I am not fond of using the structure of a variable name to denote its role, "caps means const" is a very well accepted standard. A standard that they're using sometimes, but not all the time, and just looking at this makes me grind my teeth.
.comment { border: none; }Olivia Attwood is still wearing her wedding ring as she reunites with Pete Wicks following THOSE cosy Ibiza snaps - after her 'challenging six months' with husband Bradley Dack
A1112 live updates as overturned car and gas leak closes road in both directions
DAN HODGES: The Tories and Reform MUST unite. I know what will happen if they don't - it's what Keir Starmer is praying for...
ANDREW PIERCE: Is Angela's uber-ambitious ally Wes Streeting now jockeying for Sir Keir's job?
Celine Dion set to perform in Christmas advert for Charlotte Tilbury in a return to the spotlight amid health battle
Beware these savings blunders that could cost you dear
Terrifying moment two children become trapped in sinking sand hole on California beach
Lady Gaga makes VERY dramatic exit out of MTV VMAs after telling crowd she has to leave urgently
Busy Essex car park to be closed while local area gets rejuvenated
Doja Cat grosses out fans with bizarre act on the 2025 MTV VMAs red carpet
Erin Patterson is emotionless as she is escorted from court after being sentenced to LIFE in prison - as the sole survivor of her evil mushroom murder plot speaks out
A New Four-Person Crew Will Simulate a Year-Long Mars Mission, NASA Announces
Read more of this story at Slashdot.
The 58 'outstanding' Essex schools among the best in the UK
Dezi Freeman manhunt day 14 LIVE updates: Shattered widow of cop Neal Thompson allegedly gunned down by Dezi Freeman is comforted by loved ones at moving funeral
High schools more worried about sexism, misogyny and diversity than curriculum says Children's Commissioner
All IT work to involve AI by 2030, says Gartner, but jobs are safe
All work in IT departments will be done with the help of AI by 2030, according to analyst firm Gartner, which thinks massive job losses won’t result.…