Skip to content

Instantly share code, notes, and snippets.

View vonvanzu's full-sized avatar
🎯
learning

vonvanzu

🎯
learning
View GitHub Profile
@ShMcK
ShMcK / StableDiffusionUI_SageMaker.ipynb
Last active July 12, 2024 14:25
Config for running Automatic1111 Stable Diffusion WebUI on an AWS SageMaker Notebook
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Miraculix200
Miraculix200 / DreamBooth_Stable_Diffusion.ipynb
Created October 30, 2022 13:27
Dreambooth on SageMaker Studio Lab
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Turupawn
Turupawn / FangGang.sol
Created October 18, 2021 19:47
Buenísimo
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
contract FangGang is ERC721Enumerable, Ownable {
using Address for address;
// Starting and stopping sale and presale
@dlzi
dlzi / remove-python-macos.md
Last active August 25, 2024 07:44
How to uninstall Python 3.x on a macOS

1. DO NOT attempt to remove any Apple-supplied system Python which are in /System/Library and /usr/bin.
2. Multiple Python versions can coexist pacifically on macOS. So, uninstalling Python is purely optional.

To remove a different version, change 3.7 to the Python version you want to remove.

sudo rm -rf /Library/Frameworks/Python.framework/Versions/3.7
sudo rm -rf "/Applications/Python 3.7"
sudo find /usr/local/bin -lname '../../../Library/Frameworks/Python.framework/Versions/3.7/*' -delete