Skip to content

Instantly share code, notes, and snippets.

View reddytocode's full-sized avatar
🤓
Coding

ReddyTintaya reddytocode

🤓
Coding
View GitHub Profile
// The SwiftUI Lab
// Website: https://swiftui-lab.com
// Article: https://swiftui-lab.com/alignment-guides
import SwiftUI
class Model: ObservableObject {
@Published var minimumContainer = true
@Published var extendedTouchBar = false
@Published var twoPhases = true
@reddytocode
reddytocode / bash_curl_loop
Created November 4, 2019 21:03 — forked from ceme/bash_curl_loop
bash curl loop
while true; do sleep 1; curl http://www.google.com; echo -e '\n\n\n\n'$(date);done