minsung-kim Profile
minsung-kim

@minkim9

Followers
4
Following
8
Media
1
Statuses
16

Joined June 2011
Don't wanna be here? Send us removal request.
@minkim9
minsung-kim
5 years
.It’s awesome! Thank you all contributors, I admire you guys all!.
0
0
0
@minkim9
minsung-kim
5 years
NullishCoalesing operator helps us to run our code accurate, Look,.const data = 0;.message = data ?? ‘undefined’;.console.log(message);.You will see the result “0” while “message = data || ‘undefined’ returns “undefined”. #javascript #NullishCoalasing.
0
0
0
@grok
Grok
21 days
The most fun image & video creation tool in the world is here. Try it for free in the Grok App.
0
193
1K
@minkim9
minsung-kim
5 years
Spread operator (. ) only copies a referencing address. So be careful if you update values in your original object, consequently, newer one has updated values. #JavaScript #SpreadOperator.
0
0
0
@minkim9
minsung-kim
5 years
Non flowing mode is useful for implementing protocols, because it is more flexible to control. See [size]), you can pull the data with fixed size. Moreover, it supports async iterators as well. #Nodejs #nodejssteams #streams #readablestreams.
0
1
0
@minkim9
minsung-kim
5 years
Thanks pipe(), it allows us to connect different processing unit. Only prerequisite is the data type of which is produced by previous method has to supported by next stream. #javascript #Nodejs #nodejsstreams #streams.
0
2
5
@minkim9
minsung-kim
5 years
Early return principal that you have a reduction of nesting level. “if (err) { return cb(err) } // do something” Anyway, due to return value of async is usually ignored, we can write shortcut like it. #js #javascript #earlyReturnPrinciple #callbackhell.
0
1
0
@minkim9
minsung-kim
5 years
To prevent possible memory leak due to too many listeners, Node provides you a warning when it’s counter is exceeding 10. And you configure it with setMaxListeners() method. #nodejs #js #eventemitter.
0
4
2
@minkim9
minsung-kim
5 years
While process.nextTick runs before any scheduled IO, it can make IO starvation. But it never happens with setImmediate(). This function queues current task in an event loop so that it will run after all IOS have been processed. #js #node #callback.
0
0
0
@minkim9
minsung-kim
5 years
process.nextTick() it is the way of running your sync code working with async. It probably prevents some issues that could be happened due to using sync and async together. Since it push your sync call to the top of the event loop. #js #node.
0
0
0
@minkim9
minsung-kim
8 years
0
0
0
@minkim9
minsung-kim
10 years
I had a same issue. With the tunning of winrm do not excute too many creation of VM at once.
@MerlinFromBE
Merlin from Belgium
10 years
@steingeerinck blogged on a WinRM related #SCVMM issue: #HyperV cluster shows “Needs Attention” in SCVMM
0
0
0
@minkim9
minsung-kim
10 years
Be the L3 switch for BGP and ECMP required for the WS16 SLB right? #WS16 #AzureStack #HyperV.
0
0
0