- 🌞 Expose yourself to natural light
- 🪥 Brush your teeth
- 🚰 Drink appropriate amount of water
- 🧘♂️ Do mindfulness meditation
- 🙆♂️ Do light workout
- 🔈 Listen to your morning playlist or your morning podcast
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
use cosmwasm_std::{from_binary, to_binary, Binary}; | |
use serde::{Deserialize, Serialize}; | |
#[derive(Serialize, Deserialize)] | |
enum Cars { | |
Audi { id: u32, number_plate: u32 }, | |
Bmw { id: u32, number_plate: u32 }, | |
} | |
#[derive(Serialize, Deserialize)] |
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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: Mailvelope v4.4.1 | |
Comment: https://www.mailvelope.com | |
xsFNBGIJB88BEACV3UJxikpf/B7gBIeDUUuqbQ/T8SAfctf+G3a74cZV9hLV | |
KkT9pyJtcKEzErE8wvOMzq8nThKVaMgHNpSzBKff0TWyyBHfBARim5Uay6dN | |
UcIYYp7DwQJPYARtgZQMNVB8i2r1vbNB8s54opIKCIDKntFLg9UxQ3sgcXiK | |
hliU/2XovqflKEzefEUv6QlJf+rC01iJN+4QoChvj2D1jCdbkaKqY5/9kKFj | |
cD9StpDEke4I73ay4YKxprJSMkQEORydW1naUVPCos0d000unl1m/81f1kTM | |
+VlcFVwyackSdLTaRrGprW43TQp//fuH18TD3pt6UTHV3kPRPBelqveYE7ot |
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
from time import sleep | |
from os import system | |
it = 0 | |
while True: | |
system("clear") | |
system("cargo run") # Change this to your compile script | |
it+=1 | |
print(it, "th iteration completed.") | |
sleep(1) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
rpcEndpoint = `...`; | |
addressURL = `...`; | |
const axios = require("axios"); | |
const Web3 = require("web3"); | |
var web3 = new Web3(new Web3.providers.HttpProvider(rpcEndpoint)); | |
async function main() { | |
url = | |
`http://api-kovan.etherscan.io/api?module=contract&action=getabi&address=` + |
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
rpcEndpoint = "YOUR-RPC-URL"; | |
password = "PASSWORD"; | |
const Web3 = require("web3"); | |
const provider = new Web3.providers.HttpProvider(rpcEndpoint); | |
const web3 = new Web3(provider); | |
const assert = require("assert"); | |
async function main() { | |
// Creating a wallet |
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
data = ""; | |
privateKey = ""; | |
rpcEndpoint = ""; | |
password = ""; | |
const Web3 = require("web3"); | |
const provider = new Web3.providers.HttpProvider(rpcEndpoint); | |
const web3 = new Web3(provider); | |
async function main() { |
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 assert = require("assert"); | |
async function it(name, fun) { | |
await fun() | |
.then(() => { | |
console.log(name, ": passed."); | |
}) | |
.catch((err) => { | |
console.log(name, ": failed."); | |
console.log("Error: ", err); |
NewerOlder