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
package com.antique.temp | |
import android.net.Uri | |
import android.os.Bundle | |
import androidx.activity.ComponentActivity | |
import androidx.activity.compose.setContent | |
import androidx.activity.enableEdgeToEdge | |
import androidx.compose.foundation.layout.Column | |
import androidx.compose.foundation.layout.Row | |
import androidx.compose.foundation.layout.Spacer |
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
i386 : iPhone Simulator | |
x86_64 : iPhone Simulator | |
arm64 : iPhone Simulator | |
iPhone1,1 : iPhone | |
iPhone1,2 : iPhone 3G | |
iPhone2,1 : iPhone 3GS | |
iPhone3,1 : iPhone 4 | |
iPhone3,2 : iPhone 4 GSM Rev A | |
iPhone3,3 : iPhone 4 CDMA | |
iPhone4,1 : iPhone 4S |
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
@MainActor public struct Guava { | |
public static let shared = Guava() | |
public func insertCartridge(from url: URL) { | |
Core.bootRom(std.string(url.path)) | |
} | |
public func videoBuffer() -> UnsafeMutablePointer<_Framebuffer> { | |
VI.getFramebuffer() | |
} |
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
{ | |
"author": "Antique", | |
"core": "Cytrus", | |
"description": "Default skin for the Nintendo 3DS", | |
"devices": [ | |
{ | |
"buttons": [ | |
{ | |
"height": 60, | |
"type": "dpadUp", |
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 Skin : Codable { | |
struct Button : Codable { | |
let origin: CGPoint | |
let size: CGSize | |
let type: VirtualControllerButton.ButtonType | |
} | |
struct Screen : Codable { | |
let origin: CGPoint | |
let size: 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
// | |
// LibraryManager.swift | |
// Folium | |
// | |
// Created by Jarrod Norwell on 15/5/2024. | |
// | |
import Foundation | |
class LibraryManager { |
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
%hook SBFLockScreenDateView | |
-(NSString *) customTimeNumberingSystem { | |
return @"<STRING HERE>"; | |
} | |
-(void) setCustomTimeNumberingSystem:(NSString *)arg1 { | |
%orig(@"<STRING HERE>"); | |
} | |
-(id) initWithFrame:(CGRect)arg1 { |
This file has been truncated, but you can view the full file.
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
{ | |
"/ps2-iso/": [ | |
"https://cdromance.com/ps2-iso/project-zero-3-the-tormented-europe/", | |
"https://cdromance.com/ps2-iso/star-wars-racer-revenge-usa/", | |
"https://cdromance.com/ps2-iso/the-powerpuff-girls-relish-rampage-europe/", | |
"https://cdromance.com/ps2-iso/the-powerpuff-girls-relish-rampage-usa/", | |
"https://cdromance.com/ps2-iso/spider-man-web-of-shadows-amazing-allies-edition-europe/", | |
"https://cdromance.com/ps2-iso/spider-man-web-of-shadows-amazing-allies-edition-usa/", | |
"https://cdromance.com/ps2-iso/persona-3-fes-direct-commands-hack/", | |
"https://cdromance.com/ps2-iso/wallace-gromit-the-curse-of-the-were-rabbit-europe/", |
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
from .wodwell import Wodwell | |
if __name__ == "__main__": | |
wodwell = Wodwell() | |
wodwell.get_wods(page=1, sort="popular") | |
wodwell.get_all_wods(sort="popular") # best not use this | |
# example usage | |
for wods in wodwell.get_wods(page=1, sort="popular") | |
wodwell.get_wod(wod_id=wod["id']) |
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 Foundation | |
struct Library { | |
struct Core { | |
enum Name : String { | |
case kiwi = "Kiwi", limon = "Limón", sudachi = "Sudachi" | |
} | |
class GameBase {} | |
NewerOlder