Search

Ideas that are…

Search Ideas


780 ideas match your query.:

When I revise a criticism, I can’t see what it criticises. The edit screen should show the parent idea, similar to when I write a new criticism.

#3997​·​Dennis HackethalOP revised about 2 months ago​·​Original #2429​·​CriticismCriticized1Archived

Archiving covers this.

#3996​·​Dennis HackethalOP, about 2 months ago​·​CriticismArchived

Could this feature be unified with #2811 somehow?

#3994​·​Dennis HackethalOP revised about 2 months ago​·​Original #3062​·​CriticismArchived

Bounties should be clear about what currency they are being paid out in.

#3986​·​Benjamin Davies, about 2 months ago​·​CriticismCriticized1Archived

When an idea has nothing but a code block, there’s too much of a margin at the bottom, between the block and the border of the highlight.

#3956​·​Dennis HackethalOP revised 2 months ago​·​Original #3953​·​CriticismCriticized1

This issue didn’t only occur on ideas#show.

#3955​·​Dennis HackethalOP, 2 months ago​·​Criticism

Fixed as of a44c6c0.

#3954​·​Dennis HackethalOP, 2 months ago​·​Criticism

There’s still an issue on ideas#show. When an idea has nothing but a code block, there’s too much of a margin at the bottom, between the block and the border of the highlight.

#3953​·​Dennis HackethalOP, 2 months ago​·​CriticismCriticized3

When the code overflows horizontally, a subtle inset shadow on the side shows that you can scroll:

javascript
const posts = [
{id: 1, title: "Understanding JavaScript Closures in Depth", url: "https://example.com/articles/javascript-closures-deep-dive"},
{id: 2, title: "A Complete Guide to Modern Web Development Practices", url: "https://example.com/articles/modern-web-dev-guide"},
{id: 3, title: "Exploring the Node.js Event Loop and Async Patterns", url: "https://example.com/articles/nodejs-event-loop"}
];
function formatPost(post) {
return `${post.id}: ${post.title} -> ${post.url}`;
}
function prettyPrint(posts) {
return posts.map(formatPost).join(" | ");
}
console.log(prettyPrint(posts));
#3952​·​Dennis HackethalOP, 2 months ago

Done as of cc1ab95.

Ruby example:

ruby
def criticized? idea
pending_criticisms(idea).any?
end
def pending_criticisms idea
criticisms(idea).filter { |c| pending_criticisms(c).none? }
end
def criticisms idea
children(idea).filter(&:criticism?)
end

JS example (h/t ChatGPT):

javascript
function criticized(idea) {
return pendingCriticisms(idea).length > 0;
}
function pendingCriticisms(idea) {
return criticisms(idea).filter(c => pendingCriticisms(c).length === 0);
}
function criticisms(idea) {
return children(idea).filter(c => c.isCriticism);
}
#3951​·​Dennis HackethalOP, 2 months ago​·​CriticismCriticized3

Code blocks need syntax highlighting.

Veritula used to have this feature but I removed it when diffing changed.

#3950​·​Dennis HackethalOP, 2 months ago​·​Criticism

Been trying a slight modification of bounties in prod for a couple of weeks or so. Working well so far.

@dirk-meulenbelt recently offered to chip in for a bounty I want to run. That got me thinking: multiple people should be able to fund bounties.

#3912​·​Dennis HackethalOP, 2 months ago​·​CriticismCriticized1Archived

Tyler says:

No preview necessarily, or the first sentence upon mouse-over could work. I’m imagining a structural view independent of the main view. (Though still suggest looking at columns for each idea in the main view).

#3907​·​Dennis HackethalOP, 2 months ago​·​Criticism

How would you preview text in nodes?

#3906​·​Dennis HackethalOP, 2 months ago​·​CriticismCriticized1

@tyler-mills says:

… I’m finding the threads a bit cumbersome to keep track of. Would love an option to have each top level idea in a column, and horizontal scrolling would be fine with me if there are many of them.

#3905​·​Dennis HackethalOP, 2 months ago​·​CriticismCriticized2

@tyler-mills says:

I keep coming back to a graph-based presentation. Every comment a node, edges red if ending in criticisms. I crave a way to see structurally how many red criticism threads and grey comment threads are stemming from a given idea. The red ones could be bold and bright if they lead to an uncriticized idea, else dim and thin. Then we can see at a glance which ideas are sources of more criticisms, and/or hold greater opportunities for further criticism — can see which ideas are “deeper” niches, one might say (..!). Have greater evolvability…

Basically not doable for the user with the current bubble+hashtag method. But again it could just be an optional view. I think I mentioned I find that Kialo does a cool job with their sun dial diagrams (which are optional).

#3904​·​Dennis HackethalOP, 2 months ago​·​Criticism

In a future iteration, the user could additionally set a per-criticism ceiling. Which the site would recommend setting when using permissive terms.

This way, the user could set a total budget of $200, say, while capping each criticism at $30, for example. The first 6 eligible criticisms would each get $30, and the next one would get $20. The remaining criticisms would get nothing.

This approach effectively merges #3474 and #3472, giving users maximum flexibility to choose the best outcome depending on what kinds of criticism they anticipate getting based on their terms.

#3505​·​Dennis HackethalOP, 3 months ago​·​CriticismArchived

Let’s say somebody starts a bounty with permissive terms, asking for virtually any kind of criticism. They set a high ceiling, hoping for many submissions. $200, say.

If they only end up getting one or two small criticisms, for typos, say, they won’t like having to pay 100 bucks a pop.

In other words, the few criticisms you end up getting may not be worth the ceiling.

#3504​·​Dennis HackethalOP, 3 months ago​·​CriticismCriticized1Archived

This approach is more complex for the bounty initiator than just indicating a total amount they are willing to spend (#3474). It’s best not to require users to do math.

#3501​·​Dennis HackethalOP, 3 months ago​·​CriticismArchived

Given the need for a deadline, all critics get paid at the same time anyway.

#3500​·​Dennis HackethalOP, 3 months ago​·​CriticismArchived

There could be a UI component showing estimated payout based on current number of criticisms, with a warning that actual payout could be less.

#3499​·​Dennis HackethalOP, 3 months ago​·​CriticismArchived

Then it’s less clear to contributors how much money they can expect.

#3498​·​Dennis HackethalOP, 3 months ago​·​CriticismCriticized1Archived

Could pay out to only first x criticisms, where x is small enough the payout for each criticism is high enough to cover transaction costs (and then some).

#3497​·​Dennis HackethalOP, 3 months ago​·​CriticismArchived

I can roll out the feature to a few trusted users. Then I can reevaluate later with more experience to judge actual risks rather than speculate ahead of time.

#3496​·​Dennis HackethalOP, 3 months ago​·​CriticismArchived

Need to address the risk of people submitting arbitrary counter-criticisms just before the deadline to exclude competing criticisms from the bounty.

The grace period for the initiator unfortunately does not address this risk since he may decide not to review problematic criticisms.

#3494​·​Dennis HackethalOP revised 3 months ago​·​Original #3485​·​CriticismCriticized1Archived