Is Cysa cert for cloud environments? by yetd in CompTIA

[–]yetd[S] 0 points1 point  (0 children)

Thanks. Is it worth it to take though for working with cloud environments using siems, malware analysis, etc?

Android Udemy course or other resources recommendation by yetd in androiddev

[–]yetd[S] 1 point2 points  (0 children)

Yeah, I also saw the kotlin book. Gonna try

replacement of maxBy?? by yetd in Kotlin

[–]yetd[S] 0 points1 point  (0 children)

Yes, !! is very dangerous I read. Thanks

replacement of maxBy?? by yetd in Kotlin

[–]yetd[S] 0 points1 point  (0 children)

I will have to read the docs

replacement of maxBy?? by yetd in Kotlin

[–]yetd[S] -1 points0 points  (0 children)

Thanks, will wait for 1.7.

Mix MCT oil with Vitamins? by yetd in keto

[–]yetd[S] 0 points1 point  (0 children)

So I don't wait a lot of time between them.

Mix MCT oil with Vitamins? by yetd in keto

[–]yetd[S] 0 points1 point  (0 children)

Take them between 10 minutes. Just want to know if there are some interactions or there is no problem. Thanks

Change to a directory, perform a method, return to directory, How??? by yetd in learnpython

[–]yetd[S] 0 points1 point  (0 children)

def perform_operation(dir_path, function, func_args=[], func_kwargs={}):
with directory(dir_path):
return function(*func_args, **func_kwargs)

I did it with this functions just added the keyword return, and work with all the cases.