Search

Ideas that are…

Search Ideas


2045 ideas match your query.:

There’s a small issue related to previewing changes in code blocks: even when there are no changes yet, if the code overflows horizontally, the scroll shadow is shown through DOM manipulation, which in turn triggers the diffing library into thinking the user made a change.

So then the same code block is shown without any changes, under the ‘Changes’ tab, which is confusing. It should still just say ‘No changes’.

#4013·Dennis HackethalOP, 4 days ago·Criticism

The diff view can’t handle the removal/replacement of entire code blocks yet. The removed block looks broken, the new block doesn’t show at all.

#4012·Dennis HackethalOP, 4 days ago·CriticismCriticized1

Valid. As of 7af3c7b, the site uses ‘USD’ throughout.

#4011·Dennis HackethalOP, 4 days ago·Criticism

I implemented this a while back.

X caches link previews, so old previews remain the same. But new previews feature the discussion title, see eg https://www.opengraph.xyz/url/https%3A%2F%2Fveritula.com%2Fdiscussions%2Fcriticisms-of-zcash.

#4005·Dennis HackethalOP, 4 days ago·Criticism

Feature idea: pay people to criticize an idea.

You start a ‘criticism bounty’ of 100 bucks, say, which is prorated among eligible critics after some deadline.

The amount should be arbitrarily customizable (while covering transaction costs). Minimum of $5.

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. Inaction automatically awards the bounty to all pending criticisms at the end of the grace period.

#4003·Dennis HackethalOP revised 4 days ago·Original #2442·CriticismCriticized1

Feature idea: pay people to criticize your idea.

You start a ‘criticism bounty’ of 100 bucks, say, which is prorated among eligible critics after some deadline.

The amount should be arbitrarily customizable (while covering transaction costs). Minimum of $5.

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. Inaction automatically awards the bounty to all pending criticisms at the end of the grace period.

#4001·Dennis HackethalOP revised 4 days ago·Original #2442·CriticismCriticized1

No need, see #3420.

#4000·Dennis HackethalOP, 4 days ago·Criticism

This is now a feature, see the ‘Funding’ section of a bounty.

#3999·Dennis HackethalOP, 4 days ago·Criticism

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 4 days ago·Original #2429·CriticismCriticized1Archived

Archiving covers this.

#3996·Dennis HackethalOP, 4 days ago·Criticism

Could this feature be unified with #2811 somehow?

#3994·Dennis HackethalOP revised 4 days ago·Original #3062·Criticism

Then I suggest revising #3968 so that it still captures the sentiment without containing factual falsehoods.

#3989·Dennis Hackethal, 4 days ago·Criticism

Fixed as of bbcefa8.

#3976·Dennis HackethalOP, 5 days ago·Criticism

Should not autopair behind a word character.

Steps to reproduce:

  1. Type 'foo'.
  2. With the cursor behind the second 'o', hit single quote: '.
  3. The text now reads foo'' but should only read foo'.

After a non-word character (eg linebreak, period, colon, semicolon etc) though, it should still autopair.

#3975·Dennis HackethalOP, 5 days ago·CriticismCriticized1Archived

Undo/redo stack should preserve cursor position.

Steps to reproduce:

  1. Start with empty textarea.
  2. Type '('.
  3. Cursor is now inside '(|)'.
  4. Hit undo.
  5. Hit redo.
  6. Cursor is now behind '()|' but should be inside like in step 3.
#3974·Dennis HackethalOP, 5 days ago·Criticism

By definition, there is nothing in the unknowable, since it can't be known.

This isn’t true. There are unknowable things. Look up uncomputable functions, see eg

So there are things that computers like our brains can never access – there are fundamental, natural limitations.

In this context, I think of mysticism as restricting criticism and preventing error correction, ie creating a man-made barrier for reason. That’s different.

#3973·Dennis Hackethal, 5 days ago·Criticism

…often they are dealing with larger sums of money, which can make it harder to make higher returns…

Why is it harder to make higher returns for larger sums?

#3972·Dennis Hackethal, 5 days ago·CriticismCriticized2

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 8 days ago·Original #3953·CriticismCriticized1

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

#3955·Dennis HackethalOP, 8 days ago·Criticism

Fixed as of a44c6c0.

#3954·Dennis HackethalOP, 8 days 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, 9 days 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, 9 days 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, 9 days ago·CriticismCriticized3

Code blocks need syntax highlighting.

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

#3950·Dennis HackethalOP, 9 days ago·Criticism

Rand writes (p. 161):

The rational (the good) has nothing to gain from the irrational (the evil), except a share of its failures and crimes; the irrational has everything to gain from the rational: a share of its achievements and values. An industrialist does not need the help of a burglar in order to succeed; a burglar needs the industrialist’s achievement in order to exist at all. What collaboration is possible between them and to what end?

Consider the case of a business partnership: if one partner is honest and the other is a swindler, the latter contributes nothing to the success of the business; but the reputation of the former disarms the victims and provides the swindler with a wide-scale opportunity which he could not have obtained on his own.

I agree with her message that good shouldn’t collaborate with evil, but I don’t think this example works well. The reason somebody might go into business with a swindler is that they are tempted because the swindler does have something to offer them.

Maybe the swindler has a lot of money and offers to invest. The honest man might be too tempted to pass that up.

I do think the honest man should look for money elsewhere. But in such a case, it’s not true that he had “nothing” to gain from this partnership. It might be more accurate to say that there’s a net loss, or that overall the partnership is not worth it.

As I recall from some of the characters in Atlas Shrugged, Rand knew all this – it might just be a matter of wording things more clearly.

#3949·Dennis HackethalOP, 9 days ago·Criticism