Skip to content

Instantly share code, notes, and snippets.

View offsetkeyz's full-sized avatar
💭
clickity clack

Colin M. offsetkeyz

💭
clickity clack
View GitHub Profile
@offsetkeyz
offsetkeyz / resume.json
Last active January 18, 2024 02:45
Public Resume
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/master/schema.json",
"basics": {
"name": "Colin McAllister",
"label": "Security Developer",
"image": "../img/colin.jpg",
"email": "keyz@null.net",
"phone": "7028092988",
"url": "https://colinmca.com",
"summary": "A seasoned Security Developer with a profound committment to cyber security, underpinned by a robust understanding of Python and YAML. Adept at working in a fast-paced environment, with a proven track record of delivering high-quality work on time. A strong team player with a passion for automation, education, and leadership.",
@offsetkeyz
offsetkeyz / app.py
Created May 12, 2020 02:28
Requests with Beautiful Soup
_author_ = "Colin McAllister (Offset Colin)"
import requests
from bs4 import BeautifulSoup
request = requests.get("https://www.johnlewis.com/herman-miller-aeron-office-chair-graphite/p3177252")
content = request.content
soup = BeautifulSoup(content, "html.parser")
element = soup.find("p", "price price--large")
.data
Colin BYTE "Welcome to my Website"
.code
main proc
MOV EDX, Offset Colin
CALL WriteString
main endp