Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
ingenter
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
ingenter
10y ago
Here's a list of various image interpolation techniques: - http://www.ifp.illinois.edu/~jyang29/papers/chap1.pdf * Image super-resolution: Historical overview and future challenges - http://www.ro
2.
▲
by
ingenter
10y ago
Would it be better if GPU drivers could compile open-spec bytecode and upload the result to the GPU to do all of the computation? This way OpenGL may be used as a library, shipped with the application.
3.
▲
by
ingenter
10y ago
To be fair "React Draft Wysiwyg" is using contenteditable too, but it also builds a full model of the document.
4.
▲
by
ingenter
10y ago
I just came here to write that I think this is THE right approach for wysiwyg editor. Having a full model of the document tree rather and working from that rather than sanitizing `contenteditable`. I expect this approach to automatically so
5.
▲
by
ingenter
10y ago
No, light is not different. If you want to adjust for "red/blue shift", you may use special relativity, and in special relativity you have the conservation of 4-momentum, which will give you the same result.
6.
▲
by
ingenter
10y ago
> What is it that super intelligence is supposed to be able to do that cannot otherwise be done? Find patterns a human would never be able to. Find winning strategies we could not predict. Building models that don't fit a human br
7.
▲
by
ingenter
10y ago
Here's a list of various image interpolation techniques, with similar goal: - http://www.wisdom.weizmann.ac.il/~vision/SingleImageSR.html - http://chiranjivi.tripod.com/EDITut.html - http:/&
8.
▲
by
ingenter
10y ago
From what I see, the only thing that can help with post-mortem debugging is changing the promise so that it doesn't catch the exception when calling the initialiser or handler. You can still do whatever you could with Promises (but yo
9.
▲
by
ingenter
10y ago
> To make your GC-when-appropriate advice real, one has to show a real implmentation. I haven't tested it closely, but I believe that Rust with this crate: https://github.com/Manishearth/rust-gc is an implement
10.
▲
by
ingenter
10y ago
> Your prelude and the followup question is not well-formed. Thank you for your feedback, I appreciate it. > C++ programmers do not have a bias against GC as a specific problem-solving technique. Expert C++ programmers can embrace GC
11.
▲
by
ingenter
10y ago
> No program language I am aware of (and I don't claim to know all) are good at saying "GC this 5%, I'll explicitly handle everything else" I haven't used rust in production, but I think it allows you to do preci
12.
▲
by
ingenter
10y ago
Do you understand that the linked article, and the talk referenced in the article describe a way to implement garbage collection as a solution to (memory management for) data structures with cycles? Do you think that this problem is not e
13.
▲
by
ingenter
10y ago
You haven't answered my question. Please re-read it carefully.
14.
▲
by
ingenter
10y ago
I recently watched Herb Sutter's talk "Leak-Freedom in C++", described in the article [1], and I can't help but notice that C++ community has a strong bias against garbage collection. ... And then he describes the very
15.
▲
by
ingenter
10y ago
Because there is always a way to extract the "protected" work. See: https://en.wikipedia.org/wiki/Analog_hole . If you're a photographer, I can always make a screenshot, or record the video from my HDMI&
16.
▲
by
ingenter
10y ago
The answer is that it's technologically impossible to prevent third parties from using your work if you publish it. DRM doesn't solve this problem, but claims to do so. As a result, genuine users suffer from DRM.
17.
▲
by
ingenter
10y ago
Did you think about manufacturing or designing your own ARM CPUs and releasing HDL for the CPU?
18.
▲
by
ingenter
10y ago
- It has happened, see the comment below (openresolve). - It doesn't solve the problem, unlike other existing solutions for encrypting DNS. - It adds unnecessarily high overhead.
19.
▲
by
ingenter
10y ago
There is a significant difference between self-driving cars in 1960, flying cars and self-driving cars today. Flying cars are doable, and there are several prototypes of a flying car. However, flying cars aren't safe and aren't co
20.
▲
by
ingenter
10y ago
I had a similar attempt. http://m1el.github.io/jsonht.htm
21.
▲
by
ingenter
10y ago
I'd like to add a few things: - 1 parsec ~~ 3.26 light years. - pixel coverage ~ angular resolution * distance. pixel coverage ~ 0.1 * AU / (distance / 3.26 light-years)
22.
▲
by
ingenter
10y ago
> If you're going to use magsails to slow it down, why not use a magsail to get it there? The trip is basically symmetrical. If you launch a strong magnet in interstellar space, it will slow down relatively to plasma by deflecting c
23.
▲
by
ingenter
10y ago
I'm running steam in a systemd container, the main issues were sound and notifications: I don't understand how pulseaudio works, so I had to give share some system directories with the guest system to get the sound working. Notifi
24.
▲
by
ingenter
10y ago
> There is theoretical pure black in any modern representation of color. If the term confuses you, you can replaces it with #000000. If the black vs red comparison still confuses you, you can replace it with #600000 vs #FF0000. You might
25.
▲
by
ingenter
10y ago
There is no pure black in the real world.
26.
▲
by
ingenter
10y ago
I believe you're mistaken. There is value in axioms and axiomatic proofs: two different people will most definitively have a different notion of "obvious", and even have a different understanding of a mathematical problem. So
27.
▲
by
ingenter
10y ago
Why isn't 2+2==4 obvious? http://us.metamath.org/mpegif/mmset.html#trivia
28.
▲
by
ingenter
10y ago
> "Only short programs have any hope of being correct" Right, but I would not minimize the number of bytes in a program, but rather the number of nodes in AST: http://www.paulgraham.com/arcchallenge.html Here
29.
▲
by
ingenter
10y ago
No need for ternaries! Array.from(Array(100).keys()).map(k => k + 1).map(i => [i,'Fizz','Buzz','FizzBuzz'][!(i%3)+2*!(i%5)])
30.
▲
by
ingenter
10y ago
This reminds me of my multiple attempts in writing a declarative scrapper framework. In the end, I've chosen to just write the code. What I see is a crappy ad-hoc scripting language. I feel bad saying so, but I can only view this proje
More ›