Post #394 written by Khodok in Blog Updates
Post is outdated
no, this post isn’t.. yet anyway
I added the ability to mark a post as outdated a long time ago, I actually don’t remember when.
Since the new design was made though, it wasn’t shown anywhere that a post was.
Since it’s one of the few things that are often shown properly to the reader in posts and stuff, I figured it wasn’t a bad idea to implement it from scratch, but this time do it well.
That’s it for non nerds
This is how it looks now
This is from the post “Design“
The nerdy part
For a few months now, I’ve been actually trying to make my code a bit better overall. It still sucks, even though I’m a certified computer scientist now.
So here is how I implemented the new outdated system:
Python | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
|
Python | |
---|---|
1 |
|
Python | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
|
Python | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
|