Viewing profile — ytugiuyghvk
ytugiuyghvk
HN member- Joined
- Thu, Dec 29, 2016, 3:04 PM UTC
- HN karma
- 68
- Public activity
- 11 items
- HN profile
- View on Hacker News ↗
About ytugiuyghvk
No profile information was provided.
Recent public activity
-
comment
Comment #13677300
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 emulat…
-
comment
Comment #13676088
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.
-
comment
Comment #13646948
Nit: self-closing refers to tags that are closed like .
-
comment
Comment #13594315
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 s…
-
comment
Comment #13500551
What a waste of time.
-
comment
Comment #13493423
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 cas…
-
comment
Comment #13492547
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…
-
comment
Comment #13492142
What's wrong with C++'s closures?
-
comment
Comment #13436210
b.clone(), of course, derefs b as well.
-
comment
Comment #13431442
Why ask that B: Copy instead of B: Clone?
-
comment
Comment #13277970
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 the…