Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
chncdcksn
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
15 ms
·
1.
▲
by
chncdcksn
8y ago
Purchased one about a year ago. Screen, sound card, and keyboard needed to be replaced on arrival. Replaced the screen and sound card under warranty and sold it disclosing that the keyboard’s spacebar sometimes inserted two spaces on one pr
2.
▲
by
chncdcksn
9y ago
(To preface, I use React/Redux in all of my web applications. I think Redux is great for managing state.) One thing I’ve never quite understood about Redux is why we are dispatching pure data instead of a function of state. This would
3.
▲
by
chncdcksn
10y ago
Doesn't seem to be working for me in Chrome on Android. I submit the form, the page goes blank, and nothing else happens. Also, a suggestion, the fields rendering in a random order will be very confusing to someone if they are going to
4.
▲
by
chncdcksn
10y ago
May be off topic, but did Apple remove their restriction on using a VM in an app put on the App Store? Or was that restriction only for JITs and not interpreters?
5.
▲
by
chncdcksn
10y ago
TIL. Thanks!
6.
▲
by
chncdcksn
10y ago
I may be wrong, but I don't think JavaScripts from a CDN can access the same localStorage as some JavaScript from another origin. (Source: "Cross-origin data storage access" https://developer.mozilla.org/en-US
7.
▲
by
chncdcksn
10y ago
The big issue using localStorage for authentication token storage is that values are accessible by any JS from the same origin as the JS that sets the value. Example: I bundle my JS and it's dependencies into a single file (bundle.js)
8.
▲
by
chncdcksn
10y ago
That's really strange; I received an email today, with the previous emails being on the 8th and on Nov. 22. What is the contents of the emails, and what address are they from? Are they duplicate emails? Sounds like someone impersonatin
9.
▲
by
chncdcksn
10y ago
I'm curious, what was the trick question given to you by Microsoft Boulder?
10.
▲
by
chncdcksn
10y ago
You may be interested in Opa ( http://opalang.org ). I'm unsure how well it abstracts away client/server detection, but from what I understand about it, you have one codebase for both your client and server. I've ne
11.
▲
by
chncdcksn
11y ago
Does Rust fit into those specifications? I understand library support is probably not quite there yet, but I was under the impression it could fill the role of C/C++.
12.
▲
by
chncdcksn
11y ago
As a student interested in language design and VM programming, this is wonderful. Clean, easy to read code, as well as what seems to be a really well-thought out language. Thanks for this!
13.
▲
by
chncdcksn
11y ago
Switch to the master branch. :) it confused me too.
14.
▲
by
chncdcksn
11y ago
GitHub is having release download issues, possibly due to this. https://status.github.com/
15.
▲
by
chncdcksn
11y ago
A problem I see with this is recognition. A QR code can be printed onto a piece of paper with no further information attached, and even some less-techy people will know what to do with it, because it's clearly a QR code. These drawings
16.
▲
by
chncdcksn
11y ago
.then() does create a new promise. Return Promise.reject() in the fulfillment function to reject the new promise. somethingThatReturnsPromiseWithoutError() .then((res) => { return Promise.reject("some error");
17.
▲
by
chncdcksn
11y ago
I'm having the same issue actually. Firefox 37 on Windows 8.1.