Skip to content

Instantly share code, notes, and snippets.

# Source: https://gist.github.com/84324e2d6eb1e62e3569846a741cedea
####################
# Create a Cluster #
####################
minikube start
#############################
# Deploy Ingress Controller #
@ulihorn
ulihorn / .deps...npm...@openzeppelin...contracts...token...ERC20...ERC20.sol
Created June 17, 2021 20:43
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.5+commit.a4f2e591.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.

Keybase proof

I hereby claim:

  • I am ulihorn on github.
  • I am ulihorn (https://keybase.io/ulihorn) on keybase.
  • I have a public key ASAGGIj5yj7CZ1648d0_SqEw-WlyU2HqJNKZVQAiKrElFwo

To claim this, I am signing this object:

@ulihorn
ulihorn / setup.md
Created January 17, 2018 16:13 — forked from developius/README.md
Set up GitHub push with SSH keys

Create a repo. Make sure there is at least one file in it (even just the README) Generate ssh key:

ssh-keygen -t rsa -C "[email protected]"

Copy the contents of the file ~/.ssh/id_rsa.pub to your SSH keys in your GitHub account settings. Test SSH key:

ssh -T [email protected]

Comparison of ASP.NET and Node.js for Backend Programming

We will compare ASP.NET and Node.js for backend programming.
Source codes from examples.

Updates

This document was published on 21.09.2015 for a freelance employer. Some changes since then (14.02.2016):

  1. Koa.js no longer uses co-routines, it has switched to Babel's async/await. yield and await are used almost in the same way, so I see no point to rewrite the examples.