Skip to content

Instantly share code, notes, and snippets.

View LadyKerr's full-sized avatar
:octocat:

Kedasha Kerr LadyKerr

:octocat:
View GitHub Profile
@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
*