This file has been truncated, but you can view the full file.
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
{ | |
"adult": false, | |
"backdrop_path": "/mRGmNnh6pBAGGp6fMBMwI8iTBUO.jpg", | |
"belongs_to_collection": { | |
"id": 968052, | |
"name": "The Nun Collection", | |
"poster_path": "/d998jmbM0AQ9Ad138Mz0N9CdnOU.jpg", | |
"backdrop_path": "/bKpqH9y3SjovMM3VqzezBbJtuf7.jpg" | |
}, | |
"budget": 38500000, |
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
class BUS { | |
var cpu: CPU! | |
var rom: UnsafeMutablePointer<UInt8>! = nil | |
init() { | |
self.cpu = CPU(bus: self) | |
do { | |
var data = try Data(contentsOf: Bundle.main.url(forResource: "SCPH9002", withExtension: "BIN")!) |
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
# | |
# main.py | |
# GitPyBackup | |
# | |
# Created by Jarrod Norwell on 07/10/2023. | |
# | |
""" | |
Because the user specified only has 40~ repositories I've made this as basic as possible, | |
just change the username and repo_count to get started, it'll download all repos into the cwd |
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
// | |
// VirtualControllerView.swift | |
// emuThreeDS | |
// | |
// Created by Jarrod Norwell on 21/9/2023. | |
// | |
import Foundation | |
import UIKit |
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
let virtualControllerView = VirtualControllerView() | |
virtualControllerView.translatesAutoresizingMaskIntoConstraints = false | |
view.addSubview(virtualControllerView) | |
view.addConstraints([ | |
virtualControllerView.leadingAnchor.constraint(equalTo: view.leadingAnchor), | |
virtualControllerView.bottomAnchor.constraint(equalTo: view.bottomAnchor), | |
virtualControllerView.trailingAnchor.constraint(equalTo: view.trailingAnchor) | |
]) | |
virtualControllerView.addAButton { _ in |
This file has been truncated, but you can view the full file.
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
{ | |
"children": [ | |
{ | |
"children": [ | |
{ | |
"children": [ | |
{ | |
"children": [ | |
{ | |
"children": [], |
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 | |
struct DeIncrementView: View { | |
@State var value: Int = 0 | |
var body: some View { | |
HStack { | |
Button { | |
value -= 1 | |
}, label: { |
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
// | |
// MinimalRoundedTextField.swift | |
// AppNameHere | |
// | |
// Created by Antique on 4/7/2023. | |
// | |
import Foundation | |
import UIKit |
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
class MetalView : UIView { | |
override var layerClass: AnyClass { | |
return CAMetalLayer.class | |
} | |
} | |
let metalView = MetalView(frame: view.bounds) | |
view.addSubview(metalView) | |
let wrapper = Wrapper() |