I hereby claim:
- I am slvnperron on github.
- I am slvn (https://keybase.io/slvn) on keybase.
- I have a public key whose fingerprint is 8DD9 9A84 62BE 0FA9 06E6 CB74 7824 BCA4 9603 A72F
To claim this, I am signing this object:
| misunderstand: | |
| - I don't understand this. | |
| done: | |
| - 🎈 | |
| - We're all done then :) | |
| ask_gender: | |
| - text: What is your gender? | |
| quick_replies: |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * Description of the action goes here | |
| * @param {String} params.name=value Description of the parameter goes here | |
| * @param {Number} [params.age] Optional parameter | |
| */ | |
| async function yourCustomAction(state, event, params) { | |
| return state; | |
| } | |
| /** |
| const _ = require('lodash') | |
| /** | |
| * This outgoing middleware will find the $"..." pattern in the ougoing text | |
| * And transform those into suggestion chips in channel-web | |
| * @example e.g. | |
| * `What type of restaurant are you looking for? $“Asian” $”Mexican” $”American”` | |
| */ | |
| const regex = /\$(“|'|"|”)([\w\s]+)(“|'|"|”)/g |
| const chatOptions = { | |
| hideWidget: true, | |
| config: { | |
| enableReset: true, | |
| enableTranscriptDownload: true, | |
| extraStylesheet: "/assets/chat.css" | |
| } | |
| }; | |
| const params = { |
| # Ubuntu 18.04 | |
| # Step 1. Installing Docker | |
| # ------------------------- | |
| # Reference: https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-18-04 | |
| sudo apt update && \ | |
| sudo apt install apt-transport-https ca-certificates curl software-properties-common -y && \ | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - && \ | |
| sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" && \ |
| .bpw-button, .bpw-button-alt { | |
| height: unset; | |
| min-height: 40px; | |
| } |
| @import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap'); | |
| .bpw-layout { | |
| font-family: 'Roboto', sans-serif !important; | |
| } | |
| .bpw-from-bot .bpw-chat-bubble .bpw-chat-bubble-content { | |
| background-color: #ececec !important; | |
| } |
| // The Table we want to analyze | |
| const Table: FromagesTable = FromagesTable | |
| const TableName = 'FromagesTable' | |
| // List of columns we want to analyze the unique values and count of | |
| const columns: Array<keyof Awaited<ReturnType<Table['getRecord']>>> = [ | |
| 'alcools', | |
| 'familles', | |
| 'flaveurs', | |
| 'fromageries', |