Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
ytugiuyghvk
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
ytugiuyghvk
10y ago
No, but there are several reasons it is suboptimal here. The lookupbar is associated with the window chrome (ie. there is one per window). Inserting it into the DOM requires emulating this behavior by synthesizing one "bar" in eac
2.
▲
by
ytugiuyghvk
10y ago
Same here. Is the Lookupbar (Alt+Del) possible to do with WebExtensions? I think it would have to be recreated in the DOM and inserted into the web page.
3.
▲
by
ytugiuyghvk
10y ago
Nit: self-closing refers to tags that are closed like <this/>.
4.
▲
by
ytugiuyghvk
10y ago
Related reading re. Vulkan "What a WebGL2 successor could look like and why it can’t be WebVulkan" - https://floooh.github.io/2016/08/13/webgl-next.html See also the the author's sketch of a ne
5.
▲
by
ytugiuyghvk
10y ago
What a waste of time.
6.
▲
by
ytugiuyghvk
10y ago
class = X is just an anonymous template type parameter with default value X, just like auto foo(int = 0); declares a function with a int parameter with default value 0. In this case, it's just a conventional place to stick an
7.
▲
by
ytugiuyghvk
10y ago
If you want to template on an r-value reference, the easiest way is probably to use a forwarding reference and disable the template if the template parameter deduces to a reference template <class T, class = enable_if_t<!is_refe
8.
▲
by
ytugiuyghvk
10y ago
What's wrong with C++'s closures?
9.
▲
by
ytugiuyghvk
10y ago
b.clone(), of course, derefs b as well.
10.
▲
by
ytugiuyghvk
10y ago
Why ask that B: Copy instead of B: Clone?
11.
▲
by
ytugiuyghvk
10y ago
Every type system eliminates all its own type errors by definition. Even the trivial system with one type eliminates all its own type errors (vacuously, since there are zero of them). There is no universal set of errors called type errors.