Skip to content

Instantly share code, notes, and snippets.

View adepanges's full-sized avatar
🏠
Working from home

Ade adepanges

🏠
Working from home
  • Banjarnegara, Central Java, Indonesia
  • 13:15 (UTC +07:00)
  • X @adepanges
View GitHub Profile
@adepanges
adepanges / README.txt
Created July 14, 2021 15:37
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.4+commit.c7e474f2.js&optimize=false&runs=200&gist=
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
@nginx-gists
nginx-gists / api_backends.conf
Last active July 1, 2024 07:50 — forked from lcrilly/api_backends.conf
Deploying NGINX Plus as an API Gateway, Part 1
upstream warehouse_inventory {
zone inventory_service 64k;
server 10.0.0.1:80;
server 10.0.0.2:80;
server 10.0.0.3:80;
}
upstream warehouse_pricing {
zone pricing_service 64k;
server 10.0.0.7:80;