Viewing profile — ckok
ckok
HN member- Joined
- Mon, Sep 15, 2014, 2:09 PM UTC
- HN karma
- 105
- Public activity
- 83 items
- HN profile
- View on Hacker News ↗
About ckok
Recent public activity
-
comment
Comment #46476129
The MySQL protocol is a lot saner and easier to implement than the pgsql one. I can imagine thats a factor? Once connected the sql dialect matters really little
-
comment
Comment #45295409
Curiously if you ask if they would consider properly supporting notifications from the mobile web version then the answer is always no. Pwa would be perfectly fine but its crippled…
-
comment
Comment #42219503
I believe the proper term for what i am describing is a recursive descent parser. With which it is also quite doable to generate proper error handling and even recovery. Some form …
-
comment
Comment #42213857
I think this makes it sound a lot more difficult than it has to be, with the formal theory. When it's really one of the most simple things if you divide it in parts and look at it …
-
comment
Comment #41414424
This has been said about pretty much every subject. Writing your own Browsers, compilers, cryptography, etc. But at least for me even if nothing comes of it just knowing how it rea…
-
comment
Comment #39582196
Sso should be the default really. And as a starting point every language has openid connect implemented. Yes it needs work but surely better than the average password reuse? For la…
-
comment
Comment #39116906
Macho executables don't contain debug info. Just references to .o files.
-
comment
Comment #39010063
The only thing missing with Json support now seems to be something like a gin index on jsonb fields to make querying efficiently on any member of the field itself.
-
comment
Comment #38547083
Does anyone know if SQLite has a public roadmap? This combined with a gin or gin like index would be a killer combination
-
comment
Comment #37825107
Does this also cover some kind of facetted search? (Counting the different colored and sized t-shirt) in an efficient way? As that is also a large part that elastic can do but Post…
-
comment
Comment #35505202
I couldn't find it in the docs but does this also support working in a htmx like mode? Where the server renders pages and it does partial updates of parts? Or what some frameworks …
-
comment
Comment #34711642
Does it have any kind of master/slave or replication abilities? Couldn't find anything in the docs.
-
comment
Comment #28260571
Parser generators generally suffer from at least speed, recovery, error handling and lack of debuggability. They also require you to learn a new language, the parser generators lan…
- comment
-
comment
Comment #27120912
But that's the right way to do it really... I remember an obscure thing in c# when var was introduced that if you have a type called 'var' in scope, type inference doesn't work and…
-
comment
Comment #26482217
I can't help but get the feeling that plan with Swift is to be the only language you can effectively use for Apple platforms, but also is probably going to be the language that wil…
- story
-
comment
Comment #26132124
The annoying thing is that all these new libraries can only be used from swift. As interop with swift is a pain from any other language.
-
comment
Comment #25286461
The curious thing is that is isn't a bug in the debugger itself usually. It's the optimizer process that doesn't leave proper instructions of where "x" is at this point.
-
comment
Comment #24736807
No duplication. There's a single file where every type reference or method reference exists once. Note that it's not a library file. The compiled dll or exe has no relationship to …
-
comment
Comment #24563560
Sort of. I can't comment on Kotlin, but Swift is a different beast though. Swift's generics are very different from say c#, java or even c++ templates, especially when you mix them…
-
comment
Comment #24144963
In a way I'm happy rust does not have a stable abi. Swift does, but the stability is 'whatever apple swift emit'. Very little documentation, that what's there is out of date, so th…
-
comment
Comment #23973920
I tried this. Aot compiling with the .net runtime just isn't very practical. I know mono does this, with some guided info for reflection based classes. But the way the structure is…
-
comment
Comment #23842742
Note that C#, Pascal don't "know" about known types during parsing like parsing C/C++ requires, it knows how a type is formatted, what it's looking for is: ' ' If that's there, it'…
-
comment
Comment #23618316
Apple swaps around stuff for seemingly no reason pretty much every update. Making any compiler or debugger writers life a pain.