This is a summary of video content on Y Combinator Startup School, available on YouTube.
-
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) |
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
<%# A partial that can be placed anywhere to utilise the Real-time API (with WebRTC) %> | |
<div data-controller="webrtc" class="bg-gray-600 rounded-full text-white mb-4 "> | |
<audio data-webrtc-target="audio"></audio> | |
<button data-webrtc-target="toggle" data-action="click->webrtc#toggleAudio" class="relative flex items-center justify-center w-full font-medium min-w-[150px] min-h-[40px]"> | |
<div class="w-full text-center" data-button-text>Enable Audio Chat</div> | |
<div data-webrtc-target="spinner" class="hidden absolute"> | |
<svg class="animate-spin h-5 w-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"> | |
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle> | |
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path> |
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
#!/bin/bash | |
DEFAULT_PIHOLE_IP="localhost" | |
DEFAULT_LIMIT=10 | |
show_help() { | |
echo "Usage: $0 [-i ip_address] [-t token] [-n number] [-c client] [-d domain]" | |
echo " -i: IP address of Pi-hole server (default: localhost)" | |
echo " -t: API token (required)" | |
echo " -n: Number of queries to show (default: 10)" |
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
#!/bin/bash | |
DEFAULT_PIHOLE_IP="localhost" | |
show_help() { | |
echo "Usage: $0 [-i ip_address] [-t token] [-a domain|-r domain|-l]" | |
echo " -i: IP address of Pi-hole server (default: localhost)" | |
echo " -t: API token (required)" | |
echo " -a: Add domain to blocklist" | |
echo " -r: Remove domain from blocklist" |