Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am lolpuddle on github.
* I am lolpbo (https://keybase.io/lolpbo) on keybase.
* I have a public key ASBnQnBOnhlfNaa-tJlzenYcriILS1Eide78EcepPNsVjQo
To claim this, I am signing this object:
html code:
<li class="courseItem hidden" id="biology1a03">
<h3 class="courseItem-Title">Cellular and Molecular Biology</h3>
<div class="courseItem-Content">
<h4><span class="courseRequirements">Core</span><span class="coursetimePerWeek">3 hours / week</span></h4>
<a href="courseSyb.html" class="courseOutLine">Outline</a>
<h4><a href="#"><i class="greenText fa fa-2x fa-plus-circle" aria-hidden="true"></i></a><span style="float:right">Dr.Strange</span></h4>
</div>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.2.1/material.indigo-pink.min.css">
<script defer src="https://code.getmdl.io/1.2.1/material.min.js"></script>
<title>Material Resources</title>
</head>
<body>
@lolpuddle
lolpuddle / latexStartTemplate
Created February 26, 2016 22:04
Latex Start Template
\documentclass[12pt]{article}
\usepackage{xcolor} % for different colour comments
\usepackage{cite}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{float}
\usepackage{multirow}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.grey-orange.min.css">
<script src="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="/css/style.css" media="screen" title="no title" charset="utf-8">
<title>Testing</title>
</head>
create table `act` (
`movieid` int(11) not null,
`actorid` int(11) not null,
`oscaryear` int(11) default null,
`oscarornot` varchar(3) not null,
`role` varchar(20) not null,
primary key (`movieid`,`actorid`),
key `actorid` (`actorid`),
constraint `act_ibfk_1` foreign key (`movieid`) references `movie` (`id`) on delete cascade,
constraint `act_ibfk_2` foreign key (`actorid`) references `actor` (`id`) on delete cascade