Skip to content

Instantly share code, notes, and snippets.

View marcusziade's full-sized avatar
🦾
Coding fiercely

Marcus Ziadé marcusziade

🦾
Coding fiercely
View GitHub Profile
@sgup
sgup / recommended-routine.md
Last active March 5, 2025 14:22
Recommended Routine - Reddit BodyweightFitness
@Koshimizu-Takehito
Koshimizu-Takehito / Spiral.swift
Created December 31, 2024 06:08
アルキメデスのらせん
import SwiftUI
struct ContentView: View {
@State var start = Date()
var body: some View {
TimelineView(.animation) { context in
let time = context.date.timeIntervalSince(start) / 120
let rotation = 0.8 + 0.2 * abs((cos(.pi * time) + 1.0) / 2.0)
Canvas { context, size in