Skip to content

Tag: linux

Using Docker with Python Poetry?

I’ve been using Docker with pipenv for my data science deployment setup and now I want to change to Poetry. My Dockerfile is: My pyproject.toml: This is based on other Dockerfiles that I found on StackOverflow. I run into the following problem: So this looks like the Poetry is not used, where Jupyter is…

Linux Date Function forward/backward time

Is there an option of date function? How do I get LOAD_TEST_START to be 2 minutes forward? How do I get LOAD_TEST_END to be 2 minutes back? Answer This answer helped me and works on the linux-version of date. On macos/FreeBSD one can use

reading and analyzing a text file with bash script

I want to read a log file and want to extract 5-6 number digit that is written right next after the keyword “salary”. And then want to analyze if the salary is above 2000. If there is even one above 2000, it is a MNC otherwise unknown. After writing the salary, the line ends mostly but sometimes t…