HackerTrans
TopNewTrendsCommentsPastAskShowJobs

hilbertseries

no profile record

comments

hilbertseries
·vor 10 Tagen·discuss
Looking over Journal of Cryptology, they appear to be a theory journal. So an attack on an implementation, based on hardware probably doesn't interest them as much.
hilbertseries
·vor 15 Tagen·discuss
In 2012 Mochizuki claimed to have proved the abc conjecture by developing a new branch of mathematics. He was a respected mathematician, but the theories he had developed were so complex no one could determine if he was correct. It took six years until two number theorists dissected the proof and found a fatal flaw in it.
hilbertseries
·vor 3 Monaten·discuss
Investigation isn’t finished, but it was almost certainly the US. If it was Iran Trump or Hegeseth would not have been able to contain themselves.
hilbertseries
·vor 4 Monaten·discuss
And Python is four years older than Java.
hilbertseries
·vor 6 Monaten·discuss
I feel like this argument would make a lot more sense if LLMs had anywhere near the same level of determinism as a compiler.
hilbertseries
·vor 6 Jahren·discuss
I’ve worked with many libraries and frameworks and I haven’t seen transactions by default. Given how easy it is to deadlock yourself this way, for instance by naively making batch reads in random order. I doubt many libraries would make transactions the default.

For instance in rails and django you need to explicitly specify a transaction. Can you give an example of a framework that turns off auto commit by default and instead runs it at the end of http requests?
hilbertseries
·vor 6 Jahren·discuss
Generally a connection pool also checks the health of its connections. In SQL connection pools this can be done by executing a select 1, if this fails then a new connection can be attempted.
hilbertseries
·vor 6 Jahren·discuss
Innodb does not create locks for reads, unless in a transaction.

> SELECT ... FROM is a consistent read, reading a snapshot of the database and setting no locks unless the transaction isolation level is set to SERIALIZABLE. For SERIALIZABLE level, the search sets shared next-key locks on the index records it encounters. However, only an index record lock is required for statements that lock rows using a unique index to search for a unique row.

https://dev.mysql.com/doc/refman/5.7/en/innodb-locks-set.htm...