- Grep the codebase for the export name (check for dynamic imports, string refs, config files)[1][2]
- Only remove the
exportkeyword - never delete the actual code (⚠️ ️ DO NOT REMOVE ANY CODE, ONLY export word. EXTREMLY IMPORTANT⚠️ ️) - If unsure, skip it and move to the next one
Git worktrees and Git branches are related but fundamentally different in how they let you interact with your code. Both are part of Git, but they solve different workflow challenges.[2][5]
Branches are Git's way of diverging from the main line of development to work on different features or fixes. In standard Git branching, you work in a single working directory and switch between branches using commands like git checkout or git switch. When you switch branches, Git updates the files in your current directory to match the branch you're switching to. This means you need to either commit or stash your work-in-progress changes before switching, which can disrupt your workflow.[1][5][2]
Git worktrees allow you to check out multiple branches from the same repository simultaneously, each in its own separate working directory. Instead of switching branches by changing what's checked out in one directory, you switch branches by literally moving between different d
Open design format is a declarative design system that uses JSX-like syntax to create responsive layouts and UI components, specifically designed for Figma integration. Based on the Figma Widget API, it provides a comprehensive set of components for building sophisticated user interfaces with automatic layout management, styling, and effects.
Open design format enables designers and developers to create UI components using a JSON-based JSX format that maps directly to Figma's widget system. It supports real-time design collaboration through a WebSocket-based communication layer between AI agents and Figma via the Model Context Protocol (MCP).
- Startups cannibalising their own tech stack with AI: https://notebooklm.google.com/notebook/a4c858b0-0989-4dfb-b4d8-b017b261b3a6/audio
- Podcast on the lindy effect: https://notebooklm.google.com/notebook/b1b43d20-ed44-4e84-9d53-41bd518621ea/audio
- Can Instagrammable Office design Make Employees love coming to the office? https://notebooklm.google.com/notebook/c75b8644-aea8-475f-95c8-b0021fb1411e/audio
- 👨💻 programmer (cursor ai/replit/claude 3.5)
- 🎨 designer (v0/playground/galileo ai)
- ✍️ copywriter (jenni ai/copy ai/anyword)
- 📋 product manager (productboard/aha!/airfocus)
- 🧲 lead magnet machine (gamma ai/mailerlite/systeme io)
- 🎥 faceless video producer (revid/pictory/vidyo ai)
Index:
Table of Contents
| import json | |
| import urllib.request | |
| import ssl | |
| username = input("Enter your GitHub username: ") | |
| url = f"https://api.github.com/users/{username}/events" | |
| context = ssl.create_default_context() | |
| context.check_hostname = False | |
| context.verify_mode = ssl.CERT_NONE |