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 marimo | |
| __generated_with = "0.10.1" | |
| app = marimo.App(width="medium") | |
| @app.cell(hide_code=True) | |
| def _(): | |
| import marimo as mo | |
| import numpy as np |
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
| _x = sp.symbols('x') | |
| # show = False because otherwise the graph goes into stdout | |
| _plot = plot(6*_x**3 + 11*_x**2 - 3*_x - 2, show = False) | |
| # process_series process the matplotlib plot, which isn't done automatically because show = False | |
| _plot.process_series() | |
| _plot.ax |
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 marimo | |
| __generated_with = "0.9.33" | |
| app = marimo.App(width="medium") | |
| @app.cell | |
| def __(): | |
| import marimo as mo | |
| return (mo,) |
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
| MK7 EUR Rev 1 v1.2 | |
| Made by H4x0rSpooky | |
| [Private Matchmake] | |
| 0029FB48 E12FFF1E | |
| 002A146C EB0D2AA3 | |
| E05EBF00 00000010 | |
| E1A01002 E59F2000 | |
| E12FFF1E XXXXXXXX |
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
| echo -ne '\e[s\e[5000;5000H' | |
| IFS='[;' read -p $'\e[6n' -d R -a pos -rs | |
| echo -ne '\e[u' | |
| stty cols "${pos[2]}" rows "${pos[1]}" |
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
| private static async Task UploadLevelToSteamWorkshopAsync(string levelName) | |
| { | |
| Debug.Log("Uploading..."); | |
| //app data path is to the folder | |
| //my files are stored in a folder with the same name as the level name | |
| string appDataPath = ES3Settings.defaultSettings.FullPath; | |
| appDataPath = appDataPath.Replace("SaveFile.es3", levelName); | |
| //the preview path is to the image file |
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
| // For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: | |
| // https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/ubuntu | |
| { | |
| "name": "Ubuntu", | |
| "build": { | |
| "dockerfile": "Dockerfile", | |
| // Update 'VARIANT' to pick an Ubuntu version: jammy / ubuntu-22.04, focal / ubuntu-20.04, bionic /ubuntu-18.04 | |
| // Use ubuntu-22.04 or ubuntu-18.04 on local arm64/Apple Silicon. | |
| "args": { "VARIANT": "ubuntu-22.04" } | |
| }, |