Skip to content

Instantly share code, notes, and snippets.

View lawrencek1992's full-sized avatar

Kelly lawrencek1992

  • The Suite
  • Colorado
View GitHub Profile
@lawrencek1992
lawrencek1992 / index.html
Created January 3, 2021 05:54
Spatula Product Landing Page
<header id="header">
<nav id="nav-bar">
<img id="header-img" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ7Uh54h5LQwbC-SyGShwXkaLqyArji4OES8Q&usqp=CAU" alt="Black Diamond logo">
<a
id="features-nav"
class="nav-link"
href="#features-label">
Features</a>
<a
@lawrencek1992
lawrencek1992 / index.html
Created January 3, 2021 05:56
Pamela Pack Tribute Page
<html>
<article>
<header>
<h1 id="title">Pamela Shanti Pack<h1>
<h2><em>The high priestess of offwidth climbing</em><br><hr>
<div id="img-div">
<img id="image" src="https://www.maximropes.com/fileadmin/user_upload/Team/Pamela_Shanti_Pack/pamela-shanti-pack-climbing2-491x397.jpg" alt="Photo of Pamela Pack hanging from a large roof crack">
<p id="img-caption">Pamela Pack locks her feet into a roof crack.</p>
</div>
@lawrencek1992
lawrencek1992 / index.html
Created March 9, 2021 07:43
New Portfolio
<html id="start">
<header>
<title>Kelly Lawrence Personal Portfolio</title>
</header>
<body>
<div id="night">
<section id="far-mountains">
<div id="far-mountain-1"></div>
<div id="far-mountain-2"></div>
<div id="far-mountain-3"></div>
@lawrencek1992
lawrencek1992 / index.html
Created April 22, 2021 04:40
Palindrome Checker
<html>
<head>
<title>Palindrome Checker</title>
</head>
<body>
<!-- Title and form are wrapped in two divs .main and .wrapper to allow for vertical alignment styling within css so mobile sites don't seem so "short". -->
<div class = "main">
<div class = "wrapper">
<h1>Palindrome Checker</h1>
<h3>A palindrome is a word or phrase that reads the same backwards as forwards.
@lawrencek1992
lawrencek1992 / index.html
Created April 22, 2021 04:42
Spatula Product Landing Page
<header id="header">
<nav id="nav-bar">
<img id="header-img" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ7Uh54h5LQwbC-SyGShwXkaLqyArji4OES8Q&usqp=CAU" alt="Black Diamond logo">
<div class="nav-links">
<a
id="features-nav"
class="nav-link"
href="#features-label">
Features</a>
@lawrencek1992
lawrencek1992 / css-grid-technical-documentation-page.markdown
Created April 22, 2021 04:44
CSS Grid Technical Documentation Page

Keybase proof

I hereby claim:

  • I am lawrencek1992 on github.
  • I am lawrencek1992 (https://keybase.io/lawrencek1992) on keybase.
  • I have a public key ASAhSmuTAROknzW6Wo563JX_HwzkKaE3ZXJLAeavlEqXPQo

To claim this, I am signing this object:

@lawrencek1992
lawrencek1992 / hashmap.py
Last active October 2, 2022 20:10
Make a Hashmap in Python
"""
Implement a hash map in python without the use of dict()
"""
from typing import List
class Item:
def __init__(self, key, value):
@lawrencek1992
lawrencek1992 / undirected_graph.py
Last active October 2, 2022 20:10
Undirected Graph
import collections
class UndirectedGraph:
def __init__(self):
self.graph = {}
def add_vertex(self, vertex):
if not vertex in self.graph: