Skip to content

Instantly share code, notes, and snippets.

View LadyKerr's full-sized avatar
:octocat:

Kedasha Kerr LadyKerr

:octocat:
View GitHub Profile

Problem: I need to convert blog posts to markdown format. Would love to do this by submitting a url to a post online via command line.

BlogMark MVP

Build a Node.js CLI tool called "blogmark" that converts web blog posts to markdown files with frontmatter.

Requirements:

Core Functionality:

@LadyKerr
LadyKerr / pomodoro.md
Last active April 15, 2025 13:20
a guide for beginners to build with Copilot

Build a Pomodoro Timer with GitHub Copilot - Beginner Guide

A Pomodoro Timer is a productivity tool designed to help you focus on tasks by breaking them into small, manageable chunks. Think of it as a timer that alternates between "work" sessions and "rest" sessions.

Here's how it works:

  • Work Session (Pomodoro): Set a timer for 25 minutes. During this time, focus on one task without any distractions.
  • Rest Session: Once the timer rings, take a short 5-minute break to recharge.
  • Repeat: After completing four work sessions, take a longer break (15-30 minutes) before starting again.
@LadyKerr
LadyKerr / landing_page_prd.md
Last active March 27, 2025 19:20
an mvp prd for a developer course landing page generated with GitHub Copilot on dotcom

Prompt: "describe a landing page for developers in simple mvp terms"

A developer landing page is a dedicated webpage designed to attract, engage, and inform developers about a specific product, service, or tool. Here’s a simple MVP (Minimum Viable Product) breakdown:

MVP Features:

  1. Headline:

    • A clear and concise headline that immediately communicates the value proposition to developers.
  2. Subheadline:

  • A brief explanation or tagline that provides more context to the headline.
@LadyKerr
LadyKerr / tsv_to_csv.py
Created August 23, 2023 02:11
Convert TSV to CSV with Python - code generated by GitHub Copilot
import csv
with open('ruby-study-guide.tsv', 'r') as tsvfile:
reader = csv.reader(tsvfile, delimiter='\t')
with open('ruby-study-guide.csv', 'w') as csvfile:
writer = csv.writer(csvfile)
for row in reader:
writer.writerow(row)
@LadyKerr
LadyKerr / junettenthconf.md
Created July 23, 2023 15:20
Copilot Demo Instructions
@LadyKerr
LadyKerr / rubystudy.md
Last active July 20, 2023 02:56
Six week Ruby study Guide ♦️

Study Schedule

Week 1: July 20 - July 26, 2023

Objective: Get familiar with Ruby basics

Weekdays (2 hours/day for 3 days)

  • July 20: Introduction to Ruby, Installation, and Setup
  • July 22: Basics: Variables, Data Types
  • July 24: Control Flow: Conditionals
@LadyKerr
LadyKerr / sample.md
Created August 19, 2019 14:46 — forked from bradtraversy/sample.md
Markdown Cheat Sheet

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

This text is italic

@LadyKerr
LadyKerr / gravityview-trigger-gform_after_submission-form-12.php
Last active March 7, 2019 00:34 — forked from zackkatz/gravityview-trigger-gform_after_submission-form-12.php
GravityView - Trigger the `gform_after_submission` action when an entry is edited, but ONLY for Form #12.
<?php
/**
* GravityView doesn't trigger the `gform_after_submission` action when editing entries. This does that,
* but ONLY FOR FORM #20.
*
* @param array $form
* @param int $entry_id ID of the entry being updated
* @param GravityView_Edit_Entry_Render $object
*