Skip to content

Instantly share code, notes, and snippets.

@bowenyang007
bowenyang007 / aptos-oidb-zk-ceremony_attestation.log
Created February 25, 2024 22:45
Attestation for aptos-oidb-zk-ceremony MPC Phase 2 Trusted Setup ceremony
Hey, I'm bowenyang007-11738325 and I have contributed to the aptos-oidb-zk-ceremony.
The following are my contribution signatures:
Circuit # 1 (main)
Contributor # 76
Contribution Hash: 38a9e05a 91d1f09a 136f96b6 34713c48
711fc0c7 f3b151fe 65391db2 b8d755b1
7c77c218 9ee8490e 6c72bd84 19a8c54b
8f1108a6 6f65f3b2 90901a22 be8f188f
@bowenyang007
bowenyang007 / how_to_make_a_script.md
Created October 15, 2015 20:09 — forked from joshwyatt/how_to_make_a_script.md
How to make scripts you can access globally from the terminal

How to make a globally available executable script in the scripting language of your choice

  • Locate the path to the interpreter for the language you are writing in with the which command.

      which node
      which python
      which bash
      which ruby
    
  • Add that path as an interpreter directive (using #!) on the first line of your script. For example if you want to write a node script and which node returned /usr/local/bin/node, the first line of your script should be: