`sh [ {en: 'The National Commercial Bank', 'ar': 'البنك الأهلي التجاري'}, {en: 'The Saudi British Bank (SABB)', 'ar': 'البنك السعودي البريطاني (ساب)'}, {en: 'The Saudi Investment Bank', 'ar': 'البنك السعودي للاستثمار'}, {en: 'Alinma Bank', 'ar': 'مصرف الإنماء'}, {en: 'Banque Saudi Fransi', 'ar': 'البنك السعودي الفرنسي'}, {en: 'Riyad Bank', 'ar': 'بنك الرياض'}, {en: 'Samba Bank', 'ar': 'بنك سامبا'}, {en: 'Alawwal Bank', 'ar': 'البنك الأول'},
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~# uname -a | |
~# lsb_release -a | |
~# locale-gen en_US | |
~# locale-gen en_US.UTF-8 | |
~# apt-get -y --force-yes remove ntpdate | |
~# apt-get -y --force-yes install ntp | |
~# /etc/init.d/ntp restart | |
~# dpkg-reconfigure tzdata |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm i -g npm-check-updates | |
npm-check-updates -u | |
npm install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".name_list").keypress(function(event){ | |
var ew = event.which; | |
if(ew == 32) | |
return true; | |
if(48 <= ew && ew <= 57) | |
return true; | |
if(65 <= ew && ew <= 90) | |
return true; | |
if(97 <= ew && ew <= 122) | |
return true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.myCollection.find().forEach( | |
function(e) { | |
e.fileName = updatedValue | |
db.myCollection.save(e) | |
} | |
) |
# this is the main email to be use with github
# filename: ~/.ssh/rsa_id
ssh-keygen -t rsa -f ~/.ssh/id_rsa -b 4096 -C "[email protected]"
# this is the main email to be use with github
# filename: ~/.ssh/rsa_id_othername
ssh-keygen -t rsa -f ~/.ssh/id_rsa_othername -b 4096 -C "[email protected]"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |