Search

Ideas that are…

Search Ideas


197 ideas match your query.:

People on drugs violate the rights of others way more often.

#4059​·​Benjamin DaviesOP, 6 months ago​·​CriticismCriticized1

All drugs should be legal because people have a right to do what they want, as long as it isn’t violating the rights of others.

#4058​·​Benjamin DaviesOP, 6 months ago​·​Criticized1

This is not exactly true. The business still needs to produce something people want to buy, at a price they will accept. This is separate from competition.

Another way to say that is: all businesses are in competition with all others at the broadest level.

If you liked Snickers bars, but they suddenly 5x in price, it isn’t necessarily true that you will buy a different chocolate bar. You might go to the bakery instead, or use that money to put a little more fuel in your car.

#4008​·​Benjamin DaviesOP, 6 months ago​·​CriticismCriticized1

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

#3986​·​Benjamin Davies, 6 months ago​·​CriticismCriticized1Archived

Why haven't all atheists killed themselves?

#3985​·​Benjamin Davies, 6 months ago​·​CriticismCriticized1

Minor distractions, impulses, or shifts in attention repeatedly pull us away, forcing creativity to be spent again and again just to re-establish intentional direction.

How is using creativity to re-establish direction distinguished from self-coercing? I'm having trouble seeing the difference.

#3958​·​Benjamin Davies, 7 months ago​·​CriticismCriticized1
#3411​·​Benjamin DaviesOP, 8 months ago​·​CriticismCriticized1

This might be a difference in dialect. In New Zealand (and I assume other places, like maybe Australia, UK and Ireland) it is common to use ‘must not’ to mean:

a) ‘ Is forbidden to’ (the meaning you are familiar with),

or

b) ‘necessarily cannot’, usually in a deductive way.

Example sentence: “His shoes aren’t here. I guess he must not be home then.”

This sentence is much more natural to me than “His shoes aren’t here. I guess he cannot be home then.”

#3365​·​Benjamin Davies revised 8 months ago​·​Original #3348​·​CriticismCriticized1

This might be a difference in dialect. In New Zealand (and I assume other places, like maybe Australia, UK and Ireland) it is common to use ‘must not’ to mean:

a) ‘ Is forbidden to’ (the meaning you are familiar with),

and

b) ‘necessarily cannot’, often in a deductive way.

Example sentence: “His shoes aren’t here. I guess he must not be home then.”

This sentence is much more natural to me than “His shoes aren’t here. I guess he cannot be home then.”

#3363​·​Benjamin Davies revised 8 months ago​·​Original #3348​·​CriticismCriticized1

California might be the best place on the planet to live in, in terms of climate, but the downside is that you live in California 😂

#3352​·​Benjamin DaviesOP, 8 months ago​·​CriticismCriticized1

This might be a difference in dialect. I mean ‘mustn’t’ as in ‘must not’.

Example sentence: “His shoes aren’t here. I guess he must not be home then.” —> “I guess he mustn’t be home then.”

This sentence is much more natural than “His shoes aren’t here. I guess he cannot be home then.”

#3348​·​Benjamin Davies, 8 months ago​·​CriticismCriticized2

Maybe juries can be done away with. Not all levels of courts have juries, so they mustn’t be fundamental.

#3339​·​Benjamin Davies revised 8 months ago​·​Original #3338​·​Criticized1

Maybe juries can be done away with. Not all levels of courts have them, so they mustn’t be fundamental.

#3338​·​Benjamin Davies, 8 months ago​·​Criticized1

My charitable interpretation:

“Less and less possible” is a loose way of saying something like “more and more difficult to achieve”, or “occurs less and less often in the multiverse”.

#3289​·​Benjamin Davies revised 8 months ago​·​Original #3286​·​CriticismCriticized1

My charitable interpretation:

“Less and less possible” means something like “more and more difficult to achieve”, or “occurs less and less often in the multiverse”.

