Skip to content

Instantly share code, notes, and snippets.

View alexathylane's full-sized avatar

Alexandria Thylane alexathylane

View GitHub Profile
@alexathylane
alexathylane / Journal3000.swift
Last active August 23, 2023 01:03
A groundbreaking journal app
import Foundation
let fileManager = FileManager.default
let filePathURL = URL(fileURLWithPath: fileManager.currentDirectoryPath)
func safeReadLine(prompt: String) -> String {
print(prompt)
if let input = readLine() {
let sanitizedInput = input.trimmingCharacters(in: .whitespacesAndNewlines)
@alexathylane
alexathylane / iOS Universal Links Support Checklist.md
Last active April 23, 2023 06:44
iOS Universal Links Support Checklist