Johnny Ray Austin
@recursivefunk
(Classical)
^https?\:\/\/.{1,}\/recursivefunk$
Class A
Class B (is an A)
Class C (is a B and an A)
Class D (is a C and a B and an A)
You want a banana from 'C' so you create 'D' to keep your code DRY. But you end up with a gorilla holding the banana in the middle of the jungle
The possibilities are (practically) endless
Software engineers utilizing abstract discrete constructs to model what feels like a continuous (as far as perceptions are concerned) reality.
When does a person cease to be themselves?
var num int = "1"
class Thing {
constructor(spec) {
this.foo = spec.foo;
}
getFoo() {
return this.foo;
}
}
class_but_not_really_class_see_js_devs_like_class_syntax_but_despite_not_actually_having_traditional_complimentary_features_the_powers_that_be_decided_that_it_was_ok_to_introduce_this_construct_to_appease_people_who_just_wanted_it_again_not_actually_creating_a_class_here Thing {
constructor(spec) {
this.foo = spec.foo;
}
getFoo() {
return this.foo;
}
}
- Douglas Crockford
No Jungles. No Gorillas
Component 1
has
banana
Component 2
has
orange
Component 3
has
banana
orange
Component 4
has
orange
strawberry
kiwi
banana
https://github.com/recursivefunk/nodedc-2016-05-19
Questions