decivex

joined 10 months ago
[–] decivex@yiffit.net 4 points 2 months ago

Make your own rules.

[–] decivex@yiffit.net 5 points 2 months ago* (last edited 2 months ago)
  1. list.append returns None so what you've actually got is a list comprehension that generates a list containing the value None 19 times. (using functions with side effects, such as list.append, in list comprehensions are generally bad style so you should avoid this)
  2. The list[...] syntax retrieves elements from the list, which is not what you're trying to do here. (and it is actually invalid syntax in this case)
  3. You should generally avoid calling lists list, because list is already a builtin.

If you want to append the numbers 1 to 19 to a list as you're trying to do you can call the list.extend function with the list comprehension [value for value in range(1, 20)] as the argument. (Although in this case you can also just use the range directly.) To do it without list comprehensions you can simply loop over the range and repeatedly call the append function.

[–] decivex@yiffit.net 7 points 2 months ago (4 children)

Thanks! I just won the game!

[–] decivex@yiffit.net 1 points 2 months ago

It's not a paper, it's a stream-of-consciousness style blog post.

[–] decivex@yiffit.net 2 points 2 months ago (2 children)

Pretty sure 5 is Artemis Fowl.

[–] decivex@yiffit.net 1 points 2 months ago* (last edited 2 months ago)

Yes, I simplified for the sake of brevity. But you're reading a lot into their comments that just isn't there. Yes they were running interference for a nazi (and not making a particularly compelling case) but there's nothing to indicate it was intentional. (It's not a strawman argument either btw, unless you're claiming they intentionally ignored the boogaloo reference rather than just not knowing about them.)

Edit: Also I don't think not making assumptions about someone's motivations is the same thing as 'putting faith' in them.

[–] decivex@yiffit.net 1 points 2 months ago (1 children)

No, but it is primarily a white supremacists movement and the '88' on the license plate kinda takes away all doubt.

[–] decivex@yiffit.net 1 points 2 months ago* (last edited 2 months ago) (2 children)

Moving the goalposts means changing the rules of a debate while having it. They said they'd agree with them being a Nazi if there was evidence beyond the number 88 being on the license plate, someone else pointed out what the "BOOG" meant, they accepted that the person who owns the car is a Nazi. No goalposts moved.

[–] decivex@yiffit.net 1 points 2 months ago (4 children)

That's... not what moving the goalposts means.

view more: ‹ prev next ›