Skip to content

Instantly share code, notes, and snippets.

View mohamedsaqer's full-sized avatar

Mohamed Saqer mohamedsaqer

View GitHub Profile
@mohamedsaqer
mohamedsaqer / textrecognitionanddetection.ipynb
Last active February 22, 2021 22:33
Realtime Text Detection in Images, Videos and Webcam using Tesseract | OpenCV | Python
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mohamedsaqer
mohamedsaqer / Welcome.gif
Last active July 28, 2023 16:21
Welcome
Welcome.gif
@mohamedsaqer
mohamedsaqer / difference_time_react-native.js
Created June 16, 2019 10:34
Difference in time react-native
var msDiff = new Date(this.state.expire_date).getTime() - new Date().getTime(); //Future date - current date
var daysTill = Math.floor(msDiff / (1000 * 60 * 60 * 24));