neo yang

Copywriter, webmaster, product manager, architect, independent developer.

How to make a successful WEB3 product

If we say that WEB1.0 is the slave era, user data was plundered by websites. If we say that WEB2.0 is the feudal era, the relationship between users and platforms is…

Time:2023/06/28

Comparison of user behavior between TikTok and Douyin

In 2019, I developed a short video social APP for overseas markets. At that time, I did some comparative analysis on the user behaviors of Tiktok and Douyin. Here are some notes from that time.

1. About short videos and live broadcasts

For domestic users, short videos and live broadcasts are both used to create content, so short videos and live broadcasts are both content forms.

For overseas users, short videos and live broadcasts are first and foremost a means of communication. Short videos are first and foremost text messages, except that they send videos. Live broadcasts are first and foremost a phone call, except that they can synchronize video images, whether it is one-to-one or one-to-many.

This is why there are many social apps based on short videos and live communications overseas, while in China, most of them are products that produce short videos and serve to better produce live broadcasts.

 

2. About fans

For domestic users, fans are money, and the number of followers is the key number used for monetization.

For overseas users, especially European and American users (TikTok's user base is generally younger), fans are friends, and this is a number worth showing off. A large number of younger users on TikTok are generally proud of having many friends.

3. About live broadcast and live broadcast gifts

Domestic live broadcasts are all about content. They are mainly about selling art and goods. The pictures are beautiful, there are all kinds of temptations, and they are very elaborate.

Live streaming overseas, including TikTok, is truly a “communication tool.”

First of all, in terms of the total amount of live broadcasts, it cannot be compared with Douyin.

Then, the most common thing is a woman chatting with a group of men. Picture? Temptation? What is that? Just chatting casually. Such, giving gifts, very rare.

Occasionally, there are performers performing for money, but their quality and popularity are far from those of domestic live broadcasts. The gift-giving situation is also generally incomparable to that of domestic live broadcasts.

 

Time:2023/06/27

jQuery problem: juncaught typeerror: $ is not a function

js problems are all asynchronous problems.

WordPress also loads various js in a certain order. WordPress basically loads its own js first, and then loads its own defined js.

$(function(){})

In this way, if you encounter the following problems

uncaught typeerror: $ is not a function

You can change the way of writing

jQuery(function($){})

tags:

AIGC, Chat - What can GPT be used for?

Recently, I have discussed with many friends the topic of what "GPT" can be used for. Sort it out. 1. SEO and self-media creation in 2018 […]

Time:2023/06/25

The rise of artificial intelligence products

In the past two years, there has been an obvious trend.

More and more artificial intelligence software and hardware products are emerging.

Most of these products are used in various fields such as smart cities, AIOT, edge computing, smart agriculture, smart factories, robots, etc.

This general direction will only become more and more promising in the future.

Compared with the purely information-dimensional metaverse, this is a product direction that can directly intervene in the real world, profoundly affect the world, and ultimately lead to large-scale iterations in all directions of the entire society.

tags: ,
Time:2023/05/26

Regular expression to filter out links in articles

These two rules are both correct, but the first one succeeds and the second one fails. I don’t know why.

//This is successful. / ]*>/g //This failed. /<\/?a.*?>/g
tags:

Major changes in Internet user behavior

1. Changes of the Times and Business Opportunities 1. The Age of Carriages and the Age of Cars Before the emergence of automobiles, horse-drawn carriages were an important means of transportation. After the advent of automobiles, horse-drawn carriages […]

Time:2023/05/16

wordpress theme: How to get term data in archive——get_queried_object()

I've been iterating my own wordpress theme recently.

It is very common to obtain the term data of category and post-tag, two existing WordPress taxonomies, in the archive, and both have ready-made parameters and functions.

How to get the term data of custom taxonomy in archive?

get_queried_object()

This function can not only obtain the term data of custom taxonomy, but also the data of category and post-tag. Even if it is an archive of a custom post type, you can also get the current post type data.

    $term_data = get_queried_object();//In archive.php, use it directly.

URL on wordpress official website: https://developer.wordpress.org/reference/functions/get_queried_object/

You can also get the current post and user data. However, I haven't tried these two.

tags:
Time:2023/05/16

Documentation issue: wordpress Gutenberg editor blank page

Recently, for one of my websites, Baseon WordPress, the Gutenberg editor could not be used. When I opened it, the page was blank. I always thought it was caused by upgrading wordpress to v6.2 some time ago. I just figured it out today. It turns out that there is an extra "}" in a js file I wrote myself.

After removing this "}", the Gutenberg editor returns to normal.

tags:
Time:2022/09/09

Record a problem: $_SERVER['SERVER_NAME'] is the first domain name bound to the host

Record a question: $_SERVER['SERVER_NAME'] is the first domain name in the list of domain names bound to the host.

tags:

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