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
// | |
// ARCView.swift | |
// ARMotion | |
// | |
// Created on 9/2/20. | |
// | |
import SwiftUI | |
import Lottie |
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
// | |
// ViewController.swift | |
// ARMotion | |
// | |
// Created on 9/2/20. | |
// | |
// Give Credit to Sarang Borude @sarangborude | |
import UIKit | |
import SceneKit |
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
SignInWithAppleButton( | |
// Request User FullName and Email | |
onRequest: { request in | |
// You can change them if needed. | |
request.requestedScopes = [.fullName, .email] | |
}, | |
// Once user complete, get result | |
onCompletion: { result in | |
// Switch result | |
switch result { |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"> | |
<title>Dark Mode Test</title> | |
<meta name="color-scheme" content="light dark"> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.0/css/all.css"> |
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
@media (prefers-color-scheme: dark) { | |
body { | |
background-color: #000; | |
color: white; | |
} | |
} |
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
import { Dalle } from "dalle-node" | |
export default async function handler(req, res) { | |
const dalle = new Dalle(req.query.k); | |
const generations = await dalle.generate(req.query.q); | |
res.status(200).json({ result: generations }) | |
} |
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
function getDalle2() { | |
setError(false); | |
setLoading(true); | |
fetch(`/api/dalle2?k=${token}&q=${query}`, { | |
method: "POST", | |
headers: { | |
"Content-Type": "application/json", | |
}, | |
}) | |
.then((res) => res.json()) |
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
func startDeliveryPizza() { | |
let pizzaDeliveryAttributes = PizzaDeliveryAttributes(numberOfPizzas: 1, totalAmount:"$99") | |
let initialContentState = PizzaDeliveryAttributes.PizzaDeliveryStatus(driverName: "TIM 👨🏻🍳", estimatedDeliveryTime: Date().addingTimeInterval(15 * 60)) | |
do { | |
let deliveryActivity = try Activity<PizzaDeliveryAttributes>.request( | |
attributes: pizzaDeliveryAttributes, | |
contentState: initialContentState, | |
pushType: nil) |
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
import ActivityKit | |
import WidgetKit | |
import SwiftUI | |
@main | |
struct Widgets: WidgetBundle { | |
var body: some Widget { | |
PizzaDeliveryActivityWidget() | |
} | |
} |
OlderNewer