If the AI consistently goes tries to go in a direction that I know is a dead-end, I'll update the overall project prompt to better steer it for future prompts. I'm starting to see the future of software development and I kind of like it?
10.08.2025 21:42 β π 0 π 0 π¬ 0 π 0
If I find a certain section that I don't understand, I'll pepper GPT-5 with specific questions to get a better sense.
10.08.2025 21:41 β π 0 π 0 π¬ 1 π 0
So I'm currently vibe coding a new PDF Viewer for Tutti that is built on top of the PDFKit utility classes. GPT-5 is so far doing really well. I've started to settle into a flow: Vibe code a small piece of functionality, and then review the code to find ways to simplify and reduce complexity.
10.08.2025 21:41 β π 2 π 0 π¬ 1 π 0
GPT-5 was super impressive this morning and now around lunch time EST it's acting more like GPT-3 and the website is barely responsive. Guessing there is huge demand with the new model being released. Anyone else experiencing the same?
09.08.2025 15:09 β π 0 π 0 π¬ 0 π 0
This is so epic π
25.07.2025 01:27 β π 1 π 0 π¬ 0 π 0
struct BottomView: View {
@State private var isVisible = false
var body: some View {
VStack {
Button("Show / Hide") {
withAnimation(.bouncy) {
isVisible.toggle()
}
}
}
.frame(maxHeight: .infinity, alignment: .top)
.safeAreaInset(edge: .bottom) {
if isVisible {
RoundedRectangle(cornerRadius: 16)
.fill(.pink)
.padding(.horizontal, 20)
.padding(.bottom, 20)
.frame(height: 100)
.transition(.move(edge: .bottom))
.padding(.top, 40)
}
}
}
}
I usually have to play around with the padding in order to get around this issue. Try something like this.. breaking up the padding before the transition and add back some top padding after the transition. This seems to have worked for me.
04.07.2025 20:23 β π 2 π 0 π¬ 1 π 0
Tutti v3.0 is now available on the app store!
I've been working really hard on this update. So happy it's finally out in the world! It includes:
- A new split-view design
- Dark mode support across the app
- A new onboarding experience
- lots of smaller tweaks, animations, and bug fixes
27.06.2025 12:29 β π 3 π 0 π¬ 0 π 0
oooh... thats a great idea. I may try something similar for Tutti.
16.06.2025 19:34 β π 1 π 0 π¬ 0 π 0
struct DrawAnimationView: View {
var isShowing: Bool
var icon: String
var color: any ShapeStyle
var drawOnEffect: DrawOnSymbolEffect = .drawOn
var speed: Double = 1.0
var body: some View {
VStack(spacing: 24) {
Image(systemName: icon)
.font(.system(size: 400))
.imageScale(.large)
.foregroundStyle(AnyShapeStyle(color))
.symbolEffect(drawOnEffect,
options: .speed(speed),
isActive: isShowing)
}
}
}
And now the code! This is the code I used to make all of these examples. Pass in the color, icon string, effect, and speed:
16.06.2025 17:11 β π 5 π 0 π¬ 0 π 0
Be creative. You can mix this effect with other features of SwiftUI to create wonderful experiences for your users.
16.06.2025 17:11 β π 0 π 0 π¬ 1 π 0
This effect is flexible! For example, you can tell the effect to draw each layer individually by applying the symbol effect like this: .symbolEffect(.drawOn.individually,
isActive: isShowing)
16.06.2025 17:11 β π 3 π 0 π¬ 1 π 0
Another great example: "scribble.variable" with a .green.gradient foregroundStyle. Showcasing another new addition to iOS 26. Gradient foregroundStyles on symbols!
16.06.2025 17:11 β π 0 π 0 π¬ 1 π 0
The "signature" SFSymbol showcases this effect so well.
16.06.2025 17:11 β π 1 π 0 π¬ 1 π 0
New in SFSymbols for iOS 26, Draw effects!!
Five beautiful examples.. stay till the end for the code sample.
First up, "rainbow" with .symbolRenderingMode(.multicolor). Symmetrical symbols draw outward from the center.
16.06.2025 17:11 β π 26 π 4 π¬ 2 π 0
looks sooo good π
15.06.2025 02:48 β π 1 π 0 π¬ 1 π 0
Working on my first experiment with AFM: picking an initial icon when saving a food, recipe or meal as a favorite. Works quite well!
12.06.2025 15:51 β π 16 π 1 π¬ 3 π 0
oooh thatβs a great idea π‘
12.06.2025 16:26 β π 1 π 0 π¬ 0 π 0
it was so great meeting you!
12.06.2025 03:20 β π 1 π 0 π¬ 1 π 0
see you there!
03.06.2025 16:07 β π 1 π 0 π¬ 0 π 0
Yes! I love them. Started listening during the Do Hollywood / Go to School days πΆ π π΅
24.05.2025 01:36 β π 0 π 0 π¬ 0 π 0
My prediction:
A small circular or rounded rectangle device with a touch screen on both sides. It will feed video/audio context about your life to your OpenAI profile
Easily attach or detach from magnetized clip accessories from your shirt, necklace or wrist. (or slip into pocket)
22.05.2025 15:19 β π 0 π 0 π¬ 0 π 0
I think we are finally gonna meet IRL next month! π€©
21.05.2025 12:20 β π 0 π 0 π¬ 0 π 0
Tutti's onboarding flow is coming along nicely! I'm noticing that I really enjoy animating SF Symbols.. Should I animate all of them? π€©
14.05.2025 14:13 β π 4 π 0 π¬ 0 π 0
oooh i love this. This is just what I need.. currently working on my appβs onboarding.
12.05.2025 23:45 β π 0 π 0 π¬ 0 π 0
CommunityKit Β· Luma
If you're in town for WWDC25, you're welcome at CommunityKit β we'll be hosting meetups, workshops, hackathons, and more, so that everyone can come and meetβ¦
Happy Friday! Donβt forget to sign up for your free #CommunityKit ticket!
Weβve partnered with some of our friends, and your ticket gives you a chance to win the ultimate #WWDC25 ticket package!
30 people can get an all inclusive ticket to other community events, details below
1/2
lu.ma/fhswia1a
09.05.2025 19:34 β π 10 π 5 π¬ 1 π 3
love that concept! Congrats on the launch!
08.05.2025 15:28 β π 2 π 0 π¬ 1 π 0
love that sticker! π¦
04.05.2025 14:51 β π 1 π 0 π¬ 1 π 0
CommunityKit Β· Luma
If you're in town for WWDC25, you're welcome at CommunityKit β we'll be hosting meetups, workshops, hackathons, and more, so that everyone can come and meetβ¦
Catβs out of the bag! π» Join us at #CommunityKit during #WWDC25 for meetups, workshops, and more! Connect with fellow developers in Cupertino.
More details are available now - Get your ticket! ποΈ
lu.ma/fhswia1a
02.05.2025 18:08 β π 7 π 6 π¬ 0 π 5
Kodeco β’ Apparent Software β’ aspiring indie dev
Apple fangirl going way, way back
πLas Vegas, NV
πSalem, OR
Launched Google Maps iOS
β 10yrs Google design leadership for Apple platforms, then left Google
β Now building a startup for people who use cars
Chiptune and Retro synth hardware / software designer. Mixed media musician. Homebrew Gameboy publisher and owner of hobbychop.etsy.com.
Chiptune Anamnesis Discord: https://discord.gg/N9dS3KpdjG
YouTube: https://www.youtube.com/@Chiptune-Anamnesis.
Co-Founder of AudioKit Pro:
https://audiokitpro.com
Fun Music apps for your iPhone, iPad!
Hello! I am a iOS / MacOS Developer by day.
My Hobbies/Interests Include: Video/Tabletop Games, Guitar, Movies/TV Shows, Reading, Comics, Sci-Fi, Fantasy, Comics (really most forms of storytelling), Football (Green Bag Packers Fan).
Nice to meet you!
i make queuekeeper, a media backlog management app for your iPhone
https://apps.apple.com/us/app/queuekeeper-media-tracker/id6737788937
ο£Ώ Localization Software Engineer
#Ottawa π¨π¦ β #SanFrancisco πΊπΈ
#computers by day, #piano by night
I am the proud founder and president of @mcrich. I do fun stuff in my daily life as a Gen Z teen, and make films, and apps. A producer of @cctalkspodcast.
Husband β’ Father of π¦π§ β’ UI Designer β’ Swift/React Dev
I create delightful experiences for the web and Apple devices.
Building π CodeEdit
Indie dev of @museapp.bsky.social at museapp.com. flexibits.com alum. Also, maker of askmeevery.com, and getlooseleaf.com - the gesture driven notes app. Startup mentor, NSF I-Corps instructor. Adjunct instructor at Rice University.
Swift dependent iOS Developer. Vapor. ATprotocol. I can wrangle an A320 or if I must a 737. Maker of The Midst: https://apps.apple.com/us/app/the-midst/id6593661633
Professor of Marketing at NYU Stern School of Business, serial entrepreneur, and host of the Prof G and Pivot Podcasts.
Indie app developer (Apple platforms) from Paris, France π«π·
Engineer, geek, triathlete. @vapor.codes core team. Founder @brokenhands.io. Server-side Swift. Organiser @serversideswift.info @nsmanchester.org He/him
3D Artist, Filmmaker,VFX @ SNL
dannybehar.com
I build apps like @mercuryweather.app and Orbit together with @kaidombrowski.com. Also organizing Core Coffee meetups, chatting on podcasts, and giving talks now and then.
Non-profit dedicated to preserving, celebrating, and teaching the history of video games. Our free digital archive is now open to the public! http://archive.gamehistory.org