The format of DEV's first official podcast, DevDiscuss, begins with an interview and ends with commentary from the community.
With the season two ...
For further actions, you may consider blocking this person and/or reporting abuse
Some time ago someone explain concurrency using a cooking analogy. Instead of repeating what I was told, I'm going to leave this wonderful article right here.
Illustrated JS: JavaScript asynchronous behaviour
Marina Costa ・ Aug 6 ・ 3 min read
Yes, great pick!
Seeing Regular Expressions drawn into their finite state machine graphs (just circles with arrows between them).
That it's just moving from one state to another based on matching a character. And all regex could boil down to a language of four things:
c
match any literal character (likec
)|
or operation (match this or that)*
loop()
groupThe rest of it mostly being helpful sugar.
Do you have link of that?
Here's a graph generator; if you want to visualize what I'm talking about: regexper.com/#a(b%7Cc)*d
The explanation of the concepts came from a university course though... maybe I should do an article about this so I can link it as an explanation of what I'm talking about...
Was learning C recently, and confused about the concept of pointers and what their point (forgive the pun) even was. Someone described it as giving someone a copy of your house instead of giving them just your address. Really helped.
Hey @kewbish ! This is awesome! Would you be interested in sending us a voice recording of this so we can feature you on the related episode of DevDiscuss coming up soon?
Ah, definitely. I'll go try to figure out Google Voice now 🤔
Yay! Thank you so much. DM me if you need any assistance!
One analogy that applies in more than one ways - Plumbing
I think we can go on and on.
We are just plumbers, the fluid is json.
Hi @mhshankar84 ! Any chance you might want to submit a voice recording of this analogy so we can feature your voice on the DevDiscuss podcast soon?
Hi Gracie, sorry, just now saw your reply.
Do you still have time for the podcast?
I saw this tweet recently and thought it was a good clear visual explanations of JavaScript array methods
I shared this one awhile ago on a different post because it helped me when I was learning how to use map, reduce and filter.
First things first, Julia Evans is IMO great at this. jvns.ca is her website. She writes "zines" with illustrated technical concepts, and they're great.
Anyway, the most helpful analogy I encountered as I was learning was to think of an interface like a light switch.
lightswitch.turn_on()
Credit: I first came across this description in Data Structures and Algorithms in Python by Goodrich, Tamassia, and Goldwasser
The Fiscer-Yates shuffle explained beautifully by none other than the creator of D3, Mike Bostock. It's an old article but I still remember the first time reading this and my jaw dropped; simple but effective!
More general, in my first degree program (SysAdmin focused, not dev), from the worst professor I've ever had except this one thing:
"This stuff is going to come at you and not make sense, you're not going to understand how it fits, and then one day it's going to dawn on you and all come together. It will be a gradual process, but the 'aha!' moment won't feel like it."
IT-wise, that was crap, because the program was a cakewalk (I just got the degree to prove that I knew what I already knew - I was valedictorian, and my cords are more meaningful to me tying up my GF with them than any sense of accomplishment I felt wearing them on the walk up to accept my degree from a school president I didn't respect), and I was basically giving up on an IT career and moving laterally into dev (formally, I'd already freelanced for years) by the time I graduated...
But I was ramping up my backend development at the time, and things did finally click for me: Frontend and Linux SysAdmin I already knew (not taught at school), backend, database, what there was of DevOps at the time, all of it suddenly began to make sense in the macro and micro.
The box model is an awesome analogy, a long time ago when i was learning css, thinking in a div (and other elements) like a box really helped me : )
A really great analogy i use to differentiate between when and when not to use parallelStreams in Java.
For example if i am searching for my car keys in a room full of 100 people and i know for sure that my car key is under one of the chairs , and 100 people are sitting in the room(1 person/chair):
Lets assume for each person to look under their table it needs 1 second.And suppose i find my key in the 10th chair.
So i have two options:
1) i tell each person one by one to look under the table.
So it will take 10 seconds and 10 people to find my key
Thus time=10seconds
Resources used-10 men
2)i tell all of them to simultaneously look for the car key
so it will take 1 second to search the key
but 100 men
Thus, time=1second
Resource-100 men
Thus this is the very same case with streams vs parallelStreams.
We should always remember that parallelStreams may give better results but also comsumes huge resources.
Hope this analogy will help others!
I found the restaurant analogy for MVC frameworks very helpful!
Welcome to the MVC Restaurant
Yechiel Kalmenson ・ Jun 8 '17 ・ 5 min read
Awesome!
One thing that really helped me understand optional unwrapping in iOS was the box analogy, particularly by using Schrödinger's cat. At runtime, you don't know what value an optional property will hold, whether it's nil or contains a value, until you actually call it. And you can either do it safely, by nil-checking it first, or implicitly unwrapping it and hoping it doesn't blow up in your face.
I remember coming across a tool like this grid.layoutit.com/ for CSS Grid.
I understood the grid a little before it, now a little more ;)
...my university professor, about recursion: "you don't have to think about it too much, if it feels it's going to work, it probably will" :)
The visualizations from RxMarbles are always helpful to checkout new operators.