Skip to content

Instantly share code, notes, and snippets.

View lokesh-lync's full-sized avatar
⚠️
Inactive account. No longer with LYNC

Lokesh / @codetit4n lokesh-lync

⚠️
Inactive account. No longer with LYNC
View GitHub Profile
@lokesh-lync
lokesh-lync / CountingSVG.sol
Created July 24, 2023 10:12 — forked from rgottleber/CountingSVG.sol
Code For Keepers Masterclass
// SPDX-License-Identifier: MIT
// An example of a consumer contract that relies on a subscription for funding.
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
@lokesh-lync
lokesh-lync / nvmCommands.js
Created October 30, 2023 20:28 — forked from chranderson/nvmCommands.js
Useful NVM commands
// check version
node -v || node --version
// list locally installed versions of node
nvm ls
// list remove available versions of node
nvm ls-remote
// install specific version of node