Skip to content

Instantly share code, notes, and snippets.

View tarekeldeeb's full-sized avatar

Tarek Eldeeb tarekeldeeb

View GitHub Profile
cordova plugin add https://github.com/brodysoft/Cordova-SQLitePlugin.git
@mjdietzx
mjdietzx / waya-dl-setup.sh
Last active March 13, 2024 15:08
Install CUDA Toolkit v8.0 and cuDNN v6.0 on Ubuntu 16.04
#!/bin/bash
# install CUDA Toolkit v8.0
# instructions from https://developer.nvidia.com/cuda-downloads (linux -> x86_64 -> Ubuntu -> 16.04 -> deb (network))
CUDA_REPO_PKG="cuda-repo-ubuntu1604_8.0.61-1_amd64.deb"
wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/${CUDA_REPO_PKG}
sudo dpkg -i ${CUDA_REPO_PKG}
sudo apt-get update
sudo apt-get -y install cuda
@tarekeldeeb
tarekeldeeb / removeArabicDialects.sh
Last active June 21, 2022 17:05
Bash Script to Remove Arabic Dialects from UTF-8 or Windows-1256 / iso-8859-1 Encoding
# Bash Script to Remove Arabic Dialects from UTF-8 or Windows-1256 / iso-8859-1 Encoding
# - Converts arabic commas to latin comma
# - Remove Dialect symbols
# - Remove running spaces with a single
# - Replace Alif-with-hamza with Alif
#
# Example: removeArabicDialects my_utf8.txt > clear.txt
# Install: Copy this gist into your ~/.bashrc
# Author: Tarek Eldeeb
#
@bagheriali2001
bagheriali2001 / systemc_v2.3.3_installation_guide.md
Last active March 16, 2024 23:56
How to Install SystemC in Linux (Ubuntu, Debian, ...)