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 ComposableArchitecture | |
/* | |
Hey Point-Free Community 👋, | |
Please share your experience, perspectives and opinions to help us gain | |
insight and visibility on how TCA and other Point-Free libraries are being | |
used. We're looking forward to learning more about who the community is and | |
sharing how these libraries fit in your tech-stack. |
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 SwiftUI | |
import Foundation | |
import CoreGraphics | |
import AVFoundation | |
import VideoToolbox | |
import ComposableArchitecture | |
struct ContentView: View { | |
let store: Store<CameraState, CameraAction> | |
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
// | |
// ContentView.swift | |
// Aiden-1 | |
// | |
// Created by Peter Larson on 7/23/20. | |
// Copyright © 2020 Peter Larson. All rights reserved. | |
// | |
import SwiftUI |
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
// | |
// SwiftUIViewDemo.swift | |
// | |
// Created by Peter Larson on 5/25/20. | |
// Copyright © 2020 Peter Larson. All rights reserved. | |
// | |
import SwiftUI | |
import SwiftUIPager |
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 UIKit | |
// Bug Recreation Playground | |
// Peter Larson | |
// Util | |
extension UIColor { | |
func lighter(by percentage: CGFloat = 25.0) -> UIColor { | |
return self.adjust(by: abs(percentage) ) ?? self |
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 UIKit | |
// Bug Recreation Playground | |
// Peter Larson | |
// Util | |
extension UIColor { | |
func lighter(by percentage: CGFloat = 25.0) -> UIColor { | |
return self.adjust(by: abs(percentage) ) ?? self |
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
package com.wowserman; | |
import java.lang.ref.WeakReference; | |
import java.util.function.Consumer; | |
import org.bukkit.plugin.Plugin; | |
import org.bukkit.scheduler.BukkitRunnable; | |
/** | |
* Tasky.java |
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
# Jobs configuration. | |
# | |
# Stores information about each job. | |
# | |
# For example configurations, visit http://dev.bukkit.org/server-mods/jobs/. | |
# | |
# Configuration settings designed by Wowserman. | |
# | |
Jobs: |