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
| import SwiftUI | |
| @main | |
| struct MenuBarApp: App { | |
| @NSApplicationDelegateAdaptor(StatusBarDelegate.self) var appDelegate | |
| var body: some Scene { | |
| WindowGroup { | |
| ContentView() |
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
| import numpy as np | |
| import mlx.core as mx | |
| import matplotlib.pyplot as plt | |
| from matplotlib.animation import FuncAnimation | |
| import tqdm | |
| def conway(a: mx.array): | |
| source = """ |
OlderNewer