funny_falcon's comments

funny_falcon | 1 year ago | on: C: Simple Defer, Ready to Use

OMG!

returns_struct looks actually correct to me, ie it is expected (by me). Golang's defer works this way.

Do both examples follow standard? Or is it common misinterpretation by all compilers?

funny_falcon | 1 year ago | on: 500 Python Interpreters

Unfortunately, pocketpy moved to global reference to vm recently while changing implementation from C++ to C. Weird decision.

funny_falcon | 1 year ago | on: Telegram founder Pavel Durov arrested at French airport

AFAIK, Signal doesn’t provide any way to prove its application were built from non-modified audited free open source code. Indeed there are evidences it behaves “a bit” differently.

So unless you’ve built application by yourself, you have no guarantee of it’s sequrity.

funny_falcon | 1 year ago | on: Show HN: High-precision date/time in SQLite

As a PostgreSQL smallish contributor I just can say: NO, DON'T DO THIS!!!!

Extensible type system is a worst thing that could happend with database end-user performance. Then one may not short-cut no single thing in query parsing and optimization: you must check type of any single operand, find correct operator implemenation, find correct index operator family/class and many more all through querying system catalog. And input/output of values are also goes through the functions, stored in system catalog. You may not even answer to "select 1" without consulting with system catalog.

There should be sane set of builtin types + struct/json like way of composition. That is like most DBs do except PostgreSQL. And I strongly believe it is right way.

page 1