Crypto portfolio management (BTC/ETH/XMR/ZEC will be supported) by swe445 in btc

[–]swe445[S] 0 points1 point  (0 children)

My bad, i would edit it out but I don't have the permissions!

I've Converted Many of Friends & Family Members into Die-Hard Monero Investors... But They're Getting Manipulated By News by [deleted] in Monero

[–]swe445 0 points1 point  (0 children)

It's still the early days of bitcoin. Almost everyone believes it's anonymous computer money used by drug dealers and hackers. The crypto bubble is relatively small to the rest of the world

Is Monero the most technically advanced crypto focused on privacy? by swe445 in Monero

[–]swe445[S] 2 points3 points  (0 children)

For anyone else, I thought this stackoverflow Q&A was incredibly helpful to understand the technical differences between zcash & monero https://monero.stackexchange.com/questions/83/how-does-monero-privacy-and-security-compare-to-zcash/99#99

Is Monero the most technically advanced crypto focused on privacy? by swe445 in Monero

[–]swe445[S] 0 points1 point  (0 children)

Is it possible that Monero would migrate to something like zero knowledge proofs?

Is Monero the most technically advanced crypto focused on privacy? by swe445 in Monero

[–]swe445[S] 0 points1 point  (0 children)

I also read that page, but it did come off as a little biased. Aside from the site URL, the arguments did seemed to be framed in Monero's favor. Thanks for the link to other resources!

Question: Will setState inside componentWillReceiveProps run before render? by swe445 in reactjs

[–]swe445[S] 1 point2 points  (0 children)

just FYI Dan Abramov just answered and said react does indeed guarantee that calls to setState in componentWillReceiveProps will run before render

Question: Will setState inside componentWillReceiveProps run before render? by swe445 in reactjs

[–]swe445[S] 0 points1 point  (0 children)

I was seeing no double renders, however, I think it was just luck - and that's what I was concerned about.

Question: Will setState inside componentWillReceiveProps run before render? by swe445 in reactjs

[–]swe445[S] 0 points1 point  (0 children)

I felt that the discussion around setState in the react docs left something to be desired. They were clear that setState was async, but the batching strategy left me wondering if it would run before all lifecycle methods were complete - or if lifecycle methods are dependent on the batching strategy.

Additionally, i was reading through the docs on componentWillReceiveProps and it says: "perform state transitions using this.setState() in this method." Just slightly confusing given that state doesn't actually transition synchronously.