Pandas vs polars functions

common Pandas functions and their equivalent functions in the polars library: These are some of the commonly used Pandas functions and their equivalent in polars library. It is possible that some functions may not have an equivalent in polars library and some additional functions may be available in polars library. The polars library is a… Continue reading Pandas vs polars functions

what should we learn that will be critical in next 20 years?

Here are some skills and fields that may be critical in the next 20 years: Note: The specific skills that will be critical can vary depending on the region and industry, but these are some of the broad areas that are likely to be important in the future.

install fbprophet in python

when entering maybe you get this error: or any others and you tried everything!!just try this one and do not install conda or anything else!!: or then start coding easily: you can add news data as an additional regressor to the model by using the add_regressor method in the prophet library. Here’s an example code:… Continue reading install fbprophet in python

پاسخ به سوالات معمایی تست هوش مصاحبه شغلی

به این قبیل از سوالات می‌گن سوالای brain teaser و اثبات شده بجز اذیت کردن مصاحبه شونده و تامین عقده مصاحبه‌گر هیچ تاثیری نداره و باهاش هیچ چیزی رو نمی‌شه اندازه گرفت. از این نمونه سوالا توی اینترنت فراوونه و خیلی هاش رو هم مصلا نوشته سوالات مصاحبه گوگل یا اپل یا مایکروسافت!! همه هم… Continue reading پاسخ به سوالات معمایی تست هوش مصاحبه شغلی

create linux service

[Unit]Description=Webhook Serviceafter=network.target [Service]Type=simpleExecStart=/PATH-TO/Webhook-for-alertmanager/run.shRestart=on-abort [Install]WantedBy=default.target

Screen cheat sheet

Escape key All screen commands are prefixed by an escape key, by default C-a (that’s Control-a, sometimes written ^a). To send a literal C-a to the programs in screen, use C-a a. This is useful when when working with screen within screen. For example C-a a n will move screen to a new window on the screen within screen. Getting in screen -S… Continue reading Screen cheat sheet

Recruitment

If we divide management onto 6 different categories, that would be: Finance and accounting Strategy and organization Marketing and sales Production and operation Entrepreneurship and innovation Human resources and organization behavior then HR would divides to: leadership negotiation Function Decision making Recruitment It is worth about 3 to 5 times more than first salary of… Continue reading Recruitment

Julia language Basics cheat sheet

String Theory! :Use ” or “”” for strings and ‘ for characters. println(“Hello, my name is $name.”) println(“That is $(num_fingers + num_toes) digits in all!!”)string(“I don’t know, but “, 😺, ” is too few.”)s3*s4 To handle errors:@assert *condition* “Error message” Tuple: myfavoriteanimals = (“penguins”, “cats”, “sugargliders”)myfavoriteanimals[1]You cannot do this: myfavoriteanimals[1] = “otters” Named Tuple: myfavoriteanimals =… Continue reading Julia language Basics cheat sheet