chaosstorm115
    • 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
    • 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 New
    • Engagement control
    • Make a copy
    • 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 Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy 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
  • 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
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # Chatbot, from Group D (and F) in Lab session 1 ## You wanna look at the changelogs, look in the top right. 3 Dots, "Version and Github Sync". ### or not, considering that we have to zip this file up. Eh. Take a link to the hackmd too, if you want to keep using it. Recursion, huzzah. Main code: https://hackmd.io/6BS1DdrOSWy2lWl0X6Wvnw?both Wordlist: https://hackmd.io/3AVEajKpTaeDkzTHEimPog?both ``` c //Libraries go here. Add as you need. #include <stdio.h> #include <time.h> #include <string.h> #include <ctype.h> int main() { // Taking inspiration from line 6 of https://github.com/hashinclude72/chatbot/blob/master/chatbot.c char questions[10][10]={"who","what","where","why","how"}; //Priority keywords. If one of these is at the start of the input, react accordingly. char keywords1[100][20]={"zomgwtf","sky","blue","london","uk",};//Keyword bank that program will compare words in input to. int questionLen = sizeof questions / sizeof questions[0]; int keywordsLen = sizeof keywords1 / sizeof keywords1[0]; //get len of both arrays /* Branching tree word bank example: why sky blue:reasons what where london:uk Each word in sentence search current branch, if match then enter new branch Don't know how to do this */ /* Idea for reading tree word bank from file Ignore first star Read each word looking for match After first star ignore stuff between stars /end indicates branch has ended If match found, start from that point so first star will be ignored, reading into next branch and ending at /end * 1a * 2a 2b 2c /end * 1b 1c * 2a 2b /end * /end * */ //Prints opening line and waits for a response. printf("Hello- what is your name?: "); char name[20]; fgets(name, sizeof(name), stdin); //Take user's name and store in array 'name' //COPIED FROM greeting.c //Takes time from user's clock, responds accordingly int hour; time_t t = time(NULL); struct tm tm = *localtime(&t); hour=tm.tm_hour; //* https://stackoverflow.com/a/1442131 *// if (hour<12) { printf("Good morning, %s",name); } else if (hour<19) { printf("Good afternoon, %s",name); } else { printf("Good evening, %s",name); } //COPIED FROM greeting.c //FILE* wordbank = fopen("wordbank.txt", "r"); //file containing wordbank tree, not made yet while (1) { //take input char input[100]; //Sentences can be long. char* userQuestion; char* userKeyword; fgets(input, sizeof(input), stdin); //get user input int len = strlen(input); input[strcspn(input, "\n")] = 0; //removes trailing newline int j=0;// for loop to remove puncuation for(int i=0;i<len;i++){ //https://stackoverflow.com/a/1841811 if (! ispunct(input[i])){ //if its not punctuation, write it to the string input[j]=tolower(input[i]); j++; } } //do something //Goal- Split up inputted line into seperate strings, each made of a word and either whitespace or a special character, as sentences usually end. Or a null byte or something, if they decide to not punctuate. //Then, parse each word through a function that checks if it recognises the word from a wordbank- once this is completed, try to respond with a relevant response. //read word char* word; //pointer to current word const char space[2] = " "; //delimiter character word = strtok(input, space); //get first word while (word != NULL) { //while there are words left print and get next word printf("Word: %s\n", word); //TODO check word against wordbank.txt //could probably compress this by making it into a function and calling it twice //TODO make responses for (int bank=0;bank<=questionLen;bank++) //finding question word in user input if (strcmp(word, questions[bank])==0){ //compare word in user input against question word userQuestion = questions[bank]; printf("Question: %s\n", userQuestion); //test print the found user question word break; //break loop when question word found (could add functionality for multiple question words) } for (int i=0;i<=keywordsLen;i++) //as above but for the keyword if (strcmp(word, keywords1[i])==0){ //needs integration with the parsed wordbank.txt userKeyword = keywords1[i]; printf("Keyword: %s\n", userKeyword); //test print the found user question word } word = strtok(NULL, space); } } //Idea- have the chatbot ask a question and add the answer to wordbank.txt //Idea- use strstr() [or use strcasestr() which ignores case) that allows for finding substrings within string? Not sure how to use this with an array filled with keywords, but something to think about. //If you use strcasestr(), put #define _GNU_SOURCE BEFORE ANY #include. return 0; } //alex wuz 'ere- delete this comment at your own peril //a second alex has also been here ```

    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