This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------- | |
server: | |
------- | |
@Controller | |
@Slf4j | |
public class FileController { | |
@GetMapping(value = "/files") | |
public void getFiles(HttpServletResponse response){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { |