Explore >> Select a destination


You are here

gist.github.com
| | mathspp.com
6.8 parsecs away

Travel
| | Pydon'ts are Python tips that help you write better code.
| | madebyme.today
12.3 parsecs away

Travel
| | Some time ago, during a code review, I had a discussion with a colleague of mine about preferring dict() over {} in new Python code. They argued that dict() is more readable - and expresses intent more clearly - therefore should be preferred. I wasn't convinced by that, but at that time I didn't have any counterarguments, so I passed. Yet that made me wonder: what's the difference between the dict type and {} literal expression?
| | mostlynerdless.de
22.0 parsecs away

Travel
| | Another blog post in which I use sys.settrace. This time to solve a real problem. When working with new modules, it is sometimes beneficial to get a glimpse of which entities of a module are actually used. I wrote something ... Continue reading ?
| | cupofjava.de
57.5 parsecs away

Travel
| Did you ever use Maven in one of your projects? First you probably were amazed by the way you can declare dependencies and use all the nice plugins. ...