Vitali Deatlov

Results 7 comments of Vitali Deatlov

@nikolakanacki see this: https://github.com/Yomguithereal/baobab/issues/268 and this: https://github.com/Yomguithereal/baobab/blob/master/src/baobab.js#L396-L421 basically, what @Yomguithereal means is that checking if node is changed happens using references ( `a === b` ). After every update reference...

Like (pseudo code): Print("creating a file..") Create("file.dat") Print("now we have these files in our dir:") Let files = Readdir("./") For (f in files) Print(f)

According to the sources: ``` ruby def full_host case OmniAuth.config.full_host when String OmniAuth.config.full_host when Proc OmniAuth.config.full_host.call(env) else # in Rack 1.3.x, request.url explodes if scheme is nil if request.scheme &&...

Wheel timer provides O(1) inserts and deletes. Heap timer is O(logn) which means that every timer create/removal would lead to some kind of loop. So performance wise I guess that...

To those who interested (not strongly related to the topic): if you want to top up user credits every month (upon successful prolongation of subscription), then you should use this...

Managed to get around this via generators template: ```yaml spec: generators: - list: elements: - project: serviceentry extraParam: a - project: default extraParam: b template: spec: project: '{{project}}' template: spec:...

Answering myself, according to this script we have to install chef-foundation and omnibus-toolchain as in https://github.com/chef/chef/blob/main/.expeditor/scripts/omnibus_chef_build.sh before the actual build. Actual versions of packages to be installed can be found...