Demo applications on Celestia
- macOS light node client - quasarapp.xyz
- RPC CLI tutorial with an on-chain SVG - based64.xyz (needs to be updated, pending bug fixes)
- gm portal, smart contract demo - gmportal.xyz
Demo applications on Celestia
| // Place your key bindings in this file to override the defaults | |
| [ | |
| // The following are Kevin's keybindings for VSCode | |
| // They are made available under CC BY 4.0 | |
| // | |
| // To navigate | |
| // `==` denote sections | |
| // `---` denotes subsections | |
| // | |
| // == Dendron |
| # launch: docker-compose up -d | |
| version: "3.7" | |
| services: | |
| validator: | |
| image: quay.io/team-helium/validator:latest-validator-amd64 | |
| container_name: validator | |
| init: true | |
| restart: always | |
| ports: | |
| - "2154:2154" |
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
git clone --bare [email protected]:usi-systems/easytrace.git
| # pip install requests | |
| import requests | |
| import json | |
| url_template = 'https://api.foursquare.com/v2/users/self/checkins?limit=250&oauth_token={}&v=20131026&offset={}' | |
| # If you navigate to https://developer.foursquare.com/docs/explore, Foursquare | |
| # will generate an OAuth token for you automatically. Cut and paste that token | |
| # below. | |
| token = "" |