View Find-Objects-Dogs.text
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Chihuahua | |
Japanese spaniel | |
Maltese dog, Maltese terrier, Maltese | |
Pekinese, Pekingese, Peke | |
Shih-Tzu | |
Blenheim spaniel | |
papillon | |
toy terrier | |
Rhodesian ridgeback | |
Afghan hound, Afghan |
View SegmentedProgress.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct ContentView: View { | |
var numberOfSegments = 4 | |
@State var currentSegment: Int? | |
@State var autoIncrementing = false | |
var period = CGFloat(0.8) | |
var body: some View { | |
VStack { | |
Text("Progress") | |
.bold() |
View VisualEffectView.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Use UIKit blurs in SwiftUI. | |
struct VisualEffectView: UIViewRepresentable { | |
/// The blur's style. | |
public var style: UIBlurEffect.Style | |
/// Use UIKit blurs in SwiftUI. | |
public init(_ style: UIBlurEffect.Style) { | |
self.style = style | |
} |
View Tip.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// PhotosVC+Tips.swift | |
// Find-3 | |
// | |
// Created by A. Zheng (github.com/aheze) on 10/4/22. | |
// Copyright © 2022 A. Zheng. All rights reserved. | |
// | |
import Popovers | |
import SwiftUI |
View Pulse.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct ContentView: View { | |
static let fadeInDuration = CGFloat(1.1) | |
static let pulseDuration = CGFloat(1.6) | |
static let fadeOutDuration = CGFloat(0.3) | |
static let interval = CGFloat(1.6) | |
@State var isAnimating = false | |
@State var timer = Timer.publish(every: interval, on: .main, in: .common).autoconnect() | |
@State var circlesIDs = [UUID()] |
View starcounter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Paste this into your terminal: | |
curl https://gist.githubusercontent.com/aheze/8e7910c3b48e383bae07d27d4fb9cf57/raw/e5242c41703572936e93fee691e37d23903c9824/starcounter.js -sSL | node - aheze -t 10 |
View starcounter.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var https = require('https'), | |
user = process.argv[2], | |
opts = parseOpts(process.argv.slice(3)) | |
request('/users/' + user, function (res) { | |
if (!res.public_repos) { | |
console.log(res.message) | |
return | |
} | |
var pages = Math.ceil(res.public_repos / 100), |
View SizeReader.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public extension View { | |
/** | |
Read a view's size. The closure is called whenever the size itself changes, or the transaction changes (in the event of a screen rotation.) | |
From https://stackoverflow.com/a/66822461/14351818 | |
*/ | |
func sizeReader(size: @escaping (CGSize) -> Void) -> some View { | |
return background( | |
GeometryReader { geometry in | |
Color.clear | |
.preference(key: ContentSizeReaderPreferenceKey.self, value: geometry.size) |
NewerOlder