From e835634d7d91dfec66410342f262752050ed7093 Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Wed, 8 Jan 2020 14:48:07 -0600 Subject: [PATCH] Add the astronomer's method It's all about randomness --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 6610bd6..e70648d 100644 --- a/README.md +++ b/README.md @@ -378,3 +378,21 @@ Credit: @axelf4 ```vim :echom test_null_list() ``` + +## The astronomer's way +Credit: @idisposable + +```python +from secrets import randbits + +def heat_death(): + return False + +def increase_entropy(): + return randbits(64) + +while heat_death()==False: + increase_entropy(); + +print('The universe is dead, VIM no longer exists'); +```