Build products that save the minimum possible amount of data. Treat data as radioactive ☢️

There is a fine line between analytics and surveillance!

Reply to this note

Please Login to reply.

Discussion

"Treat data as radioactive ☢️"

Indeed, Sir. Indeed.

nostr:note1qaxshqf4kv03t79gmdclnzgkyt458s3f5k2jg3h4mast4er3fvnq9p2t7k

wabi sabi

I will save this as a reminder ☢️

Just stumbled on this while cruising around GitHub

https://cleaninsights.org/

Words you want to hear developers say:

nostr:note1qaxshqf4kv03t79gmdclnzgkyt458s3f5k2jg3h4mast4er3fvnq9p2t7k

Im doing some python tutorials rn and I notice that they show breaking functions into several lines of code, requiring variables that are stored, stuff like

x = int(input('password'))

Y=hash(x)

Print(y)

Rather than print(hash(int(input('password')))), which stores no variables, I think I prefer it that way.

One is a lot more readable and maintainable and likely doesn't give you any performance benefits

Good point 🤙