Skip to content

Instantly share code, notes, and snippets.

View PipWasHere's full-sized avatar
👀
Browsing and learning...

Philip Mayo PipWasHere

👀
Browsing and learning...
  • Lake Havasu City, AZ
View GitHub Profile
@KhaosT
KhaosT / Cloud Gaming on Apple Vision Pro.md
Last active November 15, 2025 18:27
Guide for clouding gaming on Apple Vision Pro

Cloud Gaming on Apple Vision Pro

GeForce Now

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.

What’s needed

# Before You run the code open your cmd and use pip to install a package called speedtest-cli
# run the code [" pip install speedtest-cli "] in cmd
# Python program to test
# internet speed
import speedtest
st = speedtest.Speedtest()
@natecook1000
natecook1000 / operatorCharacters.swift
Last active September 2, 2024 22:07
Allowed characters for Swift operators
import Foundation
extension UnicodeScalar : ForwardIndexType {
public func successor() -> UnicodeScalar {
return UnicodeScalar(value + 1)
}
}
var operatorHeads: [UnicodeScalar] = Array("=-+!*%<>&|^~?".unicodeScalars)
operatorHeads += Array("\u{00A1}" ... "\u{00A7}")