This file contains hidden or 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
| background color : #FFFFAF | |
| font color : #303030 |
This file contains hidden or 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
| /** | |
| * Set of functions for calculating distance | |
| */ | |
| const getDistance = (lat1, lon1, lat2, lon2) => { | |
| let R = 6371; | |
| let dLat = deg2rad(lat2 - lat1); | |
| let dLon = deg2rad(lon2 - lon1); | |
| let a = | |
| Math.sin(dLat / 2) * Math.sin(dLat / 2) + | |
| Math.cos(deg2rad(lat1)) * |
This file contains hidden or 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
| [ | |
| { | |
| "featureType": "administrative", | |
| "elementType": "labels.text", | |
| "stylers": [ | |
| { | |
| "visibility": "on" | |
| } | |
| ] | |
| }, |
This file contains hidden or 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
| ├── bower@1.8.4 | |
| ├── create-react-app@3.0.0 | |
| ├── create-react-native-app@2.0.2 | |
| ├── docusaurus-init@1.0.2 | |
| ├── electron-builder@20.28.4 | |
| ├── electron-packager@12.2.0 | |
| ├── ember-cli@3.8.2 | |
| ├── ember-cli-update@0.43.3 | |
| ├── expo-cli@2.3.8 | |
| ├── gulp@3.9.1 |
This file contains hidden or 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
| - mobile | |
| max-width: 800px - 1 | |
| - mobile-small | |
| max-width: 320px | |
| - desktop | |
| min-width: 800px | |
| - desktop-tiny |
This file contains hidden or 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
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteRule ^index\.html$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule (.*) index.html [L] | |
| </IfModule> |
This file contains hidden or 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
| RewriteEngine On | |
| RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR] | |
| RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d | |
| RewriteRule ^ - [L] | |
| RewriteRule ^ /index.html |
This file contains hidden or 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
| # Requires python 3 | |
| import scipy as sp | |
| import sympy as sym | |
| x = sym.symbols('x') | |
| expression = input('Enter Expression: ') | |
| transform = sym.diff(expression); | |
| init_transform = str(transform) |
This file contains hidden or 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 | |
| # Install NVM - Node Version Manager | |
| wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash | |
| # Reload bash | |
| source ~/.bashrc | |
| # Install NodeJS | |
| nvm install v12.18.1 |