A Pen by Stephen Peters on CodePen.
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 bs4 | |
| from urllib.request import urlopen as uReq | |
| from bs4 import BeautifulSoup as soup | |
| my_url = 'https://site.com' | |
| #opening up connection, grabbing the page | |
| uClient = uReq(my_url) | |
| page_html = uClient.read() | |
| uClient.close() |
A Pen by Stephen Peters on CodePen.
A Pen by Stephen Peters on CodePen.
A Pen by Stephen Peters on CodePen.
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
| -- phpMyAdmin SQL Dump | |
| -- version 4.8.3 | |
| -- https://www.phpmyadmin.net/ | |
| -- | |
| -- Host: localhost:3306 | |
| -- Generation Time: Dec 18, 2018 at 01:48 AM | |
| -- Server version: 5.7.23 | |
| -- PHP Version: 7.2.8 | |
| SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
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
| <?php | |
| try { | |
| require_once 'includes/pdo_connect.php'; | |
| $prelim = | |
| "INSERT INTO prelim_guest_Info | |
| (first_name, last_name, email, phone_number) | |
| VALUES (:first_name, :last_name, :email, :phone_number)"; | |
| $stmt_prelim = $db->prepare($prelim); | |
| $stmt_prelim->bindParam(':first_name', $_POST["first_name"]); | |
| $stmt_prelim->bindParam(':last_name', $_POST["last_name"]); |
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
| -- phpMyAdmin SQL Dump | |
| -- version 4.8.3 | |
| -- https://www.phpmyadmin.net/ | |
| -- | |
| -- Host: localhost:3306 | |
| -- Generation Time: Jan 24, 2019 at 08:34 PM | |
| -- Server version: 5.7.23 | |
| -- PHP Version: 7.2.8 | |
| SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
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 from 'react'; | |
| import List from "./List"; | |
| import Search from "./Search"; | |
| class SearchableList extends React.Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| query: '', |
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
| -- | |
| -- PostgreSQL database dump | |
| -- | |
| -- Dumped from database version 11.6 (Ubuntu 11.6-1.pgdg19.04+1) | |
| -- Dumped by pg_dump version 12.1 (Ubuntu 12.1-1.pgdg19.04+1) | |
| -- Started on 2020-01-23 11:03:53 EST | |
| SET statement_timeout = 0; |
OlderNewer