Skip to content

Instantly share code, notes, and snippets.

@Jake2309
Jake2309 / $Running a Private Ethereum Blockchain using Docker.markdown
Created September 6, 2022 03:04 — forked from nhapentor/$Running a Private Ethereum Blockchain using Docker.markdown
Setup and run a cluster of nodes to build a private Ethereum network in Docker environment

Running a Private Ethereum Blockchain using Docker

Put genesis.json, Dockerfile, docker-compose.yml and .env files together in the same folder. Then run the command.

docker-compose up
@Jake2309
Jake2309 / responsive mixin
Created March 30, 2020 19:28 — forked from davidthingsaker/responsive mixin
SCSS / Sass mixin for responsive sites
$small-desktop: 960px;
$large-desktop: 1200px;
$handheld: 768px;
$handhelds-landscape: 1024px;
$mobile: 640px;
$mobile-landscape: 480px;
@mixin respond-to($media) {
@if $media == largeDesktop {
@media only screen and (min-width: $large-desktop) { @content }