[Node] NPM doesn't know where to find the Credentials (WSL) add files to ~/.git-credentials https://:@bitbucket.org Then npm install works fine. When you don't like to type username and password each time to the BitBucket using SSH Key, creating and using app-password might be the alternative option. Bug 2022.04.05
[Git] Working with others in the branch and keep the change and make change using git checkout, git merge and git pull Template for updating my branch and get the branch git checkout git pull git checkout git pull git merge Bug/Git 2022.04.05
[AI] EDDI Open Source Chatbot System How does it work? In order to build a Chatbot with EDDI, you will have to create a few configuration files and POST them to the corresponding REST APIs. A chatbot consists of the following elements: 1. (Regular) Dictionary to define the inputs from the users as well as its meanings in respective categories (called Expressions in EDDI). 2. Behavior Rules creating Actions based on decision making .. AI 2022.04.03
[Docker] Intro (Get Started) https://docs.docker.com/get-started/ //When you try to use the docker command in WSL, you need to type "sudo" //command in front of it to give the permission. $ docker-compose up //This prints out the error message to know if the docker already begin or not. $ sudo docker-compose up Docker 2022.04.03
[AI] Building a Simple AI Chatbot with Speech Recognition https://docs.labs.ai/ E.D.D.I Documentation - E.D.D.I Scalable Open Source Chatbot Platform. Build multiple Chatbots with NLP, Behavior Rules, API Connector, Templating. Developed in Java, provided with Docker, orchestrated with Kubernetes or Openshift. docs.labs.ai Using Open Source E.D.D.I API from Google Cloud https://www.smashingmagazine.com/2017/08/ai-chatbot-web-speech-api-node-js/ Buildin.. AI 2022.04.03
Development Events and Certificates Ideas AWS Certificates AWS Reinvent Biggest Events AWS Mars Testla AI Week 카테고리 없음 2022.04.02
[JEST] describe describe(name, fn) describe(name, fn) creates a block that groups together several related tests. For example, if you have a myBeverage object that is supposed to be delicious but not sour, you could test it with: const myBeverage = { delicious: true, sour: false, }; describe('my beverage', () => { test('is delicious', () => { expect(myBeverage.delicious).toBeTruthy(); }); test('is not sour', (.. Node.js/Jest 2022.04.02
[JEST] Jest Functions with AWS JEST TESTING mockdata Use Mockdata files to store fake data values for the testing jest.mock take away the functionality of it do nothing (we don't have to run everything) I don't want to send a notification of sns so did a mock Set a global variable of response jest.requireActual it uses all thd data uses actual function using only one function there to require it most of the times we do only m.. Node.js/Jest 2022.04.02
[Node] Best JavaScript code snippets using joi.date Best JavaScript code snippets using joi.date origin: blacksmithstudio/blockbase cli/templates/models/schemas/foo.js/Joi.object.keys Joi.object().keys({ id : Joi.number().integer(), firstname : Joi.string().max(128).optional(), lastname : Joi.string().max(128).optional(), created_at : Joi.date().default(() => moment().format(), 'date created'), updated_at : Joi.date().default(() => moment().forma.. Node.js/Jest 2022.04.02