#3287​·​Benjamin Davies revised 8 months ago​·​Original #3286​·​CriticismCriticized1

My charitable interpretation:

“Less and less possible” means something like “more and more difficult to achieve”, or “a smaller and smaller occurrence in the multiverse”.

#3286​·​Benjamin Davies, 8 months ago​·​CriticismCriticized1

“([T]hey say)” presumably means he is paraphrasing people who get it wrong.

#3285​·​Benjamin Davies, 8 months ago​·​CriticismCriticized1

While a lot of what’s involved in understanding a language is inexplicit, it is not possible to come to understand a language without ever dealing with it explicitly.

This is what separates explanatory knowledge from other types of knowledge.

#3280​·​Benjamin Davies, 8 months ago​·​CriticismCriticized1

… any replicator’s primary ‘concern’ is how to spread through the population at the expense of its rivals.

Why “at the expense of its rivals”? Isn’t the concern to spread at all, regardless of the outcome of rivals?

#3279​·​Benjamin Davies, 8 months ago​·​CriticismCriticized2

… any replicator’s primary ‘concern’ is how to spread through the population at the expense of its rivals.

Why “through the population”? Doesn’t this presuppose a replicator needs to exist within a population to do what it does? The first replicator spread with no population to spread into.

#3278​·​Benjamin Davies, 8 months ago​·​CriticismCriticized3

I’ve asked Gemini to explain it:

1. Auto-Closure (Insertion State)

When the user inputs an opening delimiter, the system immediately injects the corresponding closing delimiter and places the caret (cursor) between them.

Input: (

Buffer State: (|)

Logic: insert(openingchar) + insert(closingchar) + move_caret(-1)

2. Type-Through (Escape State)

If the caret is positioned immediately before a closing delimiter that was autopaired, and the user types that specific closing delimiter, the system suppresses the character insertion and instead advances the caret.

Context: [text|]

Input: ]

Buffer State: [text]| (Not [text]])

Logic: if (nextchar == inputchar) { movecaret(+1); preventdefault(); }

3. Atomic Deletion (Regression State)

If the caret is between an empty pair of delimiters, a backspace event deletes both the opening and closing characters simultaneously, returning the buffer to the pre-insertion state.

Context: (|)

Input: Backspace

Buffer State: |

Logic: if (prevchar == open && nextchar == close) { delete_range(caret-1, caret+1); }

4. Selection Wrapping (Transformation State)

If a text range is selected (highlighted) and an opening delimiter is typed, the system wraps the selection rather than replacing it.

Context: |selected_text|

Input: [[

Buffer State: [[selected_text]]

Logic: surroundselection(inputpair)

5. Markdown-Specific Heuristics

Obsidian applies context-aware logic for Markdown syntax (e.g., * or _). It often checks word boundaries to determine if the user intends to bold/italicize or use a bullet point.

Context (Start of line): | + * + Space -> Bullet list (autopair disabled/consumed by formatting).

Context (Middle of line): word | + * -> word | (autopair enabled for italics).

#3271​·​Benjamin Davies, 8 months ago​·​CriticismCriticized1Archived

A place to live: Tunuyán or Tupungato districts, Mendoza, Argentina

#3257​·​Benjamin DaviesOP revised 8 months ago​·​Original #3244​·​Criticized4

Milei's administration has authorized semi-automatic rifles for civilians again (reversing a ban) and streamlined the "Legitimate User" (CLU) process.

#3250​·​Benjamin DaviesOP, 8 months ago​·​Criticized1

A place to live: Mendoza, Argentina

#3244​·​Benjamin DaviesOP, 8 months ago​·​Criticized5

While Nevada offers 0% State Income Tax, residents still pay Federal Income Tax. The United States enforces Citizenship-Based Taxation (CBT). You are subject to federal tax on worldwide income and invasive reporting (FATCA), regardless of residency.

#3227​·​Benjamin DaviesOP, 8 months ago​·​CriticismCriticized1