- 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
This file contains 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 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 |
Apps used: Cursor.so / github copilot chat / Amazon Q / codeium
This file contains 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 SwiftUI | |
import UIKit | |
struct ContentView: View { | |
@State private var isLocked = false | |
@State private var isSheetVisible = false | |
var body: some View { | |
LockableView(isLocked: isLocked) { |
This file contains 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 Foundation | |
import CoreData | |
extension MyCoredataObject { | |
@nonobjc public class func createFetchRequest() -> NSFetchRequest<MyCoredataObject> { | |
return NSFetchRequest<MyCoredataObject>(entityName: "MyCoredataObject") | |
} | |
@NSManaged public var sortId: Int64 |
NewerOlder