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 | |
// AccessibilityColorPicker | |
// | |
// Created by Xcode Developer on 4/25/24. | |
// | |
import SwiftUI | |
import UIKit | |
import Observation |
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 requests | |
from bs4 import BeautifulSoup | |
import json | |
def fetch_posts(url, visited_urls, base_url, file): | |
if url in visited_urls: | |
return | |
print(f"Visiting {url}") | |
visited_urls.add(url) |
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 SwiftUI | |
import UIKit | |
struct CustomUISlider: UIViewRepresentable { | |
@Binding var value: Double | |
var range: ClosedRange<Double> | |
func makeUIView(context: Context) -> UISlider { | |
let slider = UISlider(frame: .zero) | |
slider.minimumTrackTintColor = UIColor.clear |
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
.fileImporter(isPresented: $isImporting, allowedContentTypes: [.plainText], allowsMultipleSelection: false) { result in | |
switch result { | |
case .success(let urls): | |
guard let url = urls.first else { return } | |
do { | |
// Ensure you have access to the resource | |
guard url.startAccessingSecurityScopedResource() else { | |
print("Access to the file was denied.") | |
return | |
} |
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 SwiftUI | |
import UniformTypeIdentifiers | |
struct MyStruct: Codable, Identifiable { | |
let id: Int | |
var name: String | |
} | |
struct ContentView: View { | |
@State private var structs = [MyStruct]() |
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
struct Assistant: Codable { | |
let id: String | |
} | |
func getAssistant(globalData: GlobalData) { | |
let url = URL(string: "https://api.openai.com/v1/assistants")! | |
var request = URLRequest(url: url) | |
request.httpMethod = "POST" | |
request.addValue("application/json", forHTTPHeaderField: "Content-Type") |
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 necessary libraries | |
from openai import OpenAI | |
import os | |
import time | |
# Storing OPENAI API KEY in an environment variable | |
os.environ["OPENAI_API_KEY"] = "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" | |
# Creating the OpenAI client by providing the API KEY | |
client = OpenAI(api_key=os.environ['OPENAI_API_KEY']) |
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 | |
// URLSessionTest | |
// | |
// Created by Xcode Developer on 11/20/23. | |
// | |
import UIKit | |
import Foundation |
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 makeIncrementerWithReset(maximumValue: Int) -> ((Int) -> [Int]) { | |
var counter = 0 | |
let counter_max = maximumValue | |
func incrementCounter(count: Int) -> [Int] { | |
var numbersArray = [Int](repeating: 0, count: count) | |
for index in (0 ..< count) { | |
let value = ((counter_max ^ 0) ^ (counter ^ counter_max)) | |
numbersArray[index] = value | |
counter = (-(~(value))) |
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 os | |
import re | |
import sys | |
from docx import Document | |
from openai import OpenAI | |
# import OpenAI | |
try: | |
client = OpenAI(api_key=os.environ.get("OPENAI_API_KEY")) |