hanfr# Testing Twig
- It's
- Really cool!
substitutions: | |
name: esphome-web-45eef0 | |
friendly_name: Lily | |
esphome: | |
name: ${name} | |
friendly_name: ${friendly_name} | |
min_version: 2024.6.0 | |
name_add_mac_suffix: false | |
platformio_options: |
hanfr# Testing Twig
hanfr# Testing Twig
hanfr# Testing Twig
hanfr# Testing Twig
The first featured link is "Touch ID and Face ID on iOS" by Michael Brown. In my last 2 freelance projects I've been implementing TouchID and FaceID and it is so easy! Michael shows us his abstraction called BiometricAuth, making the implementation nicer and easier to track all states of authentication.
The second featured link is "Best iOS hacks from Twitter: March & April Edition", by Lisa Dziuba. Our friends at Flawless release this series every month and there's always something new to learn. My favorite one is how to open a file in a certain line using the Quick Open dialog.
Wanna see your library here? [Send us an email!](mailto:lucas.fara
extension UIColor { | |
func lighter(by percentage:CGFloat=30.0) -> UIColor? { | |
return self.adjust(by: abs(percentage) ) | |
} | |
func darker(by percentage:CGFloat=30.0) -> UIColor? { | |
return self.adjust(by: -1 * abs(percentage) ) | |
} | |
/* | |
See LICENSE folder for this sample’s licensing information. | |
Abstract: | |
Wrapper SceneKit node for virtual objects placed into the AR scene. | |
*/ | |
import Foundation | |
import SceneKit | |
import ARKit |