Skip to content

Instantly share code, notes, and snippets.

View LukePeters's full-sized avatar

Luke Peters LukePeters

View GitHub Profile
@LukePeters
LukePeters / stats.html
Created April 25, 2021 23:23
Follower Counts App - HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Follower Counts</title>
@LukePeters
LukePeters / style.css
Created April 25, 2021 23:20
Follower Counts App - CSS
:root {
--white: #FFFFFF;
--purple: #4D2170;
--purple-light: #C18EEA;
--purple-medium: #250042;
--purple-dark: #18002B;
--youtube-red: #FF0000;
--twitter-blue: #1DA1F1;
--instagram-gradient: linear-gradient(
90deg, #F0C900 0%, #EC0916 50%, #993ADE 100%
@LukePeters
LukePeters / test.py
Created December 8, 2017 06:51
Python
def test():
return "Hello, world"
@LukePeters
LukePeters / scripts.js
Last active December 5, 2017 21:03
JavaScript Objects
var person = {
name: "Luke Peters",
location: "Boston, MA",
occupation: "Web Developer",
profile: "How're you doing?"
};