Skip to content

Instantly share code, notes, and snippets.

View thomasjbradley's full-sized avatar
🐢
Saving dinosaurs

Thomas J Bradley thomasjbradley

🐢
Saving dinosaurs
View GitHub Profile
@thomasjbradley
thomasjbradley / testing.md
Last active April 17, 2020 18:17
web-dev-4-030-w2020

Using the testing software beside your name, test the homepage of everybody in the list.

Tag @thomasjbradley in one of the issues you find. If you don’t find problems just tag @thomasjbradley in an Issue saying you didn’t find anything.

If the repo you’re looking at doesn’t have a homepage—test a few of the person’s patterns in your assigned software.

@thomasjbradley
thomasjbradley / testing.md
Last active April 14, 2020 18:06
web-dev-4-020-w2020

Using the testing software beside your name, test the homepage of everybody in the list.

Tag @thomasjbradley in one of the issues you find. If you don’t find problems just tag @thomasjbradley in an Issue saying you didn’t find anything.

If the repo you’re looking at doesn’t have a homepage—test a few of the person’s patterns in your assigned software.

@thomasjbradley
thomasjbradley / testing.md
Last active April 13, 2020 12:10
web-dev-4-010-w2020

Using the testing software beside your name, test the homepage of everybody in the list.

Tag @thomasjbradley in one of the issues you find. If you don’t find problems just tag @thomasjbradley in an Issue saying you didn’t find anything.

If the repo you’re looking at doesn’t have a homepage—test a few of the person’s patterns in your assigned software.

@thomasjbradley
thomasjbradley / scrolling-animation.js
Last active October 29, 2018 20:16
A replacement for jQuery in the JavaScript & jQuery effects video playlist. https://www.youtube.com/playlist?list=PLWjCJDeWfDdfAAbxA-H5XHQlGoLICyHe_
var sun = document.querySelector('.sun');
window.addEventListener('scroll', function () {
var top = window.scrollTop / 3;
sun.style.transform = 'rotate(' + top + 'deg)';
});
@import url('https://fonts.googleapis.com/css?family=Lato:400,700');
/*
BOILERPLATE
------------------------------------------------
*/
@-moz-viewport { width: device-width; scale: 1; }
@-ms-viewport { width: device-width; scale: 1; }
@-o-viewport { width: device-width; scale: 1; }