FAIR4RS
      • 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
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • 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
    • Note Insights
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Note Insights Sharing URL Help
Menu
Options
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
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • 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
    # Make and Document a Plan By leveraging [GitHub issues](https://github.com/features/issues) to document both broad needs and specific tasks, and organizing them within a project board, you can streamline project management, enhance clarity, foster collaborative problem-solving, and is also a good approach when asking for help. This approach ensures that each aspect of your project is actionable, trackable, and aligned with your overarching goals. <!-- ## Goal By the end of this exercise, you'll learn to express your project needs or user needs using a structured approach inspired by user stories. This will help you prioritize aspects of your project and translate needs into specific software requirements. --> <!-- ## Overview Remember, this program includes guidelines on FAIR principles and open collaboration. The exercises provided offer a mini roadmap to follow during your project. --> <!-- ## 1. Create a Simple Roadmap Craft a straightforward roadmap consisting of key milestones. Based on your learnings and reflections on the Coderefinery workshop, define what priorities and aspects are important in the form of a roadmap. **Tip:** Share your roadmap as an issue in your repository for feedback. Include relevant aspects from code writing to publishing. **Example Roadmap:** ``` ## Roadmap Milestones - Refactor my codebase; integrate tests - Develop a documentation website with tutorials - Make codebase accessible for an upcoming course - Launch a prototype for external testing by mid-2023 - Optimize code for cluster execution - Aim to publish a paper by end of 2023 ``` ## 2. Define Your Needs with a User Story Template **Instructions:** Create at least one user story following the template below. Optionally, craft additional stories specific to your project, covering relevant areas not discussed in the workshop. You can create as many stories as you need. ### Template Structure ``` As a [specific role], I need [specific workshop topic] because [specific reason]. I plan to [specific application method], enabling [specific expected outcome]. ``` ### Specificity Guidelines 1. **Role:** Define your role precisely within your project's context. 2. **Workshop Topic:** Pick a CodeRefinery topic (a story) directly linked to your project's challenge. 3. **Reason:** Clearly state why this topic is a priority. 4. **Application Method:** Describe how you'll apply this topic practically. 5. **Expected Outcome:** Specify the improvement or result you anticipate. ### Example ``` As a PhD student developing machine learning models, I need software testing practices, because I'm struggling with model reliability after changes. I plan to integrate pytest for automated testing workflows, enabling me to refactor models confidently without fearing regressions. ``` ## 3. Organize with a Project Board A project board helps manage tasks, prioritize them, and keep track of who is doing what. It captures project status, priorities, and individual responsibilities. **Instructions:** [Create a project board on GitHub](https://docs.github.com/en/issues/planning-and-tracking-with-projects/creating-projects/creating-a-project) or a similar platform. --> ## Breakdown Needs into Issues/Tasks <!-- **Creativity Required:** Transforming wishes into specific tasks is challenging. Use your project board to facilitate this process, leveraging GitHub issues not only to define broader problems or enhancements but also to specify tasks. --> ### Distinguishing Issues from Tasks - **Issues** can encompass broader problems, enhancements, feature requests, or questions. They may require discussion, investigation, or further breakdown into more actionable items. - **Tasks** are specific, actionable items that contribute directly to resolving an issue. They are the discrete steps needed to complete a broader issue. ### Using GitHub Issues for Both Issues and Tasks - **Create Issues for Broad Needs:** Begin by documenting broad needs, problems, or questions as issues. Provide a clear title and detailed description to ensure understandability. - **Example:** "Improve project documentation to facilitate new contributor onboarding." - **Define Tasks Within Issues:** For each broad issue, you can also use GitHub issues to define specific tasks. This can be achieved by creating separate issues for each task linked to the main issue or by using task lists within a single issue. - **Example Task Issue:** "Create a 'Getting Started' guide for new contributors." - **Task List in Issue:** Use GitHub's task list feature in the issue description to outline steps or tasks. This keeps everything related to a single issue in one place. ``` - [ ] Review current documentation for completeness. - [ ] Identify key areas lacking information. - [ ] Draft 'Getting Started' guide sections. - [ ] Review and revise the guide with the team. ``` You can go further and take advantage of [issue templates](https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository). ### Organizing and Prioritizing Tasks - **Labels and Milestones:** Utilize labels to categorize tasks by type (e.g., bug, enhancement) and use milestones to group tasks related to specific project phases or goals. - **Assignees:** Assign tasks to specific team members to clarify responsibilities. If working solo, assigning tasks to yourself can help keep track of your to-do list. <!-- ### Monitoring Progress - **Progress Tracking:** Use the project board to track the progress of tasks across different stages (e.g., To Do, In Progress, Done). - **Review and Adjust:** Regularly review the board and issues to adjust priorities, reassign tasks as needed, and close issues that have been resolved. --> ## Notes on how to open issues ### Raising an Issue: - **Search for Existing Issues**: Before creating a new issue, search existing ones to avoid duplicates and contribute to ongoing discussions. Reference: [GitHub - Creating an Issue](https://github.com/rstudio/rstudio/wiki/Writing-Good-Bug-Reports) - **Follow the Issue Template**: If the project has an issue template, ensure you fill it out completely to provide all necessary information. Reference: [GitLab - Issue Templates](https://docs.gitlab.com/ee/user/project/description_templates.html) - **Provide Clear Steps to Reproduce**: Detail the steps required to reproduce the issue, along with any relevant code snippets or screenshots. Reference: [GitHub - Creating an Issue](https://github.com/rstudio/rstudio/wiki/Writing-Good-Bug-Reports) - **Include Environment Details**: Mention the environment (e.g., operating system, browser version) in which the issue occurs, if applicable. Reference: [GitHub - Creating an Issue](https://github.com/rstudio/rstudio/wiki/Writing-Good-Bug-Reports) - **Be Courteous and Respectful**: Maintain a respectful tone and avoid using all caps or offensive language when describing the issue. Reference: [Stack Overflow - How do I ask a good question?](https://stackoverflow.com/help/how-to-ask) ## References [eScience Center Software Management Plan Template](https://www.esciencecenter.nl/wp-content/uploads/2021/07/SMP2021-v1.057.pdf) [GitHub - Creating an Issue](https://github.com/rstudio/rstudio/wiki/Writing-Good-Bug-Reports) [Stack Overflow - How do I ask a good question?](https://stackoverflow.com/help/how-to-ask) [GitLab - Submitting a Merge Request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html) [GitHub Community Guidelines](https://docs.github.com/en/github/site-policy/github-community-guidelines) [Stack Overflow - How do I ask a good question?](https://stackoverflow.com/help/how-to-ask) [GitHub - Creating an Issue](https://github.com/rstudio/rstudio/wiki/Writing-Good-Bug-Reports) [GitLab - Issue Templates](https://docs.gitlab.com/ee/user/project/description_templates.html) [GitHub - Creating an Issue](https://github.com/rstudio/rstudio/wiki/Writing-Good-Bug-Reports) [GitHub - Creating an Issue](https://github.com/rstudio/rstudio/wiki/Writing-Good-Bug-Reports) [Stack Overflow - How do I ask a good question?](https://stackoverflow.com/help/how-to-ask)

    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