Search

Ideas that are…

Search Ideas


809 ideas match your query.:

Now that there are user profiles (#408), each profile can have a tab for unproblematic ideas. Among all the ideas a user has submitted, those are the ones he can rationally hold. And another tab for problematic ideas, ie ideas he cannot rationally hold.

#419​·​Dennis HackethalOP, almost 2 years ago​·​CriticismCriticized1Archived

There’s a bug where hovering over a link in the markdown preview removes the form and all typed text. Hovering over a link should have no effect on the form.

#417​·​Dennis HackethalOP, almost 2 years ago​·​CriticismCriticized1Archived

Since the diff processes the text as a single line, the hunk header is always going to say either @@ -0,0 +1 @@ (for the first version) or @@ -1 +1 @@ (for every subsequent version). Meaning the header provides no real information. So I might as well remove it.

#414​·​Dennis HackethalOP revised almost 2 years ago​·​Original #413​·​CriticismCriticized1Archived

Since the diff processes the text as a single line, the diff information is always going to say either @@ -0,0 +1 @@ (for the first version) or @@ -1 +1 @@ (for every subsequent version). Meaning it provides no real information. So I might as well remove that part.

#413​·​Dennis HackethalOP, almost 2 years ago​·​CriticismCriticized1Archived

There should be user profiles.

#408​·​Dennis HackethalOP, almost 2 years ago​·​CriticismCriticized1Archived

I also don't mind the bulk criticism.

Even if the person submitting a post doesn’t mind bulk criticism, others still have a harder time discerning which ideas in the post are true/salvageable and which should be discarded. Meaning error correction is harder.

It helps when critics quote which part they’re criticizing, like I’m doing above, but the responsibility still lies with the original poster.

#406​·​Dennis Hackethal revised almost 2 years ago​·​Original #405​·​CriticismCriticized1

I also don't mind the bulk criticism.

Even if the person submitting an idea doesn’t mind bulk criticism, others still have a harder time discerning which parts of the idea are true/salvageable and which should be discarded. Meaning error correction is harder.

It helps when critics quote which part they’re criticizing, like I’m doing above, but the responsibility still lies with the original poster.

#405​·​Dennis Hackethal, almost 2 years ago​·​CriticismCriticized1

Thanks for your contribution, Dirk.

Your post contains several ideas. In the future, you would benefit from submitting them separately so they have to be criticized separately. As it stands, a single criticism of your post will mark all of the ideas contained therein as problematic. I call this a ‘bulk criticism’, see #362.

To protect against bulk criticism, try to submit one idea per post.

Would you like to break your post up into several ideas before I offer criticism? They can still reference each other the same way I do above with idea #362 – if you type # followed by a number, it will turn into a link to the corresponding idea, much like GitHub does with issues.

#366​·​Dennis Hackethal, almost 2 years ago​·​Criticized1

In activity feed, behind timestamp (‘… hours ago’), link to corresponding discussion.

#355​·​Dennis HackethalOP, about 2 years ago​·​CriticismCriticized1Archived

When a comment is a criticism on another criticism, the activity should say ‘So and so addressed criticism #…’

#351​·​Dennis HackethalOP, about 2 years ago​·​CriticismCriticized1Archived

The activity feed just shows top-level criticisms as regular ideas. They should be shown as criticisms just like when they are child ideas.

#349​·​Dennis HackethalOP revised about 2 years ago​·​Original #340​·​CriticismCriticized1Archived

Should probably show the explanation in a revision, when given. In the activity feed, that is.

#344​·​Dennis HackethalOP revised about 2 years ago​·​Original #338​·​CriticismCriticized1Archived

Highlight current nav item.

#342​·​Dennis HackethalOP, about 2 years ago​·​CriticismCriticized1Archived

The activity feed just shows top-level criticisms as regular ideas. They should be shown as criticisms such like when they are child ideas.

#340​·​Dennis HackethalOP, about 2 years ago​·​CriticismCriticized2Archived

Should I give the icons in the activity feed colors?

#339​·​Dennis HackethalOP, about 2 years ago​·​CriticismCriticized1Archived

Should probably show the explanation in a revision, when given.

#338​·​Dennis HackethalOP, about 2 years ago​·​CriticismCriticized1Archived

When all I change during a revision is the criticism flag, the activity log just says ‘no changes’.

#337​·​Dennis HackethalOP, about 2 years ago​·​CriticismCriticized1Archived

I think the thing I’m really fighting here is Rails being object-oriented. Which I can’t do anything about.

Not sure the Rails team realizes how much OOP reduces the extensibility of Rails.

#334​·​Dennis HackethalOP, about 2 years ago​·​CriticismCriticized1Archived

Not as of #330, they couldn’t.

#331​·​Dennis HackethalOP, about 2 years ago​·​CriticismCriticized1Archived

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

ruby
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:

ruby
display = @display_module.new
view_context.instance_variables.each do |iv|
display.instance_variable_set(
iv,
view_context.instance_variable_get(iv)
)
end

Then:

ruby
class ProductsDisplay
def index vc, # …
vc.some_helper_method(@products)
end
end
#330​·​Dennis HackethalOP revised about 2 years ago​·​Original #313​·​Criticized2Archived

They are: vc.instance_variable_get(:@foo)

#328​·​Dennis HackethalOP, about 2 years ago​·​CriticismCriticized1Archived

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

ruby
module ProductsDisplay
def self.index vc, # …
vc.some_helper_method
end
end

A benefit of this approach is that, when people start a new Rails app, they may end up putting whatever they’d otherwise put in a helper in a display, since displays have the benefit of having unambiguously resolvable method names.

#325​·​Dennis HackethalOP revised about 2 years ago​·​Original #313​·​Criticized2Archived

Tested, it works.

#322​·​Dennis HackethalOP, about 2 years ago​·​CriticismCriticized1Archived

Test this!

#321​·​Dennis HackethalOP, about 2 years ago​·​CriticismCriticized1Archived

Then how would you call index from a helper method?

#317​·​Dennis HackethalOP revised about 2 years ago​·​Original #314​·​CriticismCriticized1Archived