Skip to content

Instantly share code, notes, and snippets.

View abesmon's full-sized avatar
🎱
SHIT ==> GOLD

Alexey Lysenko abesmon

🎱
SHIT ==> GOLD
View GitHub Profile
@mrdekk
mrdekk / AsyncOperation.swift
Last active July 13, 2024 19:32
Simple Swift AsyncOperation
class AsyncOperation : Operation {
private var _isExecuting = false
private var _isFinished = false
override func start() {
guard !isCancelled else {
finish()
return
}

How to install game-porting-toolkit (aka proton for macOS)

You also might wanna just use Whisky which does this automatically

This guide works on macOS 13.4+ using Command Line Tools for XCode 15 Beta!

What is this?

In the recent WWDC, Apple announced and released the "game porting toolkit", which upon further inspection this is just a modified version of CrossOver's fork of wine which is a "compatibility layer" that allows you to run Windows applications on macOS and Linux.