Search

Ideas that are…

Search Ideas


1967 ideas match your query.:

The important thing is to be able to make predictions about images on the astronomers’ photographic plates, frequencies of spectral lines, and so on, and it simply doesn’t matter whether we ascribe these predictions to the physical effects of gravitational fields on the motion of planets and photons [as in pre-Einsteinian physics] or to a curvature of space and time.

Steven Weinbert Graviation and Cosmology (p. 147), John Wiley, 1972. As quoted in chapter 1.

I’m getting conflicting results online for this quote. Some sources that quote the same passage say singular ‘effect’, others use the plural like Deutsch does.

I don’t have access to the original text, so I can’t say for sure if this is possibly a slight misquote or if different people are just quoting different editions.

#2011·Dennis Hackethal, about 1 month ago·CriticismCriticized1oustanding criticismArchived

Do explanations have to be expressible?

#2010·Dirk Meulenbelt, about 1 month ago

Any filtered idea should always display only the count of shown criticisms.

#2008·Dennis HackethalOP revised about 1 month ago·Original #1988·Criticized1oustanding criticism

Any filtered ideas should show a criticism label displaying n / m for the count, where n is the number of rendered criticisms and m is the number of total criticisms.

An explanation could accompany the n / m display, like a title on hover.

That way, there should never be any confusion as to a mismatch between the total vs rendered number of pending criticisms.

#2006·Dennis HackethalOP revised about 1 month ago·Original #1998·Criticized1oustanding criticism

How will people know what n / m means?

#2005·Dennis HackethalOP, about 1 month ago·Criticism

Any filtered ideas should show a criticism label displaying n / m for the count, where n is the number of rendered criticisms and m is the number of total criticisms.

That way, there should never be any confusion as to a mismatch between the total vs rendered number of pending criticisms.

#2003·Dennis HackethalOP revised about 1 month ago·Original #1998·Criticized2oustanding criticisms

That could mislead people into thinking a revision has no pending criticisms, which would be bad for error correction.

#2001·Dennis HackethalOP revised about 1 month ago·Original #1989·Criticism

See #1999: “People could easily miss or forget that.”

#2000·Dennis HackethalOP, about 1 month ago·Criticism

People could easily miss or forget that.

#1999·Dennis HackethalOP, about 1 month ago·Criticism

Any filtered ideas should show a criticism label displaying n / m for the count, where n is the number of rendered criticisms and m is the number of total criticisms.

That way, there’s never any confusion as to 1) whether a filtered idea has any pending criticisms, 2) a filtered idea having more criticisms than are being rendered.

#1998·Dennis HackethalOP, about 1 month ago·Criticized1oustanding criticism

See #1992: “The instructions at the top of the page are clear that not all ideas are being rendered.”

#1997·Dennis HackethalOP, about 1 month ago·CriticismCriticized1oustanding criticism

If no criticisms are being displayed, yet the label says an idea has n pending criticisms, that might confuse people. More generally, any mismatch between rendered vs counted criticisms could confuse people.

#1995·Dennis HackethalOP revised about 1 month ago·Original #1994·Criticism

If no criticisms are being displayed, yet the label says an idea has n pending criticisms, that might confuse people.

#1994·Dennis HackethalOP, about 1 month ago·CriticismCriticized1oustanding criticism

For all ideas, the total number of pending criticisms (if any) should always be shown, even if they are not all being rendered.

#1993·Dennis HackethalOP, about 1 month ago·Criticized1oustanding criticism

The instructions at the top of the page are clear that not all ideas are being rendered.

#1992·Dennis HackethalOP, about 1 month ago·CriticismCriticized1oustanding criticism

When cycling back to the revision, it should continue to display only the count of the shown criticisms.

#1990·Dennis HackethalOP revised about 1 month ago·Original #1988·Criticized2oustanding criticisms

That could mislead people into thinking a revision has no pending criticisms.

#1989·Dennis HackethalOP, about 1 month ago·CriticismCriticized1oustanding criticism

When cycling back to the revision, it should continue to display only the count of the shown criticisms.

#1988·Dennis HackethalOP, about 1 month ago·CriticismCriticized2oustanding criticisms

Bug: when cycling through ‘filtered’ revisions (meaning there are more revisions that don’t lead to the highlighted idea), the criticism badge can change count for the same revision.

#1986·Dennis HackethalOP revised about 1 month ago·Original #1985·CriticismCriticized2oustanding criticisms

Bug: when cycling through ‘filtered’ revisions (meaning there are more revisions that don’t lead to the highlighted idea), the criticism badge can change count for the same idea.

#1985·Dennis HackethalOP, about 1 month ago·CriticismCriticized1oustanding criticism

Hiccdown should have support for ids and class names in the tag symbol. Like Hiccup.

[:'div#my-id.my-class.another-class']
# => <div id="my-id" class="my-class another-class"></div>

It should also allow mixing:

[:'div#my-id.my-class.another-class', {id: 'override', class: 'additive'}]
# => <div id="override" class="my-class another-class additive"></div>

In other words, the id from the hash would override the id from the symbol, and the class from the hash would be added to the classes from the symbol.

#1984·Dennis HackethalOP, about 1 month ago·Criticism

Hiccdown methods should live in their own, separate classes. How about they are called ‘displays’?

class ProductsDisplay
  def index vc, # …
    vc.some_helper_method
  end
end

Behind the scenes, the Hiccdown gem would need to make the instance variables available to the display class:

display = @display_module.new

view_context.instance_variables.each do |iv|
  display.instance_variable_set(
    iv,
    view_context.instance_variable_get(iv)
  )
end

Then:

class ProductsDisplay
  def index vc, # …
    vc.some_helper_method(@products)
  end
end
#1982·Dennis HackethalOP revised about 1 month ago·Original #313·CriticismCriticized1oustanding criticism

Hiccdown methods should live in Rails helpers as class methods. That way, the problem described in #302 is solved – methods can be referenced unambiguously:

ProductsHelper.index
StoresHelper.index
#1980·Dennis HackethalOP revised about 1 month ago·Original #303·CriticismCriticized2oustanding criticismsArchived

Hiccdown methods should live in Rails helpers as instance methods.

#1978·Dennis HackethalOP revised about 1 month ago·Original #300·CriticismCriticized1oustanding criticismArchived

Thanks!

#1977·Dennis HackethalOP, about 1 month ago