Skip to content

Instantly share code, notes, and snippets.

View myusufid's full-sized avatar
🎯
Focusing

M Yusuf myusufid

🎯
Focusing
View GitHub Profile
@myusufid
myusufid / start_emulator_memu.sh
Created August 21, 2021 07:22 — forked from afandiyusuf/start_emulator_memu.sh
starting adb for memu emulator
adb connect localhost:21503
@myusufid
myusufid / nginxproxy.md
Created August 22, 2020 13:32 — forked from soheilhy/nginxproxy.md
How to proxy web apps using nginx?

Virtual Hosts on nginx (CSC309)

When hosting our web applications, we often have one public IP address (i.e., an IP address visible to the outside world) using which we want to host multiple web apps. For example, one may wants to host three different web apps respectively for example1.com, example2.com, and example1.com/images on the same machine using a single IP address.

How can we do that? Well, the good news is Internet browsers

@myusufid
myusufid / insertionsort.cpp
Created October 19, 2017 23:42 — forked from elleryq/insertionsort.cpp
Insertion Sort in C++
#include <cstdio>
#include <cstdlib>
void insertionSort(int arr[], int length) {
int i, j, tmp;
for (i = 1; i < length; i++) {
j = i;
while (j > 0 && arr[j - 1] > arr[j]) {
tmp = arr[j];
arr[j] = arr[j - 1];