This file contains 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
{ | |
"env": { | |
"browser": true, | |
"node": true, | |
"es6": true | |
}, | |
"plugins": ["react"], | |
"ecmaFeatures": { |
This file contains 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
# ***** FILE SYSTEM ***** | |
# Find paths of all files beginning with a regex in the current directory | |
find . -regex '.*/learn.*' -maxdepth 1 | |
# Move all files matching the regex to a folder ./learn | |
# Warning: An error will appear but it's ok, all files except for ./learn itself are moved | |
# mv: rename ./learn to learn/learn: Invalid argument | |
mv $(find . -regex '.*/learn.*' -maxdepth 1) learn |
This file contains 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 { expect } = require("chai"); | |
const { ethers } = require("hardhat"); | |
describe.skip("Greeter", function () { | |
it("Should return the new greeting once it's changed", async function () { | |
const Greeter = await ethers.getContractFactory("Greeter"); | |
const greeter = await Greeter.deploy("Hello, world!"); | |
await greeter.deployed(); | |
console.log("greeter deployed to:", greeter.address); |
This file contains 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
print("hello gist! This is my first time using this :)") |
NewerOlder