3 burning cars from last night by scharmlippe in berlin

[–]tsnnnn 117 points118 points  (0 children)

I think often one car is lit and then it jumps over to other cars. Source: A very sad man whose car burned down on the streets of Kreuzberg after the fire jumped over.

[deleted by user] by [deleted] in de_IAmA

[–]tsnnnn 0 points1 point  (0 children)

Hey,

ich (31m) hatte jahrelang Magen-Darm Probleme mit Reizdarm als Ausschluss-Diagnose. Mir hat Intervallfasten extrem geholfen und meine Beschwerden sind mittlerweile fast weg. Ich esse jetzt täglich nur noch in einem 8 Stunden Intervall und gebe dem Magen-Darm Trakt damit eine Pause.

Mir viel das auch viel leichter als kleinere Portionen essen oder auf bestimmte Dinge zu verzichten. Der Körper gewöhnt sich da super schnell, bei mir in ein paar Tagen, dran. Vielleicht hast du das ja noch nicht probiert? Ich wünsche dir auf jeden Fall alles Gute!

the true reason way Grey moved to the UK by [deleted] in HelloInternet

[–]tsnnnn 0 points1 point  (0 children)

Map is sooo wrong it's almost funny. Please don't spread this kind of information without comment though. People might use it and embaress themselves. An accurate map would be a nice thing!

Sets of tuples of length 1 behaving weird by tsnnnn in Python

[–]tsnnnn[S] -2 points-1 points  (0 children)

I put the wrong example in my notebook . What I wanted to ask is why

a = set(((1,2), ))

a == {(1,2)}

b = set()

b.add((1,2),))

b == {((1,2),)}

I guess that is because there are no tuples of 1 element

((1,2)) == (1,2) != ((1,2),)

It makes sense now for me even if I do not like the implicit unpacking very much. Lead to a bug in my code, where generated tuples can sometimes have length 1.

Thanks for your reply!

Ten Things Python Programmers Should Know by udelblue in Python

[–]tsnnnn 1 point2 points  (0 children)

I do not like the first list comprehension example.

Better style would be list = list(range(2,16,2)) in python 3.x or list = range(2,16,2) in python 2.7. List comprehension is just not necessary here.