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
// | |
// ContentView.swift | |
// SelfieADay | |
// | |
// Created by Justin Allen on 6/11/24. | |
// | |
// https://developer.apple.com/tutorials/sample-apps/capturingphotos-camerapreview | |
import SwiftUI |
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 { | |
func aspectRatioControlled(_ ratio: CGFloat) -> some View { | |
modifier(AspectRatioModifier(aspectRatio: ratio)) | |
} | |
} | |
// https://gist.github.com/Priva28/53abcdef7de6633d776cb169c96ce014 | |
struct AspectRatioModifier: ViewModifier { | |
var aspectRatio: CGFloat | |
@State private var setSize: CGSize? |
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
// | |
// TestMoney.swift | |
// FormButtonTest | |
// | |
// Created by Justin Allen on 10/10/22. | |
// | |
import SwiftUI | |
extension String { |
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
// | |
// ContentView.swift | |
// SampleIconChanger | |
// | |
// Created by Justin Allen on 10/5/22. | |
// | |
import SwiftUI | |
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
/// npx ts-node src/foo.ts | |
// npm install -g ts-node typescript '@types/node' | |
// ts-node typescript-file.ts | |
import express from 'express'; | |
import bodyParser from 'body-parser'; | |
import mongoose, {ConnectOptions} from 'mongoose'; | |
const app = express(); |
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
const LocalStorageCartKey = "CartList"; | |
const getCartFromLocalStorage = () => { | |
try { | |
let items = JSON.parse(localStorage.getItem(LocalStorageCartKey)); | |
if (items === null || items === undefined) | |
{ | |
return []; | |
} | |
return items; | |
} catch (e) { |
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
class ToggleSwitch extends HTMLElement { | |
currentR = 0; | |
currentG = 0; | |
currentB = 0; | |
lerp (start, end, amt){ | |
return (1-amt)*start+amt*end; | |
} | |
createCapsule(ctx, point1, point2, radius){ |
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
customElements.define('toggle-switch', class extends HTMLElement { | |
lerp (start, end, amt){ | |
return (1-amt)*start+amt*end; | |
} | |
currentX = 0; | |
value = true; |
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
// | |
// ConstraintUtils.swift | |
// | |
// Created by Justin Allen on 8/15/19. | |
// Updated on 1/30/20 | |
// Copyright © 2019 Justin Allen. All rights reserved. | |
// | |
import UIKit |
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
// | |
// AdView.swift | |
// pdfsRebooks | |
// | |
// Created by Justin Allen on 1/17/20. | |
// Copyright © 2020 Justin Allen. All rights reserved. | |
// | |
/* | |
NewerOlder