This is a summary of video content on Y Combinator Startup School, available on YouTube.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # deep_research.rb | |
| require 'openai' | |
| require 'json' | |
| require 'net/http' | |
| require 'uri' | |
| require 'timeout' | |
| require 'time' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "openai" | |
| # Initialise the OpenAI client | |
| client = OpenAI::Client.new(access_token: ENV["OPENAI_API_KEY"]) | |
| # Helper method to call the API with a given model and prompt. | |
| def call_llm(client, model:, prompt:, temperature: 0.7) | |
| response = client.chat( | |
| parameters: { | |
| model: model, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| query { | |
| publications(first: 10) { | |
| edges { | |
| node { | |
| id | |
| name | |
| } | |
| } | |
| } | |
| } |
-
Kick-Off Questions
- Purpose: Break the ice, understand the interviewee’s background and how they arrived in their current role.
- Example: “Can you tell us a little about yourself and your organisation?”
-
Organisation Structure
- Purpose: Understand the size and scope of the company.
- Example: “How many people in your company?” / “How many cattle do you manage?”
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import os | |
| import time | |
| device_id = None | |
| temperature = None | |
| i = 0 | |
| delay = 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import machine | |
| led = machine.Pin("LED", machine.Pin.OUT) | |
| led.off() | |
| led.on() |
These are my notes from Alex Hormozi's videos (in the form of a quick guide).
This guide consolidates all hints, tips, statistics, and rules of thumb into a single coherent roadmap. It covers sales best practices, mindset, marketing fundamentals, operational strategies, and more—without repeating the same points multiple times. All spelling follows en-AU conventions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function profile() { | |
| /usr/local/bin/zed -w ~/.zshrc | |
| if [[ $? -eq 0 ]]; then | |
| echo 'Sourcing ~/.zshrc...' | |
| source ~/.zshrc | |
| echo '~/.zshrc updated and sourced successfully!' | |
| else | |
| echo 'Failed to edit ~/.zshrc.' | |
| fi | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # frozen_string_literal: true | |
| # This script downloads the English auto-generated subtitles for a YouTube video, | |
| # converts them to a single text block, and sends them to OpenAI for summarization. | |
| # Requirements: | |
| # - yt-dlp (brew install yt-dlp) | |
| # - OpenAI Ruby gem (gem install 'ruby-openai') | |
| # - An OpenAI API key set as an environment variable (export OPENAI_API_KEY=your-api-key) |