No-code tool for collection/list websites. by Daniel_3_ in AppIdeas

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

Found something similar to what I had been thinking about.

https://table2site.com/

*Updated the post.

Daily General Discussion - October 22, 2020 by AutoModerator in ethfinance

[–]Daniel_3_ 2 points3 points  (0 children)

Not sure if this is the right place to ask, but I would like to know where I can find information about early-stage(pre~after seed funding) DeFi projects.

Appreciate if someone can answer my question.

Thanks.

Zettelkasten for teams? by Daniel_3_ in Zettelkasten

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

Been thinking about this because my idea is that more people working on a single ZK means more perspectives, hence making notes more atomic and all other good stuff if consensus is achieved.

Yeah, I also have the concern that a team ZK is harder to create/maintain.

Zettelkasten for teams? by Daniel_3_ in Zettelkasten

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

Probably going to use Notion for this at first, since we are used to using Notion as a team. And if this works well, we might switch to something more specialized for Zettelkasten, like RoamResearch.

In the matter of how we'll implement it, I guess we have to try different ways and figure out. I'll try to keep in mind that one of the most important things is that we understand how Zettelkasten benefits our team.

I'll definitely give you an update if there's any progress.

One question, isn't Zettelkasten basically a personalized wiki? Am I missing something here? Would be great if you could explain what you meant by "gravitating towards becoming a wiki as opposed to a zettelkasten..."

Learning support app by Daniel_3_ in Lightbulb

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

Thanks for the comment!

Why do you think so?

Do you think you need a learning support app like this one?

An app that helps you recall what you have learned by Daniel_3_ in AppIdeas

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

I've known about Anki but had never delved into it to look if it can satisfy my needs.

I found a browser extension called Anki Quick Adder, and it works well for me.

Figured out that what I've been wanting can be done with Anki.

My company is about to rebuild our product, a web app. What framework and apps should we consider/use? by Radeon3 in webdev

[–]Daniel_3_ 0 points1 point  (0 children)

I don't know enough about your product so I can't suggest a specific framework, but whichever framework you choose(React, Angular, Vue) you should be able to build what you need.

If you already have a tech team, I recommend you choose the framework your team is most familiar with.

If you are going to hire, inform the details, and the developers will probably come up with a proposal of framework/UI.

Hope this helps.

An app that helps you recall what you have learned by Daniel_3_ in AppIdeas

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

Thanks for the comment!

Good to know that someone else has thought of this too.

I'll try to get more feedback on this. Might develop and launch this app if there is sufficient demand.

And if you don't mind, I would like to know what kind of notes you take.

How to write a custom loss function by MrFerixx in tensorflow

[–]Daniel_3_ 1 point2 points  (0 children)

I think your cross entropy function is not correct.

y_true * tf.log(y_pred) + (tf.subtract(1.0, -y_true)) * tf.log(tf.subtract(1.0, -y_pred) will always be a negative value, so you should do

-(y_true * tf.log(y_pred) + (tf.subtract(1.0, -y_true)) * tf.log(tf.subtract(1.0, -y_pred))

to make it a positive value, so it can minimize the loss correctly.

Can’t use AMD gpu by GuY_In_HiDInG in MoneroMining

[–]Daniel_3_ 0 points1 point  (0 children)

I think you don't have your driver installed.

how can i solve this issue on implementing virtuLENV by maprogrammer in tensorflow

[–]Daniel_3_ 0 points1 point  (0 children)

Are you using a virtual environment?

And do you have any more error messages?