This blog shows how to turn a tablet into a secondary monitor in just 2 steps.
Here is what the final result would look like.
This blog shows how to turn a tablet into a secondary monitor in just 2 steps.
Here is what the final result would look like.
var obj = {
a: 1,
foo: function (b) {
b = b || this.a;
return function (c) {
console.log(this.a);
console.log(b);
console.log(c);
};
},
};
var a = 2;
var obj2 = { a: 3 };
obj.foo(a).call(obj2, 1);
obj.foo.call(obj2)(1);
Promise.all()
vs Promise.race()
.flex: 0 auto
or flex: 1 auto
Array
.typesense is a open source Algolia alternative. This blog shows how to run a self-hosted typesense
server on my own server.
When we are discussing about my projects. The interviewer asked the following questions:
#id
's scroll to element effect.After done talking my projects, I was asked a few questions about Promise
, linked list, and heap sort, insertion sort.
git stash with a stash name.
git stash push -m "stash_name"
stash untracked files
git stash push -u -m "stash_name"
git stash push --include-untracked -m "stash_name"
The ENTRYPOINT specifies a command that will always be executed when the container starts.
The CMD specifies arguments that will be fed to the ENTRYPOINT.
ENTRYPOINT
can also be overridden using --entrypoint
flagCMD
will be overridden when running the container with alternative arguments (e.g. bash
).