7 LINES
Code clear as code
“The law ought to be brief, so that it may be more easily understood by the unlearned.”
Lucio Anneo Seneca
— How much did they give you?
— Six and a half cycles.
— Fuck! That’s insane! I know a guy who got just one cycle for the same thing — and he was a repeat offender.
— Yeah, everyone says six cycles is too much. Even the supervisor. But now that they’ve removed appeals and judicial reviews, I have to serve them all. There’s nothing left to do.
— Why don’t you request a code review?
— I already did. The supervisor told me his hands are tied because the code is down to seven lines.
It’s just a random number generator now. No more revisions, everything’s as clear as day.
// Legem brevem esse oportet, quo facilius ab imperitis teneatur
import random
solar_cycles = random.randint(1, 1000)
lunar_cycles = random.randint(0, 12)
v = f”{solar_cycles} solar cycles / {lunar_cycles} lunar cycles”
justice = f”Justice = {v}”
execute(solar_cycles, lunar_cycles, defendant_id)
print(justice)
VERSIONE ORIGINALE IN ITALIANO
7 RIGHE
Codice chiaro come codice
"Occorre che la legge sia breve, così che l'inesperto possa comprenderla facilmente"
Lucio Anneo Seneca
— Quanto ti hanno dato?
— Sei cicli e mezzo.
— Cazzo! Ma è tantissimo! Un tizio che conosco per la stessa cosa ha preso un ciclo solo, ed era pure recidivo.
— Sì, l’hanno detto tutti che sei cicli sono troppi. Anche il supervisore. Ma adesso che hanno tolto i gradi di giudizio e gli appelli, mi toccherà farmeli tutti. Non c’è più nulla da fare.
— Perché non chiedi una revisione del codice?
— L’ho già fatto. Il supervisore mi ha detto che ha le mani legate, perché oramai il codice sono sette righe.
È un generatore di numeri casuali. Non ci sono più revisioni da fare, è tutto chiaro come il sole.
// Legem brevem esse oportet, quo facilius ab imperitis teneatur
import random
solar_cycles = random.randint(1, 1000)
lunar_cycles = random.randint(0, 12)
v = f”{solar_cycles} solar cycles / {lunar_cycles} lunar cycles”
justice = f”Justice = {v}”
execute(solar_cycles, lunar_cycles, defendant_id)
print(justice)




It would have taken me much less time to graduate from law school! Have a great day!