Login

notes

Time:2022/06/10

Microsoft Teams—another way to make money

The pandemic has changed many things, and collaborative working and online working is one of them.

SAAS applications based on Microsoft Teams seem to be in huge demand.

No more talking, let’s go straight to the video.

For videos with Chinese translations, go to its official website.

tags:
Time:2022/05/29

Products are used to solve problems and satisfy needs

Every time I talk to investors. They always ask me: What problem does your product solve?

I go to apply for a job, go to an interview, and then I often tell people that I made such a product and solved such a problem.

People are confused: "Which aspect of the product are you good at? Front-end? Back-end? Or are you just good at solving problems?"

This has happened several times.

I really don’t understand why God couldn’t unify the standards and interfaces when creating this world. . . . .

I'm certainly good at problem solving.

What is the product used for? Isn’t it just for solving problems and meeting needs? ! !

In addition, I am not only good at solving problems, I am also good at asking questions. For making products, doing growth, doing data analysis, etc., the ability to ask questions is more important than solving problems.

Time:2022/04/15

nodejs server access txt file

The nodejs server accesses the txt file in the root directory.

Inaccessible.

I always thought it was caused by the reverse proxy of the nodejs server.

Today I found out that it is not.

It's caused by the configuration of the nginx server.

made some changes

location ~ .*.(js|css|txt)?$ # Just add |txt here.
{
expires 12h;
error_log off;
access_log /dev/null;
}
tags:
Time:2022/04/09

Continue to iterate the views engine

Continue to iterate on the views engine.

After this iteration, the views engine has completely become a microkernel architecture. The architecture of form engine and block engine is the same.

Time:2022/04/03

Do more creative things and less labor-intensive things.

Do more creative things and less labor-intensive things.

tags:
Time:2022/04/03

route, result, model, method

Routes, results, models, methods.

tags:
Time:2022/04/01

Respect things, respect people

Respect things and respect people.

You must be serious in everything you do.

We must also be serious about things and people.

tags:
Time:2022/03/30

There are no fools in this world

There are many smart people in this world, but there are no fools. If we have to say there are, there are only two types. One is thinking that you are smart, and the other is always thinking that others are fools.

tags:
Time:2022/03/23

Address selector for form engine

The form engine has been iterated in the past week. Added address selector. Not very satisfied, let’s do this first and talk about it later. The form title implements conditional configuration and does not have to be limited to a fixed value.

OMS has also made some iterations. Added an order type (free). Modified the order model.

The product management system has also made some iterations, adding a product type and a taxonomy for order classification.

Time:2022/02/08

The form engine is iterating today

I have always felt that there is something wrong with my form engine, but I have never found it.

It wasn't until yesterday that I discovered that the form items configured using my form engine could not be linked to each other.

It was iterated today to solve this problem and allow linkage between form items.

When the data of a certain form item changes due to user operation, the data or view of the associated form item will change accordingly.



copyright © www.lyustu.com all rights reserved.
Theme: TheMoon V3.0. Author:neo yang