I hereby claim:
- I am c12i on github.
- I am collinsmuriuki (https://keybase.io/collinsmuriuki) on keybase.
- I have a public key ASBu518nUOCT91Q18ryVr-Z3in44PLaDyc9l1mcotY5M4Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
import asyncio | |
import psycopg2 | |
# dbname should be the same for the notifying process | |
conn = psycopg2.connect(host="localhost", dbname="example", user="example", password="example") | |
conn.set_isolation_level(psycopg2.extensions.ISOLATION_LEVEL_AUTOCOMMIT) | |
cursor = conn.cursor() | |
cursor.execute(f"LISTEN match_updates;") |
23.21.150.121:3478 | |
iphone-stun.strato-iphone.de:3478 | |
numb.viagenie.ca:3478 | |
s1.taraba.net:3478 | |
s2.taraba.net:3478 | |
stun.12connect.com:3478 | |
stun.12voip.com:3478 | |
stun.1und1.de:3478 | |
stun.2talk.co.nz:3478 | |
stun.2talk.com:3478 |
With socket.io
With native WebSocket
API
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 |
http { | |
upstream backend { | |
# ip_hash; | |
server 127.0.0.1:3000; | |
server 127.0.0.1:3100; | |
server 127.0.0.1:5000; | |
} | |
server { | |
listen 80; | |