ChatGPT based customer service
There are already some people offering similar products on the internet, but not free.https://platform.chaticmedia.com/
https://fastbots.ai/#pricing
I grab some information from FAQ on UE website (there are too many words in total, so I don't want to copy and paste them all, just grab some to test the chatbot), and feed it to my ChatGPT, and it can answer the questions.
UE FAQ
Deployment, you can ask the bot any questions, not just related to UE, but don't ask too many, it seems it charges money.
Repo, my source codeYou will not find any similar codes on the internet, most example codes only implement the first round of dialog, so can not remember the previous conversation, and use the information later on.
Even the exisiting product separate frontend and backend in different projects, whereas I build the full-stack under a full-stack framework under the same repo.
Nien-Ying Chou changed a year agoView mode Like Bookmark
Data
Kaggle
Libraries
General
==pandas==Data manipulation and analysis
==NumPy==
Adding support for large, multi-dimensional arrays and matrices, along with a large collection of high-level mathematical functions to operate on these arrays.
Nien-Ying Chou changed a year agoView mode Like Bookmark
JMeter
What is perfomance test?
A non-functional software testing technique that determines how the speed, response time, stability, reliability and scalability of an application holds up under a given workload.
Why do we need perfomance test?
At least one of the following reasons:
To determine whether the application satisfies performance requirements (for instance, the system should handle up to 1,000 concurrent users).
To locate computing bottlenecks within an application.A bottleneck is a point of congestion in a production system that stops or severely slows the system.
Nien-Ying Chou changed a year agoView mode Like Bookmark
Tool
Testing
Katalon - You don't even have to write test code, beginner-friendly
Performance Testing
JMeter
Test APIs, and simulate users' activities related to backend10000 users login, and fetch their page information to display on the screen
AWS, Auto Scaling
Choose a server with better capability
Refactor data flow logicAPIs logicAlgorithm
API parametersData types (FormData, json)
Nien-Ying Chou changed a year agoView mode Like Bookmark
Landkreis Hualien
Eine andere Welt in Taiwan

Note:
In meiner Präsentation geht es um das Theme, eine Urlaubsregion aus meinem Heimatland.
Zunächst erkläre ich warum Landkreis Hualien ist eine beliebte Urlaubsregion in Taiwan, dann zeige ich Ihnen die Bilder von Landkreis Hualien und sage ich wo können Sie genießen. Danach rede ich wie können Sie Unterkünfte suchen in Landkreis Hualien.
Es gibt hohes Gebirge in der Mitten Taiwan
Nien-Ying Chou changed a year agoSlide mode Like 1 Bookmark
Swagger setting
Installation
swagger-jsdoc
This library reads your JSDoc-annotated source code and generates an OpenAPI (Swagger) specification
swagger-ui-express
This module allows you to serve auto-generated swagger-ui generated API docs from express
Nien-Ying Chou changed 3 years agoView mode Like Bookmark
If your state involves previous state, then you should write it as a call back function.
import { Component } from 'react';
// <Props, State>
class CounterState extends Component<object, { counter: number }> {
constructor(props: object) {
super(props);
this.state = {
counter: 0
Nien-Ying Chou changed 3 years agoView mode Like Bookmark
All in one docker-compose.yml
Introduction
It's so annoying and mentally exhausted to install tons of software just to a new computer/new device, hence we can write a ==docker-compose.yml== to handle all of these for us!
docker-compose.yml
MySQL
WordPress
Postgres
Redis
Jenkins
Nien-Ying Chou changed 3 years agoView mode Like Bookmark