- sketch (für so ziemlich alles)
- framer (fürs prototypen)
- marvel (fürs prototypen ohne code)
- quickcast (für die videos)
- keynote (für die präsentationen)
- macdown (für die doku)
- dropbox (für die zusammenarbeit und hosting der videos und so)
- imgur (für das hosten der bilder in der doku)
- google docs (für die erstellung der graphen aus projekt 2)
- lightroom 5, vsco film 06, und canon 600d (für die richtig hippen perspective shots)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| from cactus.template_tags import register | |
| # Easy including of CSS inside HTML (faster for smaller sites). | |
| # Usage: {% print_file "path/to/stylesheet.css" %} | |
| @register.simple_tag | |
| def print_file(path): | |
| try: | |
| file = open(path).read().decode() |
NewerOlder