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 | |
| # | |
| # Docker Complete Cleanup Script for macOS (Docker Desktop) | |
| # | |
| # WARNING: This script is DESTRUCTIVE. It will stop and remove ALL Docker | |
| # data including containers, images, volumes, networks, build history, and cache. | |
| # USE WITH EXTREME CAUTION. | |
| # | |
| ################################################################################ |
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
| require 'net/http' | |
| require 'uri' | |
| require 'json' | |
| require 'mime/types' | |
| @body ={ | |
| "name": "Banana de Pijamas!", | |
| "type": "variable", | |
| "regular_price": "21.99", | |
| "status": "publish", |
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
| Object.defineProperty(exports, '__esModule', { | |
| value: true, | |
| }); | |
| const React = require('react'); | |
| const PropTypes = require('prop-types'); | |
| const actioncable = require('actioncable'); | |
| const createReactClass = require('create-react-class'); | |
| const { Provider, Consumer } = React.createContext(); |
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
| [ | |
| { | |
| "name": "Emanuelle", | |
| "age": "27", | |
| "gender": "FEMALE", | |
| "info": [{ | |
| "cpf": 123321, | |
| "rg": 543345 | |
| }] | |
| }, |
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
| import React, { useEffect, useState } from 'react'; | |
| import { View, StyleSheet, Text, PermissionsAndroid } from 'react-native'; | |
| import Geolocation from 'react-native-geolocation-service'; | |
| const styles = StyleSheet.create({ | |
| container: { | |
| flex: 1, | |
| backgroundColor: 'lightgreen', | |
| }, |