Learning Library

← Back to Library

Six Simple Projects Using Cursor

Key Points

  • The speaker showcases six community‑built projects using Cursor (a weather app, a video‑search tool, a non‑coder’s Trello clone, a child‑created chatbot, a polished macOS voice‑to‑video app, and a Python AI demo).
  • All of the highlighted examples are relatively simple, prompting the question of whether Cursor can handle larger, more complex applications or extensive codebases.
  • Three hypotheses are offered for the prevalence of simple demos: the 20 k‑token context window may limit how much code the model can reason over at once.
  • Additional possible constraints include the current UX of Cursor that favors quick, single‑file generation rather than long‑term project scaffolding and a lack of community‑shared best practices for scaling up.
  • The speaker suggests that examining these patterns across the ecosystem will help determine Cursor’s strengths, its current limits, and the kinds of tools or improvements needed for more ambitious development tasks.

Full Transcript

# Six Simple Projects Using Cursor **Source:** [https://www.youtube.com/watch?v=I4WzI6eO3RI](https://www.youtube.com/watch?v=I4WzI6eO3RI) **Duration:** 00:05:23 ## Summary - The speaker showcases six community‑built projects using Cursor (a weather app, a video‑search tool, a non‑coder’s Trello clone, a child‑created chatbot, a polished macOS voice‑to‑video app, and a Python AI demo). - All of the highlighted examples are relatively simple, prompting the question of whether Cursor can handle larger, more complex applications or extensive codebases. - Three hypotheses are offered for the prevalence of simple demos: the 20 k‑token context window may limit how much code the model can reason over at once. - Additional possible constraints include the current UX of Cursor that favors quick, single‑file generation rather than long‑term project scaffolding and a lack of community‑shared best practices for scaling up. - The speaker suggests that examining these patterns across the ecosystem will help determine Cursor’s strengths, its current limits, and the kinds of tools or improvements needed for more ambitious development tasks. ## Sections - [00:00:00](https://www.youtube.com/watch?v=I4WzI6eO3RI&t=0s) **Diverse Projects Using Cursor AI** - The speaker reviews six community-built examples—from a simple JavaScript weather app to a video transcript search tool and a non‑coder’s LLM coding journey—to illustrate Cursor’s strengths, limitations, and potential applications. ## Full Transcript
0:00what are people actually building with 0:01the AI Cod assist cursor I found six 0:04different examples I'm going to go 0:06through them briefly here and then I 0:07want to actually step back and ask what 0:10we can learn from looking across the 0:12ecosystem about what cursor is good at 0:14what it's not good at what we haven't 0:15seen yet and I think that will help us 0:18answer some of the larger questions that 0:20come to mind like is cursor good for 0:22complex apps is cursor good for large 0:24code bases things like that so example 0:27number one uh this is from one little 0:30coder I'm going to put all of these in 0:31the YouTube comments uh weather app can 0:34we write a weather app in JavaScript and 0:36get it runnable very simple uh and it's 0:40exactly what it says in the tin can you 0:42basically pull publicly available 0:43weather data turn it into a nice 0:45graphical user 0:46interface uh all about AI the creator 0:50has a YouTube Tech search app it looks 0:53simple but I do appreciate the 0:55functionality here it basically allows 0:58you to pull a video and do a text search 1:01through the video uh because it pulls 1:04all of the transcript down and you can 1:06actually search through and you can get 1:07a time stamp for particular things 1:08you're looking for so if you're going 1:09through and you're trying to understand 1:11like where does this person talk about X 1:13or Y you can just search for the word 1:15and find it really 1:17fast Riley Brown uh is building a 1:21following just talking about his journey 1:24as someone who doesn't code but is 1:26coding using llm so that's his whole 1:28thing and he uh talked about cursor in 1:31the context of building a Trello app 1:34CopyCat um looks pretty simple to me uh 1:37but I will definitely link it in you can 1:39look at 1:41it uh a simple chatbot uh the 1:44interesting thing here uh the Creator 1:46Ricky had uh is teaching his kid to code 1:50and the kid built the chatbot herself 1:53and she's eight uh which as someone with 1:55a kid very impressive my kid has not yet 1:58built a chatbot 2:01um and then Amar who's a designer at 11 2:05Labs took the weekend this past weekend 2:08and built a Mac app fully functional 2:12that's designed to solve for importing 2:14voice into video and that's like he's a 2:16Creator like it makes sense for him to 2:18do that and I was impressed I mean maybe 2:22we shouldn't be surprised he's head of 2:23design it looks gorgeous like it's a 2:25really well-designed app it looks the 2:28most polished of any of these that I've 2:29SC um and then the last one I want to 2:32call out is uh chantastic is writing 2:36about or doing a video on cursor and 2:39python so if you're wondering how does 2:41cursor help you build in Python for AI 2:43use cases there's a video for that too 2:46so those are six different use cases 2:47again I'll link them all 2:49below I want to step back though when 2:52you see the pattern here I think you 2:54won't be surprised when I call out that 2:56most of these are really really simple 2:58use cases and and I have three different 3:01hypotheses for why that might be true 3:04one is the context window the context 3:06window right now is 20,000 tokens on 3:08cursor is it because the context window 3:10is short uh well not short right that's 3:13still dozens of pages but is it short 3:17enough that it's an issue for larger 3:18code bases 3:20maybe is it that it is simple because 3:25people are rushing to production want to 3:26show what they've built there's this 3:28sort of Creator urge to get out there 3:29and show you can push to production and 3:31people aren't really thinking through 3:32more complex use cases yet 3:36maybe is it because the lack of design 3:39thinking leads people to solve really 3:41simple pinpoint problems that are useful 3:44to them but maybe not more fundamental 3:46and may not require a larger build and 3:48that one kind of cuts both ways because 3:50a lot of the advice for MVPs is to build 3:53it simple build for a paino that you 3:55know really well so in a sense cursor 3:57enabling people to act on that general 3:59advice for sort of how you get into 4:00software how you get into building 4:01things that are 4:03useful I'm not sure which it is uh 4:06cursor has ways of handling context 4:08windows that sort of stretch around uh 4:11the 20,000 limit sometimes they don't 4:13really talk about that uh very much I 4:15wasn't able to find out a lot about it 4:16other than that they apparently have 4:17some proprietary methods of doing 4:20so I think the design thinking is 4:23something I'm taking away I think it's 4:25going to be increasingly important if 4:27software costs come down to be really 4:29thoughtful about what you want to build 4:31how you want it to look and why to stand 4:34out and so in that sense I think a Mars 4:36app uh really shows the way that you can 4:40you can build something with an llm even 4:42if you don't know how to code and you 4:43can make it look really nice you can 4:45make it look really polished and that's 4:47going to become increasingly important 4:49in order 4:50to justify the value of your software in 4:53a world where anyone and everyone is 4:55coding up web apps at the drop of a hat 4:58which is the other big take way here 5:00like if an 8-year-old is coding a chat 5:01app software is essentially free for 5:04anyone to produce so all that being said 5:08I'm curious what your take is where what 5:11patterns do you see in this list of use 5:13cases I found are there use cases that I 5:15miss that people are building in how do 5:17you see cursor playing into the larger 5:19llm ecosystem