Here the tips from squash.io team that help me, to solve this error Permission denied (publickey,gssapi-keyex,gssapi-with-mic) Regarding the SSH access: * Make sure you have your SSH public key in the same GitHub account you are using to log inContinue reading… Squash.io – SSH Access Troubleshooting – Permission denied (publickey,gssapi-keyex,gssapi-with-mic)
Python, Selenium Grid and Docker
Français With Docker you can quickly and easily install, configure and use Selenium Grid. This tutorial shows the respective steps that you need as a software tester (or Developer). Instead of Python you can also use other languages, which areContinue reading… Python, Selenium Grid and Docker
Django Health Check Database connection
Français This snippet checks for Django database connection and provides reports when anomalous behavior is detected.
Converting PDF and DOCX files to text
Français For a data analysis project on CVs, I needed to mass convert PDF and DOCX (Microsoft Word) files to text files (TXT). The aim was to apply Machine Learning algorithms on the data. The Apache Tika library allowed me to easilyContinue reading… Converting PDF and DOCX files to text
Salesforce REST API: authentication in Python
Français The Salesforce.com REST API let one interact with the entire data of the CRM (accounts, contacts, opportunities…). An authentication is required beforehand, an access token must be obtained. The documentation indicates 3 distinct OAuth flows to authenticate: Web Server OAuth, User-Agent OAuth and Username-Password OAuth.Continue reading… Salesforce REST API: authentication in Python
Show loading while performing an operation in Flutter

In this example, I’m going to share the code which will help you to show a Loader icon when an operation is being performed.
Continue reading Show loading while performing an operation in Flutter
Dockerize Ionic application

Introduction
Ionic Framework is a mix of tools and technologies to develop hybrid mobile applications quickly and easily. It relies on Angular for the web application part of the framework and on Cordova for the construction part of the native applications. This open source framework makes it possible to develop a deployable application on several environments such as a website or a mobile application for systems such as Android or iOS or Windows Phone
In this article, there is no question of discovering this framwework, but rather to set up our test environment. From docker, here we will see how to prepare your dockerfile to get there.
Get Today Hijri Date in Javascript
Français To get the current hijri date in javascript, I use Intl.DateTimeFormat To get the arabic display : new Intl.DateTimeFormat(‘ar-FR-u-ca-islamic’, {day: ‘numeric’, month: ‘long’,weekday: ‘long’,year : ‘numeric’}).format(Date.now()); the expected output : > “الجمعة، 17 ذو القعدة 1440” or in french languageContinue reading… Get Today Hijri Date in Javascript
Install Redis Desktop Manager
Redis is a high performance data store solution, it is a one more step forward in the “No SQL” regime and developers are using this store to achieve reliable performance and flexibility for their applications. Redis can be used asContinue reading… Install Redis Desktop Manager
Dockerize Django 2 app with docker-compose – Part 1
Français This post will explain how to start from scratch to dockerize Django 2 app with docker compose. Tutorial on Youtube Dockerize Django 2 app with docker-compose Lets not waste time and go to the following steps. 1. Let’s makeContinue reading… Dockerize Django 2 app with docker-compose – Part 1