// jQuery
$(document).ready(function() {
// code
})
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
| {"config": {"adapter": [Function xhrAdapter], "baseURL": "http://devapi.custofood.com", "data": undefined, "env": {"FormData": null}, "headers": {"Accept": "application/json, text/plain, */*", "Authorization": "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjg1MSwiaXNzIjoiaHR0cDovL2RldmFwaS5jdXN0b2Zvb2QuY29tL2FwaS9sb2dpbiIsImlhdCI6MTY3NDQ5MjY4NCwiZXhwIjoxNjc3MDg0Njg0LCJuYmYiOjE2NzQ0OTI2ODQsImp0aSI6IklHdE92RUNSbkJnalJ4NG8ifQ.gypPa3nYr34U2MMh_n1p07nuTTFOdMi8EKE21awJYHM"}, "maxBodyLength": -1, "maxContentLength": -1, "method": "get", "timeout": 0, "transformRequest": [[Function transformRequest]], "transformResponse": [[Function transformResponse]], "transitional": {"clarifyTimeoutError": false, "forcedJSONParsing": true, "silentJSONParsing": true}, "url": "/api/dishes?recommended=1¤t_location[]=[37.4323341,-121.8995741]&q=", "validateStatus": [Function validateStatus], "xsrfCookieName": "XSRF-TOKEN", "xsrfHeaderName": "X-XSRF-TOKEN"}, "data": "<!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset= |
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, { useMemo } from "react"; | |
| import { View } from "react-native"; | |
| import { degToRadians } from "src/components/OrbitLogo"; | |
| import Svg, { Circle, Line, Polygon } from "react-native-svg"; | |
| import times from "lodash.times"; | |
| type RadarData = { | |
| value: number; | |
| label: string; | |
| }; |
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
| <KeyboardAvoidingView behavior={'padding'} style={{ flex: 1 }}> | |
| <ScrollView> | |
| <Text> | |
| Lorem Ipsum is simply dummy text of the printing and typesetting | |
| industry. Lorem Ipsum has been the industry's standard dummy text | |
| ever since the 1500s, when an unknown printer took a galley of type | |
| and scrambled it to make a type specimen book. It has survived not | |
| only five centuries, but also the leap into electronic typesetting, | |
| remaining essentially unchanged. It was popularised in the 1960s | |
| with the release of Letraset sheets containing Lorem Ipsum passages, |
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
| #include <ESP8266WiFi.h> | |
| #define WIFI_SSID "name_of_SSID" | |
| #define WIFI_PASSWORD "password_here" | |
| void setup() { | |
| Serial.begin(9600); | |
| WiFi.begin( WIFI_SSID, WIFI_PASSWORD) ; | |
| Serial.print("connecting"); |
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 requests | |
| from bs4 import BeautifulSoup | |
| def trade_spider(max_pages): | |
| page = 1 | |
| while page <= max pages: | |
| url = 'https//.....'+str(page) | |
| source_code = requests.get(url) | |
| plain_text = source_code.text | |
| soup = BeautifulSoup(plain.text) |