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
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] |
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
/** | |
* 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
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
cd ~ | |
touch .gitignore_global | |
git config --global core.excludesfile ~/.gitignore_global |
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
{ | |
"editor.fontSize": 12, | |
"editor.minimap.enabled": false, | |
"editor.detectIndentation": false, | |
"workbench.sideBar.location": "right", | |
"files.associations": { | |
"*.inc": "php", | |
"*.vue": "html", | |
"*.cgf": "shellscript" | |
}, |
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
{ | |
"color_scheme": "Packages/Monokai++/themes/Monokai++.tmTheme", | |
"detect_indentation": false, | |
"font_size": 12, | |
"highlight_modified_tabs": true, | |
"hot_exit": false, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], |
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
{ | |
"data": [{ | |
"type": "users", | |
"id": "1", | |
"attributes": { | |
"name": "John" | |
} | |
},{ | |
"type": "users", | |
"id": "2", |