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
open -a '/Applications/WhatsApp.app' --args -disable-gpu |
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
// | |
// Observable.swift | |
// Created by Wender on 11/08/22. | |
// | |
class Observable<T> { | |
private(set) var value: T { | |
didSet { | |
listener?(value) |
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
func qs(_ list: [Int]) -> [Int] { | |
if list.count < 1 { return list } | |
let pivot = list[list.count-1] | |
var l = [Int]() | |
var e = [Int]() | |
var r = [Int]() | |
for x in list { | |
if x < pivot { l.append(x) } |
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
Show hidden characters
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "alt+cmd+]", | |
"command": "-editor.unfold", | |
"when": "editorTextFocus && foldingEnabled" | |
}, | |
{ | |
"key": "alt+cmd+]", | |
"command": "-notebook.unfold", |
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
[INFO] [Content]: Updating firmware status for: "/private/var/containers/Bundle/Application/9BADA19E-492B-4BC6-BEC2-74F355D68542/RetroArchTV.app/Frameworks/ppsspp.libretro.framework" on "/private/var/mobile/Containers/Data/Application/9A0E0DCF-1A3C-4F6A-B429-20E5EA88D61D/Library/Caches/RetroArch/system". | |
[INFO] [Core]: Using content: "/private/var/mobile/Containers/Data/Application/9A0E0DCF-1A3C-4F6A-B429-20E5EA88D61D/Library/Caches/RetroArch/downloads/Gran Turismo (USA) (En,Fr,Es) (v2.00).iso". | |
[INFO] [Core]: Content ran for a total of: 00 hours, 00 minutes, 00 seconds. | |
[INFO] [Core]: Unloading core.. | |
[INFO] [Core]: Unloading core symbols.. | |
[INFO] RetroArch 1.18.0 (Git 90fb335271) | |
[INFO] === Build ======================================= | |
[INFO] Capabilities: NEON VFPV3 VFPV4 | |
[INFO] Version: 1.18.0 | |
[INFO] Git: 90fb335271 |
OlderNewer