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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <!-- Feel free to use and modify however you like http://AlanSimpson.me --> | |
| <title>CSS Dot Leaders</title> | |
| <style> | |
| ul.dotleaders { | |
| list-style: none; | |
| padding: 0; | |
| /* This width can be whatever you like */ |
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
| <!DOCTYPE html> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <title></title> | |
| <style> | |
| /* General style, transition occurs when taking mouse pointer of the item */ | |
| img.crazy { | |
| display: block; | |
| margin: 10em auto; | |
| /* That code is really just the opposite of the hover code. */ |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta name="author" content="Alan Simpson"> | |
| <meta name="description" content="Embed a Responsive Google Map in your Web Page"> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script | |
| src="https://code.jquery.com/jquery-3.3.1.min.js" | |
| integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" | |
| crossorigin="anonymous"></script> | |
| <script> | |
| $(document).ready(function () { |
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
| /** | |
| * Responsive tables with element() | |
| * Pros: No markup changes, works with normal table markup, no content duplication | |
| * Cons: element() is only implemented in Firefox :( | |
| */ | |
| @media (max-width: 600px) { | |
| table, tr, td, th, thead, tbody { | |
| display: block; | |
| } |
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
| /** | |
| * Responsive tables with text-shadow | |
| * Pros: No markup changes, works with normal table markup, no content duplication | |
| * Cons: Need to know max number of rows, doesn't work with all styles | |
| */ | |
| @media (max-width: 600px) { | |
| tr, td, th, thead, tbody, table { | |
| display: block; | |
| } |
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
| // ==UserScript== | |
| // @name MDPass | |
| // @namespace * | |
| // @include https://*/* | |
| // @description View parital MD5 values of password fields for visual comparison. | |
| // @version 1 | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js | |
| // @grant none | |
| // ==/UserScript== |
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
| #!/usr/bin/ruby | |
| # ββββ β βββ ββββ β ββββββββββββββ βββ βββ | |
| # ββ ββ β ββββ ββ ββ β βββ ββ β ββ β β ββ | |
| # βββ ββ ββββββββββ ββ βββ βββ ββββ ββ β β | |
| # ββββ βββββββββββββ ββββββββββββ βββ β β β β β | |
| # ββββ ββββββββββββ ββββ βββββ βββββββββββ ββββ | |
| # β ββ β β ββ β ββ β β βββββ ββ ββ βββ β ββ β | |
| # β ββ β ββ β ββ ββ β ββ β βββ β β βββ ββ β | |
| # β β β β β β β β β β β β β β | |
| # β β β β β β β β β |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| { | |
| "metadata": { | |
| "name": "Lecture21_AnnotatedExamples" | |
| }, | |
| "nbformat": 3, | |
| "nbformat_minor": 0, | |
| "worksheets": [ | |
| { | |
| "cells": [ | |
| { |