Skip to content

Instantly share code, notes, and snippets.

View vonvanzu's full-sized avatar
🎯
learning

vonvanzu

🎯
learning
View GitHub Profile
@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