This file contains hidden or 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
<Prompt> | |
<Context> | |
You're tasked with coding a project and need to follow specific guidelines to ensure quality and consistency across various programming languages and frameworks. | |
</Context> | |
<Progress> | |
Document all tasks. Create a folder in the project root named .cline and keep a log of tasks in the following format. | |
GOAL: Detail the goal of the task | |
IMPLMENTATION: Describe how it was implemented. |
This file contains hidden or 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
import numpy as np | |
import cvxpy as cp | |
import itertools | |
# Problem data | |
global_indices = list(range(4)) | |
# 0 = TOKEN-0 | |
# 1 = TOKEN-1 | |
# 2 = TOKEN-2 |
This file contains hidden or 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
**DO THE FOLLOWING** | |
If it takes more than 20 minutes, let me (https://twitter.com/@gadikian) know, it means that something is wrong. | |
The Raspberry Pi image may take 15-30 minutes to build. | |
ensure that you have node.js, go and the github cli installed. | |
```bash | |
# Clone Starport Repo | |
git clone https://github.com/tendermint/starport |
This file contains hidden or 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
syntax = "proto3"; | |
message Message { | |
bytes text = 1; | |
} |