go run /usr/local/share/llhlstools/ll-hls-origin-example.go -dir /Library/WebServer/Documents -http :8000
This file contains hidden or 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
| //In your view, declare a UIViewRepresentable as a UIButton type as seen below. | |
| //This is important as you cannot do it as a UIBarButtonItem (at least as I've found in Xcode 12 beta 2). | |
| struct MenuButtonView: UIViewRepresentable { | |
| typealias UIViewType = UIButton | |
| let saveAction = UIAction(title: "") { action in } | |
| let saveMenu = UIMenu(title: "", children: [ |
This file contains hidden or 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
| import Foundation | |
| import MLCompute | |
| import PlaygroundSupport | |
| let iPage = PlaygroundPage.current | |
| iPage.needsIndefiniteExecution = true | |
| /* | |
| * Apple says MLCMatMulLayer does a ``batch matrix multiplication'' | |
| * but didn't make clear its meaning. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| // | |
| // ViewController.swift | |
| // UIGlassContainerEffect-Demo | |
| // | |
| // Created by Seb Vidal on 04/11/2025. | |
| // | |
| import UIKit | |
| import MapKit |
OlderNewer