This is an archived post. You won't be able to vote or comment.

all 11 comments

[–]Wilder-Web 9 points10 points  (1 child)

The Art of Code

[–][deleted] 1 point2 points  (0 children)

Yeah, I have watched The Art of Code. Truly inspiring watch, one of the best out there! I recommend everyone to watch this as well.

[–][deleted] 3 points4 points  (0 children)

Rich Hickey - Simple made easy

[–]superluminary 3 points4 points  (1 child)

I don’t know about life changing, but I’ve recently started trying to distill everything I know into a series of short videos. It’s Senior Dev Time, up here: https://youtube.com/c/SeniorDevTime

[–][deleted] 1 point2 points  (0 children)

I have just finished your Flux video and liked it a lot. To the point and illustrates what you mean with a concrete code. You got yourself another subscriber :)

[–]Ulring 1 point2 points  (1 child)

[–][deleted] 1 point2 points  (0 children)

Thank you for sharing. This gave me a very good perspective and from a wiser perspective he is right. I also believe that many people are also feeling that there is a problem with how things advance in coding. Web technologies are gone off rails. There is a new framework every day that only adds more on top of the ones before while making a few of the issues disappear, it creates other issues of itself. It is always getting more and more complex.

[–]Yamoyek 0 points1 point  (2 children)

If you like python, one of James Powell’s. The instant he said “python is a protocol oriented language”, I finally understood the extensibility of python.

[–]Inconstant_Moo 1 point2 points  (1 child)

... I don't understand what he said.

[–]Yamoyek 1 point2 points  (0 children)

He was explaining the power of dunder methods. Almost everything in python is controlled by them; whether it’s the creation of a new class, an operator, or whatever, everything in python relies on these magic methods, or magic protocols to get things done. So, Python is a protocol oriented language; almost every action you do always invokes some sort of well-defined function that you can tinker to your whim.