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)
Category: Uncategorized
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
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
Linking Analytics with another AdSense Account

It is important that you integrate Google AdSense with your Google Analytics account as you will then be able track the ad performance (CTR, CPM, revenue, etc.) of individual pages of your site without having to create AdSense channels.
You are maintaining two separate Google Accounts – your first Google Account (say adsense@gmail.com) is configured with AdSense while the other account (say analytics@gmail.com) is associated with Google Analytics.
How do you then link these two accounts so that you can track AdSense and Analytics data from the same dashboard?
If are facing a similar issue, here’s a simple solution courtesy:
Continue reading Linking Analytics with another AdSense Account
CSS 3 Change default radio button style

Here’s a simple code snippet that allow to change default radio button design, and set a background image.
Here is a screenshot of the result obtained after modifying the default radio button design.

We only used HTML5 and CSS3 to get this result, enjoy.
Solution to use Youtube in background and with the screen off without installing anything
Français In my opinion the biggest flaw of the Youtube application on Android or iOS is that it is not possible to listen to music by doing something else at the same time, moreover we can not turn off theContinue reading… Solution to use Youtube in background and with the screen off without installing anything
cron vs sleep which is better ?
The case if you need to run scripts or commands at certain intervals of time, you have two options: Use a cron job Use a infinite loop with sleep in the scrpt itself So what is the better option in termsContinue reading… cron vs sleep which is better ?
Run AngularJs 1 project – simple way with npm http server
Start AngularJs 1 project – simple way with npm http server
In this video, I show how to run AngularJs 1 project with npm http-server package.
Happy watching.