Skip to content

Instantly share code, notes, and snippets.

View benjameep's full-sized avatar

Benjamin Earl benjameep

View GitHub Profile
We can't make this file beautiful and searchable because it's too large.
user,tab,event,time,url,title,hits,pageviews,timeOnPage
1000032502.1580655756,9245253337.1580655756,8971146384.1580655756,202002020806,www.byui.edu/,Brigham Young University - Idaho,1,1,115.0
1000032502.1580655756,9245253337.1580655756,8971146384.1580655756,202002020806,www.byui.edu/,Brigham Young University - Idaho,1,1,115.0
1000032502.1580655756,8889908820.1580655871,3673410131.1580655871,202002020808,www.byui.edu/canvas-authentication,Authentication Required to Use Canvas,1,1,108.0
1000032502.1580655756,8889908820.1580655871,3673410131.1580655871,202002020808,www.byui.edu/canvas-authentication,Authentication Required to Use Canvas,1,1,108.0
1000032502.1580655756,6745719114.1580655979,8861840202.1580655979,202002020810,www.byui.edu/academic-support-centers/writing/help-for-online-students,Welcome to the BYU-I Online Writing Center,1,1,66.0
1000032502.1580655756,6745719114.1580655979,8861840202.1580655979,202002020810,www.byui.edu/academic-support-centers/writing/help-for-online-students,Welcome to the BYU-I
@benjameep
benjameep / 07_Prove.ipynb
Created November 2, 2019 22:26
07 Prove
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@benjameep
benjameep / upfront.js
Created October 24, 2019 04:54
My attempt to give SVGs postion absolute and Flex Box positioning
const { Observable, fromEvent, merge, combineLatest, of, ReplaySubject } = rxjs
const { map, tap, filter, throttleTime, startWith, mergeMap, pluck, scan, distinctUntilChanged } = rxjs.operators
const svg = document.querySelector('svg')
const rect = document.querySelector('rect')
const windowSize$ = merge(
fromEvent(window,'load'),
fromEvent(window,'resize')
).pipe(

Grab the Referer header if it exists

Only grabs the referer header if it is there

Action=SendMessage##
&MessageBody=$util.urlEncode($input.body)##
#set($referer = $input.params().get("header").get("Referer"))
#if(!$referer.isEmpty())
&MessageAttribute.1.Name=headers.Referer##
&MessageAttribute.1.Value.StringValue=$referer##
&MessageAttribute.1.Value.DataType=String##
We can make this file beautiful and searchable if this error is corrected: It looks like row 6 should actually have 35 columns, instead of 2. in line 5.
name,href,group,min_weight,max_weight,min_lifespan,max_lifespan,apartment_living,novice_owner,sensitivity,being_alone,cold_weather,hot_weather,family_affection,kid_friendly,dog_friendly,stranger_friendly,shedding,drooling,groom_easiness,general_health,weight_gain,size,training_easiness,intelligence,mouthiness,prey_drive,bark,wanderlust,energy,intensity,exercise_need,playfulness,min_height,max_height
Bolognese,https://dogtime.com/dog-breeds/bolognese,Companion Dogs,8,14,12,14,5,3,5,2,2,3,5,5,5,5,1,1,1,5,3,1,5,4,4,5,4,1,3,3,4,3,9,12
Black Mouth Cur,https://dogtime.com/dog-breeds/black-mouth-cur,Working Dogs,40,95,12,18,1,2,4,2,3,3,5,5,3,3,3,2,5,4,2,4,3,4,3,5,4,4,4,3,5,4,16,25
Black Russian Terrier,https://dogtime.com/dog-breeds/black-russian-terrier,Working Dogs,80,140,10,11,3,2,4,1,4,3,5,5,2,3,2,3,2,3,3,5,4,4,4,3,3,3,4,5,4,5,26,30
Black and Tan Coonhound,https://dogtime.com/dog-breeds/black-and-tan-coonhound,Hound Dogs,75,100,10,12,1,2,3,2,4,4,5,5,5,5,5,3,4,5,5,3,2,5,1,5,5,5,5,5,5,5,23,27
Bloodhound,https://do
Name Speed Weight Acceleration Handling Drift Off-Road Mini-Turbo Drift-Type Unlock criteria Size Type
Standard Kart S 41 29 48 48 51 40 45 Out - Small Kart
Booster Seat (Baby Booster) 27 27 56 64 37 54 59 Out - Small Kart
Mini Beast (Concerto) 55 32 29 32 64 27 64 Out - Small Kart
Cheep Charger 34 24 64 56 59 45 54 Out Rank 1 Star in all 50cc Retro Grand Prix Cups Small Kart
Tiny Titan (Rally Romper) 46 35 43 43 29 64 40 Out Unlock an Expert Staff Ghost Data record in Time Trials / Win 50 WFC races Small Kart
Blue Falcon 60 29 35 29 43 24 29 Out Win the Mirror Lightning Cup Small Kart
Standard Bike S 39 21 51 51 54 43 48 Out - Small Bike
Bullet Bike 53 24 32 35 67 29 67 In - Small Bike
Bit Bike (Nanobike) 25 18 59 67 40 56 62 Out - Small Bike
@benjameep
benjameep / functionality list.md
Last active March 20, 2019 16:37
Transparency Functionality List

Transparency Functionality List

AUTHENTICATION

Login

Login request sent from the login page. Returns with the set-cookie header

POST /login
{
  username: "bob"
 password: "pa$$w0rd"
@benjameep
benjameep / week1 prove.md
Created January 19, 2019 20:39
week1 prove
<title>week1 prove</title>
@benjameep
benjameep / Tablerock flowchart.html
Last active February 8, 2019 00:05
Tablerock flowchart
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tablerock flowchart</title>
<link rel="stylesheet" href="https://stackedit.io/style.css" />
</head>

Stored Programs at Database Tutorial

Stored Programs

Oracle introduced the PL/SQL programming language more than 20 years ago in the Oracle 6 database. PL/SQL provides a procedural extension to SQL and lets you call SQL from a PL/SQL program, or vice versa. This blog page introduces you to the basics of writing stored programs in Oracle 11g and provides a summary overview of PL/SQL. You can find more complete treatment in Oracle Database 11g PL/SQL Programming.

The concept of transactional SQL units delivered by INSERT, UPDATE, and DELETE statements and be combined with PL/SQL blocks and Transactional Control Language (TCL) let you write powerful database-centric programs.

In this blog page, you’ll learn the basics of writing PL/SQL programs. The chapter covers the following topics: