Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
crowlKats
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
crowlKats
3mo ago
apologies, this is inaccurate currently, will get things updated
2.
▲
by
crowlKats
7mo ago
could you try again? it should be available now (no need to update deno CLI)
3.
▲
JSR First Impressions
(kitsonkelly.com)
2 points
by
crowlKats
3y ago
|
0 comments
4.
▲
by
crowlKats
3y ago
it actually does: its not part of the WebGPU API directly itself, but its separate: https://deno.com/blog/v1.40#webgpu-windowing--bring-your-own...
5.
▲
by
crowlKats
3y ago
yes, the doc.deno.land is relatively outdated and uses an old system. our static generator via the doc subcommand and registry are the newer systems
6.
▲
by
crowlKats
3y ago
Hey, Leo from Deno here. We recently released a static HTML documentation generator via our `deno doc` subcommand. We also have a similar system for our registry (here an example: https://deno.land/std@0.209.0/http/
7.
▲
The problems and solutions of multithreading in wgpu
(gfx-rs.github.io)
2 points
by
crowlKats
3y ago
|
0 comments
8.
▲
by
crowlKats
4y ago
There are no removals in the CLI, and std is considered unstable, and due to that has different versioning that is still in 0.x
9.
▲
by
crowlKats
4y ago
ARM64 builds are something that has been getting investigated. The biggest problem is that github doesnt provide any ARM64 runners, so workarounds around that are necessary
10.
▲
by
crowlKats
4y ago
deps.ts is currently the most common way, however new projects like fresh use import maps. the problem with importmaps is they are not composable, as such, using an importmap for a library is usually bad as said importmap is not picked up a
11.
▲
by
crowlKats
4y ago
proper applications as well. example is the https://deno.land website has an average CPU time of 6ms. CPU time means it doesnt include any IO bound operations, so ie doing a fetch request wont really contribute to the CPU time.
12.
▲
by
crowlKats
4y ago
The wording in that blogpost might be a bit off, here it is more in-depth: https://deno.com/blog/netlify-edge-functions-on-deno-deploy Netlify is using Deploy
13.
▲
by
crowlKats
4y ago
The M1 builds are made manually by us, as github doesnt provide any runners. the same problem does apply for linux arm, however we don't have any arm linux systems any one of the members use; and building on a pi is a no-go, as that ca
14.
▲
by
crowlKats
4y ago
No, Netlify actually uses Deno to some degree: https://www.netlify.com/blog/announcing-serverless-compute-w...
15.
▲
by
crowlKats
4y ago
> It is using silly naming conventions in filenames as an alternative to specifying routes. eg /users/[name].tsx for /users/:name Its a convention also used by Next.js, so it is just sticking to existing conventions.
16.
▲
by
crowlKats
4y ago
a deno.dev subdomain is provided to all deno deploy projects ( https://deno.com/deploy )
17.
▲
by
crowlKats
4y ago
https://deno.land/install.sh is a redirect to https://deno.land/x/install.sh , which is treated as any /x/ (community) module. These modules are immutable clones of github tags (in this case,
18.
▲
by
crowlKats
4y ago
I wouldnt say an iframe and this are in any way shape or form comparable. this is a "full-fledged" website. > except that if node.land or crux.land go down, you've lost your reproducibility. Dependencies are cached. This i
19.
▲
by
crowlKats
5y ago
Deno uses tokio instead of libuv. Deno comes with a large amount of tooling built-in: formatting, testing, linting, documentation, and other
20.
▲
Test Your JavaScript and TypeScript Documentation with Deno
(caspervonb.xyz)
4 points
by
crowlKats
5y ago
|
0 comments
21.
▲
by
crowlKats
6y ago
Yes, there is the unstable plugin system that can be used for that
22.
▲
by
crowlKats
6y ago
For people seeking a solution, one can use deno_dom, which implements various DOM related APIs, including DOMParser, which lets you parse XML
23.
▲
by
crowlKats
6y ago
The problem is that the blogpost added videos, which made cloudflare trigger and think that all the .ts files we distrubte are MPEG Transport Stream files, which would violate CF's ToS on streaming.
24.
▲
by
crowlKats
6y ago
There is also Google's Dawn implementation