coinspin's comments

coinspin | 4 years ago | on: The tech interview prep industry

6 years at 600k is a stretch. 400k is very doable though. I think you're looking at closer to 10+ years to hit the higher end of 600k (at big tech)

coinspin | 4 years ago | on: Ask HN: Where to start with getting back into front end?

Things have started stabilizing. React is a clear winner in the framework wars (but there are some promising new upstarts). I'd build a small app in React and go from there. Next.js is extremely easy to get started with out of the box.

Webpack is still a nightmare but things like snowpack et al try to remove some of that complexity.

coinspin | 4 years ago | on: API For Trading (historical stock and options data)

It's unclear where the original data source is. It was my understanding that (clean) data was very pricey and hard to come by. Is this changing? Following the links, all I could find was references to Rapid API and not the source

coinspin | 4 years ago | on: Show HN: Coin Spin – Randomly guessing BTC addresses

I wondered this too. I'm sure you could narrow the universe to some degree. Most wallets use the BIP 39 word list as a seed to derive the private key. So 12 words (in order) out of 2048 possible words is probably less than the total number of possible bitcoin addresses. This is just one example.

coinspin | 4 years ago | on: Show HN: Coin Spin – Randomly guessing BTC addresses

OP here. I made this mostly out of fun/curiosity. The premise of cryptocurrencies is that it's practically impossible to guess the private key for a given address. This just keeps guessing on the off chance that you hit a 1 in a 1461501637330902918203684832716283019655932542976 chance.

People are naturally bad at large numbers (myself included).

coinspin | 4 years ago | on: Ask HN: At this point, are PUT and PATCH helpful?

If you're building a REST API you might as well follow the semantics of GET/PUT/POST/PATCH/DELETE. Overloading post requests may seem convenient and tidy but there is a spec for a reason.

If you prefer more of a one query or request to rule them all then GraphQL may align better to your preferences.

page 1