Live data from Hacker News

Viewing profile — WillowAndrew

WillowAndrew

HN member
Joined
Thu, Jun 18, 2020, 7:27 PM UTC
HN karma
4
Public activity
3 items

About WillowAndrew

No profile information was provided.

Recent public activity

  1. comment
    Comment #46319844

    If you want things to stay as they are, just pin your versions.

  2. story
  3. story
    Is it a bad practice to write (hopefully) unreachable code?

    Let's say you want to union two intervals. The code could look like this: ``` def union(self, other): # Capture special cases if self.is_empty(): return other elif other.is_empty()…