Hmm, I didn’t think that out. Still better than hair though
QT1
Medusa. She makes me rock hard. Also, no hair in the shower drain is a nice bonus.
Curse your sudden but inevitable betrayal!
bezeichnete die Einigung als inakzeptabel
Der Herr Felßner ist eindeutig nicht dialogbereit. Er findet es daher also völlig in Ordnung, wenn es vor seiner Haustür zu „unschönen Szenen“ kommt.
Dachte erst das ist ein AfD Post, bis ich das CDU Logo gesehen habe. Und was soll das mit „Nach den Ärger“? Sind die dumm oder ist das einfach an die Zielgruppe angepasst?
I miss Öffi.
I have never used Öffi myself (always had an iPhone), but have you tried ÖPNV Navigator? It seems to provide similar functionality.
Seems like this idea… backfired
Ja, ich finde auch, dass Falschparken deutlich härtere Konsequenzen haben sollte.
Bei mir im Wohngebiet hat letztens jemand am Abholtag genau vor dem Glascontainer geparkt. Die Müllabfuhr hat dann nach der Leerung den Container statt auf den Müllplatz kurzerhand auf die Straße gestellt, und zwar in 10 cm Abstand zu dem parkenden Auto. Fand ich ne nette Aktion.
It seems like the settings for the dark and light theme are the wrong way around. For me, if iOS is set to light mode, then Memmy uses the dark theme, and vice versa.
I‘d say it depends on your motivation and your reasons for learning another language. Do you want to build something in particular? In that case, pick the right tool for the job, as the others have suggested. However, if you want to broaden your horizon, I would suggest to try a language based on another paradigm, e.g. a functional language such as Haskell, ML, or OCaml. Want to see some „pure“ object-oriented language? Then maybe have a look at Smalltalk. The languages I have listed may not be the most widely used in practice, but in my experience, knowing several different programming paradigms makes you a better developer overall.
You could store the matches in a
HashMap
as well, using someMatchId
type as the key, i.e.,HashMap<MatchId, Match>
. Then you can use that as the reference inplayers: HashMap<String, MatchID>
. Only downside is that you have to generate uniqueMatchId
s, e.g., by using some counter.