Search Ideas
2721 ideas match your query.:
Give this another shot. Should be fixed as of 6c7e74b.
For very deeply nested discussions, you may still need to scroll sideways to see some ideas. But you should now be able to zoom out far enough to always fit any idea into the viewport.
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’.
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.
Valid. As of 7af3c7b, the site uses ‘USD’ throughout.
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.
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.
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.
This is now a feature, see the ‘Funding’ section of a bounty.
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.
Could this feature be unified with #2811 somehow?
Then I suggest revising #3968 so that it still captures the sentiment without containing factual falsehoods.
Should not autopair behind a word character.
Steps to reproduce:
- Type 'foo'.
- With the cursor behind the second 'o', hit single quote:
'. - The text now reads
foo''but should only readfoo'.
After a non-word character (eg linebreak, period, colon, semicolon etc) though, it should still autopair.
Undo/redo stack should preserve cursor position.
Steps to reproduce:
- Start with empty textarea.
- Type '('.
- Cursor is now inside '(|)'.
- Hit undo.
- Hit redo.
- Cursor is now behind '()|' but should be inside like in step 3.
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
- https://en.wikipedia.org/wiki/Computable_function#Uncomputable_functions_and_unsolvable_problems
- https://www.reddit.com/r/compsci/comments/2s2wgy/what_is_an_uncomputable_function/.
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.
…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?
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.
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 the code overflows horizontally, a subtle inset shadow on the side shows that you can scroll:
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));
Done as of cc1ab95.
Ruby example:
def criticized? ideapending_criticisms(idea).any?enddef pending_criticisms ideacriticisms(idea).filter { |c| pending_criticisms(c).none? }enddef criticisms ideachildren(idea).filter(&:criticism?)end
JS example (h/t ChatGPT):
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);}
Code blocks need syntax highlighting.
Veritula used to have this feature but I removed it when diffing changed.