Rules and patterns for maintaining this knowledge base. Follow these when adding new content.
| Section | Description |
|---|---|
| Folder Structure | How folders and files are organized |
| INDEX.md Pattern | What every INDEX.md must contain |
Rules and patterns for maintaining this knowledge base. Follow these when adding new content.
| Section | Description |
|---|---|
| Folder Structure | How folders and files are organized |
| INDEX.md Pattern | What every INDEX.md must contain |
| I contributed to the ZKOPRU Trusted Setup Multi-Party Ceremony. | |
| The following are my contribution signatures: | |
| Circuit: zk_transaction_4_3 | |
| Contributor # 8 | |
| Hash: 0c8fff86 359574d3 a27d52ab b268fd3c | |
| f748acc3 7fc476c1 f9c7ced0 c5b2bdfb | |
| 1e1de241 3652f70a cd8f7442 813c9cd3 | |
| 2088856d a78db5b7 9ff88283 57275cd1 | |
| https://learn-the-web.algonquindesign.ca/topics/writing-a-readme/ | |
| Basic writing: https://help.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax#links | |
| https://help.github.com/en/github/administering-a-repository/classifying-your-repository-with-topics | |
| how to add buttons: https://shields.io/ | |
| topics: https://help.github.com/en/github/administering-a-repository/classifying-your-repository-with-topics |
| ------- | |
| server: | |
| ------- | |
| @Controller | |
| @Slf4j | |
| public class FileController { | |
| @GetMapping(value = "/files") | |
| public void getFiles(HttpServletResponse response){ |
| Add in base module pom (under dependencies for example): | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-jar-plugin</artifactId> | |
| <version>3.1.2</version> | |
| <executions> | |
| <execution> |
| Go to setting --> Editor --> Live templates --> '+' --> add Live template | |
| int the template text paste the following: //TODO $date$ $user$: | |
| Abbreviation: customtodo | |
| Description: Insert TODO comment with the current date and user name | |
| Applicable in: Everywhere | |
| Press on Edit variables: | |
| Add the following: | |
| Name: date, Expressions: date() |
| 1) add TaskScheduler spring bean: | |
| import org.springframework.context.annotation.Bean; | |
| import org.springframework.context.annotation.Configuration; | |
| import org.springframework.scheduling.TaskScheduler; | |
| import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler; | |
| @Configuration | |
| public class AppConfig { |