This file contains 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
// Adapted from original source: https://martymcgui.re/2018/05/04/leaving-netflix-and-taking-my-data-with-me/ | |
/** | |
* Navigate to Netflix Ratings view page: | |
* Netflix > Account (from avatar dropdown in top right of screen) > Ratings (from profile of your choice) View | |
* | |
* or also works on Viewing activity > Ratings page: | |
* Netflix > Account (from avatar dropdown in top right of screen) > Viewing activity (from profile of your choice) View > Rating | |
*/ |
This file contains 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
body { | |
margin: 0 auto; | |
max-width: 50em; | |
font-family: "Helvetica", "Arial", sans-serif; | |
line-height: 1.5; | |
padding: 4em 1em; | |
color: #555; | |
} | |
h1, |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> | |
<link rel="stylesheet" href="css/style.css"> | |
</head> | |
<body> |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<link rel="stylesheet" href="#"> | |
</head> | |
<body> | |
<script type="text/javascript" src="#"></script> |
This file contains 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
/** | |
* @source brandon-rhodes/Concentric-CSS | |
*/ | |
/* This ordering of CSS elements is for the traditional setting | |
"box-sizing: content-box", which applies the "width:" and "height:" | |
only to the innermost content of the box. If you are using one of | |
the other box model settings - Paul Irish recommends "box-model: | |
border-box", for example - then simply move the "width:" and | |
"height:" up above the "border:" property in the list below. */ |
This file contains 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
display: ; | |
visibility: ; | |
float: ; | |
clear: ; | |
position: ; | |
top: ; | |
right: ; | |
bottom: ; | |
left: ; |
This file contains 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 | |
/** | |
* http://culttt.com/2012/10/01/roll-your-own-pdo-php-class/ | |
*/ | |
?> | |
This file contains 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
<!-- Better Table Template for HTML5 http://perishablepress.com/html5-table-template/#html5table --> | |
<table> | |
<caption>Here we assign header information to cells | |
by setting the scope attribute. | |
</caption> | |
<colgroup /> | |
<colgroup span="2" title="title" /> | |
<thead> | |
<tr> | |
<th scope="col">Name</th> |