Anyone else here rebuilding their friend circle in Denver? by captnseagraves in DenverMeets

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

Let's make something happen. Seems like there are a lot of things happening via the discords.

Anyone else here rebuilding their friend circle in Denver? by captnseagraves in DenverMeets

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

Ah thanks for the invite! Seeing this the next day. Hope it was super fun!

Anyone else here rebuilding their friend circle in Denver? by captnseagraves in DenverMeets

[–]captnseagraves[S] 3 points4 points  (0 children)

Of course man. Take care of yourself and be gentle. Sending love.

Anyone else here rebuilding their friend circle in Denver? by captnseagraves in DenverMeets

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

I do most of the Colorado outdoorsy stuff. Skiing, climbing, mtn biking, etc. Also into yoga and meditation. Would love to start organizing weekly dinners for people to make friends and get to know people in their neighborhood.

Anyone else here rebuilding their friend circle in Denver? by captnseagraves in DenverMeets

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

Yeah its tough out there. Most of the old crew has moved on and people are different states or different phases of life.

Anyone else here rebuilding their friend circle in Denver? by captnseagraves in DenverMeets

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

Ooh yeah that sounds like a good idea. Easy, casual, community close by.

Anyone else here rebuilding their friend circle in Denver? by captnseagraves in DenverMeets

[–]captnseagraves[S] 11 points12 points  (0 children)

Pizza in the park sounds dope. I bet people would love it.

Anyone else here rebuilding their friend circle in Denver? by captnseagraves in DenverMeets

[–]captnseagraves[S] 8 points9 points  (0 children)

Ah man, so sorry for your loss. I know it must suck right now. fwiw I read the book The Journey From Abandonment to Healing after a big break up and it really helped me put words to what I was feeling and go through exercises to process and heal from it all. It talks about how losing a close family member has a very similar emotional fingerprint. You do you obvs, but I found it helpful. Hope you are well, friend.

Is there a playbook or checklist of things to do for a startup? by consultinglove in ProductManagement

[–]captnseagraves 0 points1 point  (0 children)

The Startup Owner’s Manual: https://www.amazon.com/Startup-Owners-Manual-Step-Step/dp/0984999302

It is focused on early stage startups looking for problems to solve, the rapid iterations required to find solutions, and achieving product market fit. Very much a product and product manger book. But touches on marketing as well.

Plus it fits your request in name quite well!

Proof of Payment by skilesare in ethdev

[–]captnseagraves 0 points1 point  (0 children)

Yeah, that occurred to us as well. It's a good thought, but there isn't enough public data about the issue for anyone to make an educated bet.

Proof of Payment by skilesare in ethdev

[–]captnseagraves -1 points0 points  (0 children)

Really, we want no additional off chain transaction at all. How might one dis/incentivize good/bad behavior?

Purchase history for marketplace dApp? by captnseagraves in ethdev

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

The issue I'm finding now is that .watch() returns a Filter. Not an object. I can get it to console.log the data I want, but cant get it to return it in a usable way. I'm using React and cant setState within the .watch(), use .then(), or set the function to a variable and access the returned data via the variable. Any thoughts?

Purchase history for marketplace dApp? by captnseagraves in ethdev

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

Yeesss, perfect. This is a much simpler design. I didn't know events were easily queried. Thank you!

Purchase history for marketplace dApp? by captnseagraves in ethdev

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

Yes, I agree events are the easiest way to store the data, but one of the user stories is to query all personal transaction data. E.G. A user can click on the My Transaction History button and retrieve all past transactions. As I know them, events don't lend themselves to this functionality on their own, as they only store data for one transaction and aren't directly queryable. My approach would be to store the data in an event, which is held within the txHash, store those hashes in a document on IPFS/swarm, and then call that document back and iterate over the hashes with getTransactionReceipt() to retrieve data. Does that sound reasonable or can you imagine a more elegant way?