Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
ejones
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
Experimenting with ML-Driven Escape Room Games
(sonyinteractive.com)
2 points
by
ejones
1y ago
|
0 comments
2.
▲
by
ejones
2y ago
Ah nice! Well, hats off this is really impressive. As other commenters mentioned the extent to which it's documented and the restricted scope probably helped.
3.
▲
by
ejones
2y ago
Amazing work. I'm interested in the choice of WASM - presumably any target that can run DOOM could've been used? Of which there are innumerable choices I assume. Was it for symbolic reasons or genuinely the most useful target?
4.
▲
by
ejones
2y ago
You might be right that they're similarly powerful. In some cases, an arbitrary output format might in and of itself be desirable. Like it might result in token savings or be more natural for the LLM. For instance, generating code snip
5.
▲
by
ejones
2y ago
FWIW, llama.cpp has always had a JSON schema -> GBNF converter, although it launched as a companion script. Now I think it's more integrated in the CLI and server. But yeah I mean, GBNF or other structured output solutions would of
6.
▲
by
ejones
2y ago
Similar approach to llama.cpp under the hood - they convert the schema to a grammar. Llama.cpp's implementation was specific to the ggml stack, but what they've built sounds similar to Outlines, which they acknowledged.
7.
▲
by
ejones
4y ago
Awesome to see work in the DB wire compatible space. On the MySQL side, there was MySQL Proxy ( https://github.com/mysql/mysql-proxy ), which was scriptable with Lua, with which you could create your own MySQL wire com
8.
▲
by
ejones
4y ago
In fact it looks like there are already browser extensions that do this for Markdown: https://chrome.google.com/webstore/detail/markdown-viewer/ck... https://chrome.google.com/webstore/de
9.
▲
by
ejones
5y ago
There's a proposal for this: https://github.com/tc39/proposal-partial-application
10.
▲
by
ejones
5y ago
It just navigated the page itself by assigning window.location.href, which isn't subject to the same restrictions as popups.
11.
▲
by
ejones
6y ago
Yeah, the inclusion criteria are pretty broad: The snapshot will include every repo with any commits between the announcement at GitHub Universe on November 13th and 02/02/2020, every repo with at least 1 star and any co
12.
▲
by
ejones
6y ago
Apparently the Saguache Crescent in Colorado is (as of this video in 2016) still using the linotype, the last known newspaper in the US to do so: https://www.youtube.com/watch?v=DNa9XRoNRUM
13.
▲
Show HN: Irene simplifies building high-performance web apps
(ejones.github.com)
1 points
by
ejones
14y ago
|
0 comments
14.
▲
Solving the Mouselook Problem in JavaScript with Scroll
(ejones.github.com)
1 points
by
ejones
15y ago
|
0 comments
15.
▲
by
ejones
15y ago
That, or use a split-frame browser extension ( https://addons.mozilla.org/en-US/firefox/addon/fox-splitter-... ) ( http://www.chromeplugins.org/plugins/google-chrome-dual-view... )
16.
▲
by
ejones
15y ago
Code sharing really only becomes a compelling argument if you're building browser games or something similarly interactive (i.e., really bloody interactive). In this case, you need to run the same logic on the client (to reduce latency) and
17.
▲
by
ejones
16y ago
Indeed. Linear Lisp promises the same thing ( http://www.deepdyve.com/lp/association-for-computing-machine... ) and perhaps Linear Joy ( http://osdir.com/ml/lang.concatenative/2005-10/msg00009.html )... It seems that when you do that, thoug
18.
▲
by
ejones
16y ago
Yeah, it doesn't seem to be a complete solution. My client actually ended up deploying a virtualized IE8 to sit alongside IE6 on all workstations.
19.
▲
by
ejones
16y ago
That exists, it's called 'Compatibility Mode'. And by default (at least in IE8, at my current client's deployment) it uses it for all Intranet Sites. You can also use meta-tag 'X-UA-Compatible' to force a certain compatibility ( http://msdn
20.
▲
by
ejones
16y ago
You could just write a mixed-mode assembly to bridge V8 to the .NET thread pool and libraries...