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
<a href="#menu1">Pasta Menu</a> | |
<a href="#menu2">Soup Menu</a> | |
<div name="menu1"> | |
All the pasta | |
</div> | |
<div name="menu2"> | |
All the soup |
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
troll; | |
legit; |
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 "Dequeue.h" | |
#include <string> | |
#include <sstream> | |
#include <iostream> | |
#include <ostream> | |
Dequeue::Dequeue() | |
{ | |
// Create initial data | |
this->init(100); |
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 | |
/* | |
By Robert Moore | |
[email protected] | |
http://www.github.com/bobby5892 | |
5/1/2018 | |
Request Looks Like | |
POST /cas/v1/tickets HTTP/1.0 |
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
std::string recPrint(std::string stringy,int index=-1){ | |
if(index < 0){ | |
index = stringy.length(); | |
} | |
if(index > 0){ | |
return recPrint(stringy.substr(index--,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
DROP TABLE STUDENT CASCADE CONSTRAINTS; | |
DROP TABLE DORM_ROOM CASCADE CONSTRAINTS; | |
CREATE TABLE STUDENT | |
(STUDENT_ID number(8) PRIMARY KEY, | |
STUDENT_FIRST_NAME varchar(25) NOT NULL, | |
STUDENT_LAST_NAME varchar(50) NOT NULL, | |
STUDENT_TYPE varchar(1) NOT NULL, | |
FK_DORM_ROOM_ID varchar(8)); |
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
let i = 0; | |
let port = 5000; | |
let body = document.getElementById("body"); | |
body.innerHTML = ""; | |
while (i < 100){ | |
i++; | |
port++; | |
body.innerHTML += "<br>ProxyPass /p"+ port +" http://localhost:"+ port +"/"; | |
body.innerHTML += "<br>ProxyPassReverse /p"+ port +" http://localhost:"+ port +"/"; | |
} |
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
ProxyPass /p5001 http://localhost:5001/ | |
ProxyPassReverse /p5001 http://localhost:5001/ | |
ProxyPass /p5002 http://localhost:5002/ | |
ProxyPassReverse /p5002 http://localhost:5002/ | |
ProxyPass /p5003 http://localhost:5003/ | |
ProxyPassReverse /p5003 http://localhost:5003/ | |
ProxyPass /p5004 http://localhost:5004/ | |
ProxyPassReverse /p5004 http://localhost:5004/ | |
ProxyPass /p5005 http://localhost:5005/ | |
ProxyPassReverse /p5005 http://localhost:5005/ |
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
DROP TABLE Resort CASCADE CONSTRAINTS; | |
DROP TABLE Resort_type CASCADE CONSTRAINTS; | |
DROP TABLE Accomodation CASCADE CONSTRAINTS; | |
CREATE TABLE Resort ( | |
resort_id varchar2(2) PRIMARY KEY, | |
resort_name varchar(50) NOT NULL, | |
FK_resort_type_id varchar2(2) NOT NULL | |
); | |
CREATE TABLE Resort_type( |
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
DROP TABLE DINOSAUR CASCADE CONSTRAINTS; | |
DROP TABLE DISCOVERY CASCADE CONSTRAINTS; | |
DROP TABLE ARCHEOLOGIST CASCADE CONSTRAINTS; | |
DROP TABLE LOCATION CASCADE CONSTRAINTS; | |
CREATE TABLE DINOSAUR( | |
DINOSAUR_ID NUMBER(8) PRIMARY KEY, | |
DINOSAUR_NAME VARCHAR2(50) NOT NULL, | |
DIET_TYPE VARCHAR2(10) NOT NULL, | |
COST NUMBER(10,2) |
OlderNewer