Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
aaronm67
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
aaronm67
4y ago
You're comparing only the densest places (i.e. expensive places with mostly apartments) to only the least dense places, giant houses on big lots. Look at a pre-1950s / railroad neighborhood of basically any smaller/older city
2.
▲
by
aaronm67
6y ago
Where are you? In NYC and SF, you'd never fill your contract if you were trying to pay < 150.
3.
▲
by
aaronm67
6y ago
> And really those issues should be solved at the browser level not the OS level level that affects every single application that runs on it. They aren't -- this is exploitable in the browser if not patched at the OS level. > For
4.
▲
by
aaronm67
7y ago
Every license has different goals - that's the whole point of having different licenses. The goal of this license is to encourage more companies to contribute to open source, not to encourage usage.
5.
▲
by
aaronm67
7y ago
> It is not a requirement for AMP. CDNs now let you roll your own domains on the AMP standard All these certificates do is make it so Google's browser (and only Google's browser) will mask the fact you're on Google's
6.
▲
by
aaronm67
7y ago
Passwords are a terrible form of authentication anyway -- if it's something that actually matters, use some form of 2-factor auth. Requiring a long password on a site where the impact of a breach is minimal is not a good policy, you&#x
7.
▲
by
aaronm67
7y ago
https://nypost.com/2018/08/25/why-nyc-is-priciest-city-in-th... Construction in NYC is far more expensive than anywhere else in the world, largely because of union contracts.
8.
▲
by
aaronm67
11y ago
And every time a developer sees that, they're going to google "bar javascript" "single bar javascript" "bitwise or javascript" "bitwise or javascript effect" until they figure out WTF is going on
9.
▲
by
aaronm67
12y ago
I prefer using IDEs to navigate larger projects, and you get better code completion (I use Visual Studio for C and PHPStorm for PHP). I just have a hotkey to open up Vim at the current line/file, - I prefer Vim for heavy text editing a
10.
▲
by
aaronm67
12y ago
Very rarely being every single release? You should not be using a changing library in any production code, you're just asking for problems. If all you're using jQuery for is a document.querySelectorAll polyfill + the most primitiv
11.
▲
by
aaronm67
12y ago
There was a pretty interesting talk about using differences in style render time to get history. https://www.youtube.com/watch?v=KcOQfYlyIqw It's pretty interesting, and can be done in a way that doesn't require a
12.
▲
by
aaronm67
13y ago
I'm not sure if we can private message on here, but if you would email me at aaronm67@gmail.com, or contact us on the github project, I can let you know our progress and where we got caught up.
13.
▲
by
aaronm67
13y ago
We did get libav working, but it was much less stable than FFmpeg, and we couldn't get swscaler working (which meant a lot of videos would not work)
14.
▲
by
aaronm67
13y ago
In our testing, in the latest version of Chrome, there is about a 75-80% performance hit. So a 6-hour native encoding would take a little over a day to compile (we're working on getting more accurate benchmarks) You're right, you&
15.
▲
by
aaronm67
13y ago
I don't actually think file size to download is much of an issue - the current build is a little over 6mb gzipped, which isn't much bigger than most Youtube videos. For building a "stripped down" version, there is a conf
16.
▲
by
aaronm67
13y ago
In Underscore, you can do something like: _([ ... ]).map( ... ).filter( ... ).value() It's not exactly extending the native array...but there are far fewer side effects to doing it this way.
17.
▲
by
aaronm67
13y ago
I've been an Opera user for a long time, mostly because opening new tabs always felt very fast, much faster than Chrome or Firefox, and because keyboard/mouse shortcuts were so configurable. They've made tabs slower to open a
18.
▲
by
aaronm67
13y ago
Yep, you're correct http://jsbin.com/odupog/1/edit Either way, should alleviate some of the privacy concerns, as you can only get ClipboardData from elements where "paste" has a visible effect.
19.
▲
by
aaronm67
13y ago
In Firefox, it seems like you can only catch Clipboarddata on input boxes still document.body.addEventListener("paste", function(e){ console.log("paste event fired") }) In Chrome, this will fire whe