Skip to content

Instantly share code, notes, and snippets.

@kasteph
kasteph / athens.md
Last active August 12, 2020 09:30
Guide to Athens

Athens

You can pay by card everywhere and WiFi is also available almost everywhere (a luxury for Berlin residents). I recommend staying at Glyfada, which is a district outside of Athens. It has a lot of nice restaurants around and a beach.

Food & Coffee

  • Yi - My personal favorite restaurant in Athens. Great atmosphere and good prices considering the quality you get. We had a fig with cashew cheese appetizer (6 pieces for one order which I thought was enough for 2 very hungry people). Definitely try the Portobello Mushroom Medallions -- the best portobello mushrooms I've had in my life! They also have amazing teas. We had the Ginger Turmeric and Medicinal Tea while there.
  • Veganaki - Amazing veganized Greek food. I recommend their Greek, Dakos, and Gourmet salads. Their moussaka is also a must-try. And you must have the Kormos dessert while here!
  • [Lime Bistro](https://g.page/li
@kasteph
kasteph / workshop.md
Last active February 11, 2021 16:52
PyCon Berlin 2019: Poetry Workshop

Package and Dependency Management with Poetry

The Poetry repository can be found here and the website here.

For documentation on the pyproject.toml file specific to Poetry, go here.

The goal of this workshop is to have a pyproject.toml that poetry can use to build your package to a distribution and then publish it to a private repository.

@mixin icon($name, $code)
.icon-#{$name}:before
content: "#{$code}"
// Usage:
+icon(heart, \e600)
// Compiles to:
.icon-heart:before {
content: "\e600";