Skip to content

Instantly share code, notes, and snippets.

View vonvanzu's full-sized avatar
🎯
learning

vonvanzu

🎯
learning
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vonvanzu
vonvanzu / StableDiffusionUI_SageMaker.ipynb
Created July 6, 2024 23:01 — forked from ShMcK/StableDiffusionUI_SageMaker.ipynb
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.
@vonvanzu
vonvanzu / FangGang.sol
Created February 26, 2024 23:05 — forked from Turupawn/FangGang.sol
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
@vonvanzu
vonvanzu / remove-python-macos.md
Created January 5, 2024 21:53 — forked from dlzi/remove-python-macos.md
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