Veritula – Meta

  Dennis Hackethal archived idea #1789 along with any revisions.
  Dennis Hackethal addressed criticism #2717.

Feature to collapse all criticized ideas of a discussion? Useful for todo lists.

#2717​·​Dennis HackethalOP revised 5 months ago

Archiving covers this.

  Dennis Hackethal archived idea #2669 along with any revisions.
  Dennis Hackethal revised idea #3062 and marked it as a criticism.

Could this feature be unified with #2811 somehow?

Could this feature be unified with #2811 somehow?

  Benjamin Davies posted criticism #3986.

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

  Dennis Hackethal revised criticism #3953. The revision addresses idea #3955.

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.

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.

  Dennis Hackethal addressed criticism #3953.

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

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

  Dennis Hackethal archived idea #3950 along with any revisions.
  Dennis Hackethal addressed criticism #3953.

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

Fixed as of a44c6c0.

  Dennis Hackethal addressed criticism #3951.

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

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.

  Dennis Hackethal commented on criticism #3950.

Code blocks need syntax highlighting.

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

#3950​·​Dennis HackethalOP, 2 months ago

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));
  Dennis Hackethal addressed criticism #3950.

Code blocks need syntax highlighting.

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

#3950​·​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);
}
  Dennis Hackethal posted criticism #3950.

Code blocks need syntax highlighting.

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

  Dennis Hackethal addressed criticism #3481.

Feature idea: pay people to criticize your idea.

You start a ‘criticism bounty’ of ten bucks, say, per pending criticism received by some deadline.

The amount should be arbitrarily customizable (while covering transaction costs). The user also indicates a ceiling for the maximum amount they are willing to spend.

There could then be a page for bounties at /bounties. And a page listing a user’s bounties at /:username/bounties.

When starting a bounty, the user indicates terms such as what kinds of criticism they want. This way, they avoid having to pay people pointing out typos, say.

Anyone can start a bounty on any idea. There can only be one bounty per idea at a time.

To ensure a criticism is worthy of the bounty, the initiator gets a grace period of 24 hours at the end to review pending criticisms. They may even award a bounty to problematic criticisms, at their discretion. Inaction automatically awards the bounty to all pending criticisms at the end of the grace period. If doing so would exceed the ceiling, more recent criticisms do not get the bounty.

#3481​·​Dennis HackethalOP revised 3 months ago

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.

  Dennis Hackethal addressed criticism #3906.

How would you preview text in nodes?

#3906​·​Dennis HackethalOP, 2 months ago

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).

  Dennis Hackethal addressed criticism #3904.

@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

How would you preview text in nodes?

  Dennis Hackethal posted criticism #3905.

@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.

  Dennis Hackethal posted criticism #3904.

@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).

  Dennis Hackethal restored idea #1865 from the archive, along with any revisions.
  Dennis Hackethal restored idea #2653 from the archive, along with any revisions.
  Dennis Hackethal restored idea #2624 from the archive, along with any revisions.
  Dennis Hackethal archived idea #2529 along with any revisions.
  Dennis Hackethal restored idea #2529 from the archive, along with any revisions.
  Dennis Hackethal restored idea #2429 from the archive, along with any revisions.
  Dennis Hackethal restored idea #2162 from the archive, along with any revisions.