Thomas Miller
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# LeaP ## Selected Features See more details on these features implementation [here](https://hackmd.io/CLVlJIclTySYsmAlfMVCMw?view). - Multi-teacher Course - vector of teachers with the same permissions - would require change of validation rules - Reputation Modules: review and ratings implemented through mixin zomes - Profile - Each course one DNA: show how to keep separate DHTs inside a single app - Indexing Course Title + Search - Payments with mutual-credit (*) - Implement the same entry hash for different module - one module can be used in the multiple courses (like Rust basics are used in both Holochain & advanced Rust course) ## Design & architecture principles, refactoring Principles that we should demonstrate - best practices in Validation - best practice of Anchor Pattern - performance implications of features ## New features backlog - Course to have multiple teachers (have been mentioned during the calls multiple times) - Using reputation modules for micro-certification, P2P certification -certifications computed locally by individual agents/teachers -grade curves chosen by teachers through libraries -reviews and ratings implemented through mixin zomes -reputation staking for entry into certain courses - Instant (or not so much) messaging (very resource consuming, can use Kizuna for the reference instead) - course chat with teacher & all students - private messages between teacher / students - Allow agents to create their profile within LeaP and have a search function for profiles - Subscriptions to private courses - Each course different DNA!!?? I am not sure -->>> Private courses ^^ - (Nastasia) that might be a good idea since this would allow to separate DHTs between courses and achieve data privacy (only course members would be storing data of the course) +1 +1 - Invitation by admin to private courses - Payments with mutual-credit - Courses reviews and ratings :)))) - Mutli device Agent identity. - Implement reusability of modules in different courses - (not a feature, it's an architecture concept that should be demonstrated) Implementing unique pattern for Course - (not a feature, it's an architecture concept that should be demonstrated) Implementing fully validation on all Etnry and Links in best practice (not get_links in validation) +1 - Solve the update loop issue with static anchor and changing entry pattern - A simple testing module, possibly connected to credentials - Perhaps think of Verifiable Credentials standard implementation / wrapper - Course forum, questions and answers - - Full index Course for search by title | module | content +1111 - Implementing Role management for User|Teacher - Discoverability: exploring different models - Performance: different approaches and their impact on performance - ## User stories * [ ] A user should be able to view 3 tabs: enrolled courses, my courses and all courses * [ ] In enrolled courses, a user should be able to see all the courses in which the user is enrolled * [ ] In my courses, a user should be able to see all the courses in which the user is the teacher, with a "Create course" button and a "Delete course" button, and an Edit button inlined * [ ] In all courses, a user should be able to see all courses with an "Enrol" button if the user is not its teacher * [ ] The teacher for a course should be able to create/edit/delete a module in the course from each course view inside "My courses" tab * [ ] The teacher for a course should be able to create/edit/delete contents for each module from the module's view inside "My courses" tab * [ ] The teacher for a course should be able to see all the students for that course ## Entries ```rust Entry "course" { Model: struct Course { title: String, modules: Vec<Address>, timestamp: u64, teacher_address: Address, } Links: { course->student student->course teacher->course } } Entry "module" { Model: struct Module { title: String, course_address: Address, timestamp: u64 } Links: { module->contents } } Entry "content" { Model: struct Content { name: String, descritpion: String, url: String, timestamp: u64, module_address: Address } } ``` ## Entry relationship diagram ```mermaid graph LR subgraph Courses zome subgraph agent_id bob_id alice_id end subgraph anchors all_courses end subgraph courses Course1v0 ==>|replaced_by| Course1v1 Course1v1 ==>|replaced_by| Course1v2 end subgraph modules Module1 end subgraph content Content1 end all_courses --> Course1v0 Course1v0 -.->|modules| Module1 Module1 -.->|course_address| Course1v0 Course1v0 -.teacher.-> alice_id bob_id -->|student->courses| Course1v0 Course1v0 -->|course->students| bob_id alice_id -->|my_courses| Course1v0 Module1 -->|module->contents| Content1 Content1 -.->|module_address| Module1 end ```

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully