Skip to content

Instantly share code, notes, and snippets.

View boyuanqian's full-sized avatar

Boyuan Qian boyuanqian

View GitHub Profile
@boyuanqian
boyuanqian / bitcoin fullnode on aws.md
Last active March 2, 2023 15:09 — forked from romanz/fullnode.md
Bitcoin Full Node on AWS Free Tier
@boyuanqian
boyuanqian / DamnSimpleNftStake.sol
Created May 12, 2022 16:02 — forked from Chmarusso/DamnSimpleNftStake.sol
Super Simple NFT staking
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Receiver.sol";
contract NftStaker {
IERC1155 public parentNFT;
struct Stake {
@boyuanqian
boyuanqian / README.md
Created November 17, 2019 05:35 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


@boyuanqian
boyuanqian / gitcom.md
Created April 23, 2019 23:30 — forked from jednano/gitcom.md
Common git commands in a day-to-day workflow

Git Cheat Sheet

Initial Setup

Create an empty git repo or reinitialize an existing one

$ git init