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 / 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
@martinwoodward
martinwoodward / setup.md
Last active December 3, 2023 17:01
Camera Setup
@bradtraversy
bradtraversy / pipenv_cheat_sheet.md
Last active May 10, 2024 21:24
Pipenv cheat sheet for common commands

Pipenv Cheat Sheet

Install pipenv

pip3 install pipenv

Activate

pipenv shell
@cvergne
cvergne / stringUtils.js
Last active March 3, 2022 20:43
Little javascript method to get initials from a name
String.prototype.getInitials = function(glue){
if (typeof glue == "undefined") {
var glue = true;
}
var initials = this.replace(/[^a-zA-Z- ]/g, "").match(/\b\w/g);
if (glue) {
return initials.join('');
}
@pwalsh
pwalsh / mac-osx-development-environment.rst
Last active February 4, 2020 18:38
A development environment configuration on Mac OS X using Homebrew for package management. The configuration supports web app development in Python and Node. Additionally, there are some dependencies for audio synthesis projects in Python and Clojure.

Mac OS X development environment

Homebrew [ http://brew.sh/ ]

It all begins with Homebrew. This setup uses Homebrew for almost everything, including things your Mac ships with, like Python.

Managing everything in Homebrew lets us use the most up-to-date packages available, and means we are not subject to any customizations, however small, Apple makes to their packaged software.