Instinct

26 posts

Instinct

Instinct

@uInstinctdev

JS Developer NodeJS Developer Django Developer

Inscrit le Mart 2020
11 Abonnements4 Abonnés
Instinct
Instinct@uInstinctdev·
Hey, @semanticui I searched a lot but still could not find this. How can I center items inside a ui container?
English
1
0
0
0
Instinct
Instinct@uInstinctdev·
@oSocode @JolanHuyvaert There were so many applications this year and a very few selected. It is not nice of @oSocode to select those who have already participated. 😪
English
1
0
0
0
Instinct
Instinct@uInstinctdev·
@rowdymehul Well done! Can you tell which course you went for and also how I can get this certificate?
English
1
0
1
0
Instinct
Instinct@uInstinctdev·
@rdegges Can you tell me how can I use 'client-sessions' in a cross-origin manner? I mean how can I set sessions on a static webpage (where user logs in) through API (which logs in the user). I am using node+express and 'client-sessions'.
English
0
0
0
0
Instinct
Instinct@uInstinctdev·
@rdegges Your videos on authentication are super cool.
English
1
0
0
0
Instinct
Instinct@uInstinctdev·
@jthegedus I guess you have disabled the 'receive messages' option.
Instinct tweet media
English
2
0
0
0
Instinct
Instinct@uInstinctdev·
@jthegedus Do you use any messenger app? Like Instagram, Facebook, Telegram
English
1
0
0
0
Instinct
Instinct@uInstinctdev·
Just like this: function foo (x) { x.push(4); console.log(x); x.length=0; x.push(4,5,6,7); console.log(x); } var a = [1,2,3]; foo(a); console.log(a) //OUTPUT VM102:3 (4) [1, 2, 3, 4] VM102:7 (4) [4, 5, 6, 7] VM102:12 (4) [4, 5, 6, 7] undefined @getify
English
1
0
0
0
Instinct
Instinct@uInstinctdev·
a and x both should update. right? function foo (x) { x.push(4); console.log(x); x=[4,5,6]; x.push(7); console.log(x); } var a = [1,2,3]; foo(a); console.log(a) //THIS IS THE OUTPUT VM23:3 (4) [1, 2, 3, 4] VM23:7 (4) [4, 5, 6, 7] VM23:12 (4) [1, 2, 3, 4] undefined @getify
English
2
0
1
0
Instinct
Instinct@uInstinctdev·
@getify What happens if we do this (see "marked")? if(!Obj.create) { Obj.create=function(o){ function F(){} F.prototype=o; return F(); // "mark" what happens here (I am not returning new F();) }; }
English
1
0
0
0
Instinct
Instinct@uInstinctdev·
@getify Please can you tell me why that 'demo' got printed? See the "?"
English
1
0
1
0
not just pixels
not just pixels@getifyX·
@uInstinctdev I dunno for sure what Chrome is doing there, but here's my guess: "prototype" is the public `.prototype` property of that function, whereas "<prototype>" is the internal "[[Prototype]]" linkage of that function to its __proto__
English
2
0
1
0
Instinct
Instinct@uInstinctdev·
@getify Can you help me understand how 1 and 2 are different? Also why does 'demo' get printed in the console although I did not call it?
Instinct tweet media
English
1
0
0
0
Instinct
Instinct@uInstinctdev·
@getify Okay. I got it <prototype> is the chain prototype linkage which can be traversed while prototype is just the property on Foo(). Well, it's not chrome but Firefox Developer Edition. :P
English
0
0
1
0
Instinct
Instinct@uInstinctdev·
When is the Object.defineProperty() more useful than the simple assignment (=) operator? @getify
English
1
0
0
0