Hmm, I didn’t think that out. Still better than hair though
- 0 Posts
- 5 Comments
Joined 2 years ago
Cake day: June 14th, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
Medusa. She makes me rock hard. Also, no hair in the shower drain is a nice bonus.
Curse your sudden but inevitable betrayal!
QT1@feddit.deto Apple@lemmy.world•Moved from Pixel 5 to iPhone 15 Pro - my reasons/experiences…1·2 years agoI miss Öffi.
I have never used Öffi myself (always had an iPhone), but have you tried ÖPNV Navigator? It seems to provide similar functionality.
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.