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
https://github.com/metonym/svg-to-svelte |
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
delete the .ssh/knownhosts 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
cd /path/to/repo.git | |
sudo chgrp -R groupname . | |
sudo chmod -R g+rwX . | |
find . -type d -exec chmod g+s '{}' + |
standard_init_linux.go:228: exec user process caused: exec format error
error during docker-compose becaues of building images with M1 macbook
must specify image by
version: "3.8" services: webclient: platform: linux/x86_64
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
$web3.eth.personal.sign("HELLO WORLD", accounts[0], "") | |
.then(sig => { | |
console.log("SIG") | |
console.log(sig); | |
}); | |
// console log sig is | |
//0x21ab9a25ea67c7bc30a346343647e0f85d9a0d642b4c11781a0f5e910ebd9da05426a1eafbeb2094274bd39088b5a4d371cdfa6cffe968a8782ccda7d0ea4b751b | |
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
const connector = new window.WalletConnect.default({ | |
bridge: "https://bridge.walletconnect.org" // Required | |
}); | |
// // Check if connection is already established | |
if (!connector.connected) { | |
connector.createSession().then(() => { | |
const uri = connector.uri; |
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
https://ethereum.stackexchange.com/questions/35486/how-to-verify-metamask-account-holder-is-the-real-owner-of-the-address |
vite requires port 3000 to be used as the default port to watch HMR. trying to assign a different port with docker will cause the client to constantly reload
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
export default defineConfig({ | |
server: { | |
watch: { | |
usePolling: true | |
} | |
} | |
}) |
NewerOlder