Python - How to read files in multiple ways
Read file all in one shot Above code read whole file at once, but if the files…
March 10, 2018
You have drupal 7 image from docker hub, and want to connect tomongo db via php code.
The Dockerfile for this is:
FROM drupal:7.57-apache
RUN apt-get update; \
apt-get install openssl libssl-dev libcurl4-openssl-dev -y; \
pecl install mongodb; \
echo "extension=mongodb.so" > /usr/local/etc/php/conf.d/mongodb.ini \
You can mount volume, if you want.
Enjoy!
Read file all in one shot Above code read whole file at once, but if the files…
Introduction While this topic may applicable to all mysql/mariadb users who…
Introduction I got my seo backlink work done from a freelancer. It was like 300…
This library is ES6, promise compatible. Or, in your package.json file, include…
Being a drupal user from last around 5 years, I used to know small codes for…
Introduction I had to develop a small automation to query some old mysql data…
Introduction This post has the complete code to send email through smtp server…
Introduction In a normal email sending code from python, I’m getting following…
Introduction In one of my app, I was using to talk to . I have used some event…
Introduction So you have a Django project, and want to run it using docker image…
Introduction It is very important to introduce few process so that your code and…
Introduction In this post, we will see a sample Jenkin Pipeline Groovy script…