I’m a student currently writing his bachelors thesis about a DLT Application in M&A.
I’ve decided to build a simple but working prototype to facilitate the Q&A Process on the Corda Ledger. (which is simply exchanging text in a verified manner)
Problem is: I have no prior coding experience (no java, no kotlin, but I’m doing Kotlin as it seems easier) and only very roughly understand the code and what it does. So basically an absolute noob.
I need to have a working prototype ready by next week Friday as the dealine is approacing fast. I was hoping to find someone who can guide me on how to build it and help me find solutions.
So if there is any volunteer out there who wants to help a struggling student, please contact me. I can really use the help. 🙂 I would need someone to check my kotlin code and explain a counple of things to me…
Cheers, Ludwig
d
deactivateduser
04/19/2020, 10:47 AM
you can just post your questions and folks here, as much as possible, will gladly answer... good luck for your assignment... cheers....
l
Ludwig Groeber
04/19/2020, 10:50 AM
okay, for example: What is this doing?
seems like its defining something…
Copy code
interface Commands : CommandData {
class Ask : TypeOnlyCommandData(), Commands //Frage stellen
class Answer : TypeOnlyCommandData(), Commands
class Settle : TypeOnlyCommandData(), Commands
class Send : TypeOnlyCommandData(), Commands
}