HN user

egormakarov

89 karma
Posts0
Comments24
View on HN
No posts found.

suffer endless corporate memos

I think classic russian literature can be everything, but not an exercise in formal double-speak incantations.

Different LLMs executions take different branches, but eventually the possible branches based on the code possible states are saturated

With LLMs even the halting problem is just the question of paying for pro subscription!

I mean, they sell alcohol in shops for money, and not force it on you in some government-mandated way. Which kinda tells that people in general like to drink.

I have a problem with many fellow cyclists here in Germany, because they seem to use something that shouldn't be street-legal as bicycle lighs (very annoying in the night on unlit road)

Not sure what UK drivers would say about that, though

Lets say its 2001 and you are writing some hot e-commerce stuff in plain php. You want to filter data depending on multiple fields in the submitted form. If some field is there, you add one more "AND" clause to the "WHERE", like this: if (isset($_POST['product'])) { $query .= "AND product = " . $_POST['product']; }. So in order not to check every time if the added clause is the first one you start with "WHERE 1=1 ", as "WHERE AND ..." would not work.