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
#!/bin/sh | |
# https://gist.github.com/John-Almardeny/04fb95eeb969aa46f031457c7815b07d | |
# Create a Notification With Sound with a Given Message and Time | |
# The Downloaded Sound is from Notification Sounds https://notificationsounds.com/ | |
MSSG="$1" | |
TIME="$2" | |
# install wget if not found |
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
import java.util.ArrayList; | |
import java.util.HashMap; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.NoSuchElementException; | |
/** | |
* 6505 User Agents of the Most Popular Desktop Browsers, | |
* Namely: Chrome, Firefox, Opera, Internet_Explorer, Safari and Edge. | |
* info reference from useragentstring.com |
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
/** | |
* All courses in WIT 2018 | |
* @author Yahya Almardeny | |
* @version 22/02/2018 | |
* https://gist.github.com/John-Almardeny/54a4fcc43f8358ef88c9d2288a8a9cdf | |
*/ | |
public enum Course { | |
Bachelor_Hons_of_Business, | |
BA_Hons_in_Accounting, |
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
#!/bin/bash | |
#https://gist.github.com/John-Almardeny/b595dacdc31e84012045486b39f69236 | |
#Create Github repository locally and remotely at the same time | |
#also push the local one to the remote repo. | |
#first check if curl is installed | |
#if not -> intstall it | |
if [ ! $(which curl) ];then | |
echo -e "\n*****************************************" |
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
#!/bin/bash | |
#https://gist.github.com/John-Almardeny/e409174137f69669843a2d001e7066da | |
#Set up Github from scratch on Ubuntu for first time | |
# if Git is not installed -> go head and install it | |
if [ ! $(which git) ];then | |
echo -e "\n*****************************************" | |
echo "git not found, starting to install it..." | |
echo -e "*****************************************\n" |