Skip to content

Instantly share code, notes, and snippets.

View LadyKerr's full-sized avatar
:octocat:

Kedasha Kerr LadyKerr

:octocat:
View GitHub Profile
import os
from google import genai
from google.genai import types
client = genai.Client(api_key=os.getenv("GEMINI_API_KEY","xxx"))
# Repalce with the youtube url you want to analyze
youtube_url = "https://www.youtube.com/watch?v=RDOMKIw1aF4"
# Prompt to analyze and summarize the Youtube Video
@jlia0
jlia0 / agent loop
Last active July 10, 2025 12:03
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@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 June 30, 2025 02:39
Pipenv cheat sheet for common commands

Pipenv Cheat Sheet

Install pipenv

pip3 install pipenv

Activate

pipenv shell
@cvergne
cvergne / stringUtils.js
Last active November 26, 2024 12:46
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.