Earlier quoted context omitted.
That's a pretty standard range for high level consultants. Bellard can definitely bill well above that, if there are tasks that require his talent.
How much higher above $1k/hr can he bill?...
QuickJS JavaScript Engine
61–70 of 279 posts
Re: QuickJS JavaScript Engine
#62Earlier quoted context omitted.
Yeah... his current employer already does.
Do you know who his current employer is (if any)?
Re: QuickJS JavaScript Engine
#63Earlier quoted context omitted.
Yeah... his current employer already does.
Do you know who his current employer is (if any)?
Re: QuickJS JavaScript Engine
#64Earlier quoted context omitted.
Apparently the garbage collection algorithm is reference counting with cycle removal: https://bellard.org/quickjs/quickjs.html#Garbage-collection . Swift does pure reference counting, relying on the programmer to annotate references so that there are no cycles (which is untenable in JavaScript, due to the way the language is designed).
Curious what ”The cycle removal algorithm only uses the reference counts and the object content” means in practice. Is it based on some well known algorithm?
Re: QuickJS JavaScript Engine
#65This man is a wizard. You can also thank him for ffmpeg and qemu. A company I worked for once tried to hire him as a consultant because he had implemented an LTE BTS in software. Is there anything he hasn't done? EDIT: tombert beat me to it[0] by a couple minutes. [0] https://news.ycombinator.com/item?id=20413498
He's probably worth $300-$500/hr if not $1k...
Re: QuickJS JavaScript Engine
#66Re: QuickJS JavaScript Engine
#67quickjs.c is a 47,842 line C file. I think that sets the record for the largest handwritten file I've seen.
Is it hand-written as a single file, though? I'm assuming the release is the output of some script that does concatenation.
Re: QuickJS JavaScript Engine
#68quickjs.c is 47,842 lines of non-generated code. :mindblown:
Re: QuickJS JavaScript Engine
#69Re: QuickJS JavaScript Engine
#70Note that Bellard already wrote a (small) HTML/CSS engine for his Emacs clone. So we're only a small step away from Bellard-Browser.