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
body { | |
font-family: Poppins; | |
-webkit-font-smoothing: antialiased !important; | |
} | |
.jdgm-rev-widg__title { | |
font-family: Roboto !important; | |
font-style: normal !important; | |
font-weight: 700 !important; | |
font-size: 20px !important; | |
line-height: 23px !important; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
:root { | |
--heading-font-family: "Avenir Next", sans-serif; | |
--heading-font-weight: 500; | |
--heading-font-style: normal; | |
--text-font-family: "Avenir Next", sans-serif; | |
--text-font-weight: 400; |
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
<html> | |
<head> | |
<style> | |
:root { | |
--heading-font-family: "Avenir Next", sans-serif; | |
--heading-font-weight: 500; | |
--heading-font-style: normal; | |
--text-font-family: "Avenir Next", sans-serif; | |
--text-font-weight: 400; | |
--text-font-style: normal; |
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
body { | |
font-family: 'Roboto'; | |
-webkit-font-smoothing: antialiased !important; | |
} | |
.jdgm-rev-widg__title { | |
font-family: 'Roboto' !important; | |
font-style: normal !important; | |
font-weight: 700 !important; | |
font-size: 20px !important; | |
line-height: 23px !important; |
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
//The information below is taken from https://stackoverflow.com/questions/2604727/how-can-i-connect-to-android-with-adb-over-tcp | |
//To connect to an adb device over wifi | |
adb tcpip 5555 | |
adb connect <ip_address_of_device>:5555 | |
//To find out ip address of the device | |
adb shell ip -f inet addr show wlan0 | |
//To disconnect |
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
NODE_SOURCE="https://deb.nodesource.com/setup_8.x" | |
NODE_CURL_ARGS="-sL" | |
#Install nginx | |
sudo apt-get install nginx -y | |
#Install nodejs | |
curl $NODE_CURL_ARGS $NODE_SOURCE | sudo -E bash - | |
sudo apt-get install -y nodejs | |
sudo apt-get install -y build-essential |