Cloud Gaming is a great way to enjoy graphically demanding games on Apple Vision Pro.
Since Safari on visionOS does not support PWA mode, here is how you can access cloud gaming services on Apple Vision Pro.
alias statusbarfix='xcrun simctl status_bar booted override --time 9:41 --cellularMode active --cellularBars 4 --batteryState charging --operatorName ""' |
// JS SCRIPT TO USE WITH SCRIPTABLE APP + iOS14+ WIDGETS | |
// | |
// Requires Scriptable1.5+ and iOS14/iPadOS14 | |
// | |
// Download and install Scriptableapp https://scriptable.app | |
// Add this script into Scriptable, then add a scriptable widget to your homescreen | |
// (only the smallest size has been tested), hold down on the widget, then tap "edit widget", | |
// select *this* script as the "Script File", and in the *Parmameter* input, paste in | |
// the API key you use to allow access to the data feed. |
import sys | |
import os | |
import zlib | |
with open(sys.argv[1], "rb") as infile: | |
indata = infile.read() | |
magic = b"Playdate PDX\0\0\0\0" | |
magic_new = b"Playdate PDZ\0\0\0\0" | |
if not indata[0:len(magic)] in [magic, magic_new]: |
#!/bin/sh | |
# usage: | |
# ql /tmp/file.jpg | |
# cat /tmp/file.jpg | ql | |
# cal -h | ql | |
if [ -z "$*" ]; then | |
cat > /tmp/ql.stdin | |
mime_type=$(file --brief --mime-type /tmp/ql.stdin) |
<?php | |
/* | |
A simple PHP class to perform basic operations against Amazon S3 and compatible | |
services. Requires modern PHP (7+, probably) with curl, dom, and iconv modules. | |
Copyright 2022 Marco Arment. Released under the MIT license: | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights |
Cloud Gaming is a great way to enjoy graphically demanding games on Apple Vision Pro.
Since Safari on visionOS does not support PWA mode, here is how you can access cloud gaming services on Apple Vision Pro.