Superconductivity. I did four PhD projects regarding superconductivity properties at nanoscale without really getting hold on the concept. For instance, how zero resistance is related to cooper pair tunnelling and BdG Hamiltonian. Only when I was forced to write introduction a month before my thesis submission I gave my best last try for the farewell and it clicked. Note the title of my thesis “Quantum effects of sup…
Would love to read that paper but search is not turning up any papers with that title for me. What's the exact cite?
Ask HN: Concepts that clicked only years after you first encountered them?
721–730 of 946 posts
Re: Ask HN: Concepts that clicked only years after you first encountered them?
#722One of the biggest realizations recently for me was realizing that a nearly all of software development is basically about turning a slow, manual process into a faster, automated process. Modern CI/CD stems from a bunch of shell commands that somebody wrote and manually executed to test an app and upload it to a server. Modern automated software testing stems from humans writing small test apps and running them to co…
Re: Ask HN: Concepts that clicked only years after you first encountered them?
#723Re: Ask HN: Concepts that clicked only years after you first encountered them?
#724Narcissism. My grandmother was a terrible narcissist. I loved her dearly and she had a lot of wonderful qualities, but The quality that stood out the most, sadly, was narcissism. My mother was also a narcissist to a somewhat lesser degree. It didn't occur to me that I too was a narcissist until I was about 35 years old. It took waking up in the corner of the living room in my friends one bedroom apartment Early one m…
I find it interesting when people come from a long family line of narcissists (not uncommon) that they often attribute it to a cycle of being raised by a narcissist making you into a narcissist. it seems more likely that there is a genetic/biological basis for this personality trait
Random theory: Children of narcissists like IT because it's a world that is very predictable with rational explanations.
Re: Ask HN: Concepts that clicked only years after you first encountered them?
#725It took me an embarrassing amount of time to fully grok what object oriented programming really means. It's one thing to have someone tell you what an object is, but it's another thing entirely to build a fully object oriented system. I remember what made it click: I was designing an animation system, which had a bunch of different interdependent moving parts. Once I started treating each part like an object and lett…
I've always found OO programming completely natural. n fact, it's the only kind of programming i've ever really done - create a structure with data members, and then create functions to work on that structure. you can (and should) do this in low-level languages such as C and assembler. Of course, if you want to go the whole polymorphic route, i'd suggest using something like c++, but the key ideas are really structur…
Re: Ask HN: Concepts that clicked only years after you first encountered them?
#726Narcissism. My grandmother was a terrible narcissist. I loved her dearly and she had a lot of wonderful qualities, but The quality that stood out the most, sadly, was narcissism. My mother was also a narcissist to a somewhat lesser degree. It didn't occur to me that I too was a narcissist until I was about 35 years old. It took waking up in the corner of the living room in my friends one bedroom apartment Early one m…
It's interesting to read that you slowly shift the narrative from accepting your faults to making excuses to blame externalities, like inherited narcissism and ADHD. Look the word up, it's essentially an umbrella term that pretty much describes anything that can be considered negative, almost to the point that it's meaningless, except as a convenient tool to antagonize people. Selfishness and self-admiration is spect…
Re: Ask HN: Concepts that clicked only years after you first encountered them?
#727What an algebra equation is. I could solve linear equations, quadratic equations, and systems of equations by adding/subtracting/multiplying/dividing both sides of the equation and by adding two equations together. But I didn't know why you were allowed to do any of those things, or what else might be allowed. Are you allowed to square both sides? Raise both sides to a power? It wasn't until maybe my third year of al…
Re: Ask HN: Concepts that clicked only years after you first encountered them?
#728Earlier quoted context omitted.
That reads like a very condescending and cynical response. People enjoy representation, imho, because it helps them see that they are not alone, that the deck isn’t stacked against them, and so on. It also helps in removing prejudice against certain groups of people.
>it helps them see that they are not alone // Do they have to consider separation of humans by characteristics to be important in order to get you that position where they feel alone with other humans? Bluntly, if a male says I can't be inspired by females isn't that because they're sexist? It seems extraordinarily damaging to society to say to people, as many seem to 'here are the people you're allowed to be inspire…
Not necessarily. It could be, but I wouldn't attribute it to malice as much as I'd attribute it to difficulty in relating to the person.
> Do they have to consider separation of humans by characteristics to be important in order to get you that position where they feel alone with other humans?
Your error in this is that you assume the behaviour is conscious and deliberate. Our brains do many calculations before we are even aware of them. I recommend Gladwell's book "Blink" on the topic [1].
Humans are by all means social beings, and we use heuristics and mental shortcuts to simplify our world, leading to fast and unconscious decisions often to our own detriment. We construct in and out groups before we are aware them, and said groups affect our decisions. This is why people growing in mixed communities are far less likely to be or exhibit racist behaviour.
I am expressing this only as a testament to our innate fallibility, this isn't targeted towards any specific group of people because there are all sorts of communities that are isolated and have very few interactions with others.
I experienced awe and inspiration when I realized that I was sitting at the same benches, and studying at the same place as Heisenberg when he came up with QM. But it was only when I stopped and thought about it, when I thought about the place I was sitting and the history behind it.
Sometimes all we have is superficial information, and our brains try to make the most of it. It's in our nature after all, we are all fallible humans, so why not help alleviate it and enable people to become their best selves?
[1] https://www.amazon.com/Blink-Power-Thinking-Without/dp/03160...
Re: Ask HN: Concepts that clicked only years after you first encountered them?
#729Earlier quoted context omitted.
It's a solid book. I was chugging through it a bit at a time, until I discovered Scott Wlaschin's Domain Driven Design Made Functional. I've dropped the Evans book (as it's mired in mid-00's Enterprise Java patterns) and am enjoying this one quite a bit more. Both books are great. Read whichever one aligns with your practice best. I recommend Wlaschin's book for anyone curious about FP, without hesitation. He's great…
Is Wlaschins still reasonable (readable?) if you're not an F# developer (yet?) - but are familiar with FP generally?
Re: Ask HN: Concepts that clicked only years after you first encountered them?
#730The power of an outline when writing. Over the past few years, I've been teaching myself how to write better. I'm not talking about elementary syntax or grammar. I'm not talking about writing the traditional, American English five paragraph essay. I'm talking about writing longer pieces of prose, articles or blog posts or short chapters with word counts ranging anywhere between 1500-3000 words. On this journey of imp…