Earlier quoted context omitted.
I think we'd probably better off with the previous idea: just work for them for a period.
I'm speaking from the perspective of company A, who needs a feature added to company B's product. They could send their engineers to work for company B, sure, but those engineers' time is still costing money. And those engineers are completely unfamiliar with B's codebase, so they won't work as efficiently. Might as well just pay company B directly for the feature work.
I couldn't submit a PR, so I got hired and fixed it myself
91–100 of 218 posts
Re: I couldn't submit a PR, so I got hired and fixed it myself
#92Re: I couldn't submit a PR, so I got hired and fixed it myself
#93Earlier quoted context omitted.
Clicking through the links in his article, I came across a guy who apparently did the same thing at Apple - he introduced the "auto remove" feature for expired passes added to your wallet, then promptly quit. I had no idea that's how that feature came about, but now I'm going to send a little mental thank you to him every time I get off a plane. That shit was FRUSTRATING.
Oh wow. Guess I need to get a job at Apple just to add a `Mark all as read` button to voicemails.
Re: I couldn't submit a PR, so I got hired and fixed it myself
#94> I added an AbortController to the debounced search function, so that it aborts any previous queries when a new one is made. This means that the search results are always relevant to what the user is currently typing. To me one of the most annoying things an application can do is go off and do something before I'm done telling it what to do. Filters that apply themselves without an explicit indication that I'm done…
When I implemented search-as-you-type on my blog, I decided to wait for the current search suggestion request to complete before doing a new one. Seemed like a reasonable balance between responsiveness and not overloading the server.
Re: I couldn't submit a PR, so I got hired and fixed it myself
#95If Google Maps would like to hire me so the km/miles switch can remember I only ever want to see distances in km, my contact details are in my HN profile. I must have changed that back from miles once a fortnight since Google Maps launched 20 years ago. That's 500 times. Totally ridiculous for a company who core goal is profiling their users...
While you’re there can you add a ‘how much I value my time’ input field for tolls? Google suggests I spend $20 through 3 tolls to save a single minute. Constantly. Edit: and while you’re there, move the ‘speed camera ahead, is it still there?’ Dialog. IT COVERS THE DAMN SPEED LIMIT ICON.
Re: I couldn't submit a PR, so I got hired and fixed it myself
#96Re: I couldn't submit a PR, so I got hired and fixed it myself
#97But sometimes explaining the exact inputs and the line number where you know the problem is can grease the wheels enough that you can convince someone else to write the fix for you. I didn't technically give you any code. But I did give you free QA.
Re: I couldn't submit a PR, so I got hired and fixed it myself
#98Good PR, but AbortController doesn't really help with stopping the server from processing the request. I have seen so much of this type of search that just continues processing in the backend even if the client has long gone caring.
This seems like a problem Sorhus should have a library for, but he does not.
I've had the conversation too many times in the last couple months about how setTimeout() does absolutely nothing to fix this problem in NodeJS. Even Java had trouble with this and tried to delete the API that seemed like it should support this problem, due to undefined behavior.
Re: I couldn't submit a PR, so I got hired and fixed it myself
#99Good PR, but AbortController doesn't really help with stopping the server from processing the request. I have seen so much of this type of search that just continues processing in the backend even if the client has long gone caring.
Re: I couldn't submit a PR, so I got hired and fixed it myself
#100If Google Maps would like to hire me so the km/miles switch can remember I only ever want to see distances in km, my contact details are in my HN profile. I must have changed that back from miles once a fortnight since Google Maps launched 20 years ago. That's 500 times. Totally ridiculous for a company who core goal is profiling their users...
Also it is really, really hard to search for "Nearby" places. Have to do it through "Directions". Really bad UX.