Skip to content

Instantly share code, notes, and snippets.

View lego-sharat's full-sized avatar

Sharat Chandra lego-sharat

View GitHub Profile
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;
<!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;
<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;
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;
@lego-sharat
lego-sharat / adb-wifi
Created July 17, 2019 12:22
Useful adb commands for working with devices over wifi
//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
@lego-sharat
lego-sharat / boilerplate.sh
Created October 18, 2017 12:01
Packages i always install on an ubuntu box when starting with a nodejs project
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