Blog | 博客

recently written gadgets

Original link: https://innei.ren/posts/programming/recently-2022_3-6 The rendering is generated by marked, there may be some incomprehensible sentences or typesetting problems. For the best experience, please go to: https://innei.ren/posts/programming/recently-2022_3-6 In a blink of an eye, it’s June. The last hydrology was in March, because I encountered a lot of things (you can observe it in the life record). […]

recently written gadgets Read More »

Create your own anime video with an AI model that surprised Makoto Shinkai

Original link: https://soulteary.com/2022/06/04/create-your-own-anime-video-with-an-ai-model-that-surprised-makoto-shinkai.html This article will introduce how to use the GAN model to generate your own anime-style videos, and generate a unique anime-style video for yourself, your favorite mushrooms, or naughty cute kids. This article is less difficult to operate and is suitable for students who want to try and understand the GAN model.

Create your own anime video with an AI model that surprised Makoto Shinkai Read More »

Meditation is bad

Original link: https://conge.github.io/2022/06/03/disadvantages/ Posting too much about meditation? Posting too much about meditation? Last week, I didn’t post about meditation for the following reasons. In order to get more people to see my meditation series, in addition to posting them on my blog, I also repost them on a few sites I frequent. After the

Meditation is bad Read More »

Meditation is bad

Original link: https://conge.github.io/2022/06/03/disadvantages/ Posting too much about meditation? Posting too much about meditation? Last week, I didn’t post about meditation for the following reasons. In order to get more people to see my meditation series, in addition to posting them on my blog, I also repost them on a few sites I frequent. After the

Meditation is bad Read More »

Linux common commands-15: head

The head command is used to display the content of the file. Similar to cat , the first 10 lines of the file are printed by default when no parameters are accepted. Syntax format: head [parameter] [file] Common parameters: Example # 默认显示head test.txt # 显示文件的前20行head -n 20 test.txt # 显示文件的前20个字符,注意和行的区别head -c 20 test.txt This article

Linux common commands-15: head Read More »

Linux common commands-14: fdisk

fdisk is a disk partitioning tool. It can perform hard disk partition operations, such as creating, deleting, formatting, etc. Using this command requires special care, and it also requires administrator privileges. Syntax format: fdisk [parameter] Common parameters: Example # 查看所有分区情况,包括多个磁盘sudo fdisk -l # 操作某个磁盘sudo fdisk /dev/sda Enter m to view the corresponding command Common such

Linux common commands-14: fdisk Read More »

Linux common commands-13: du

du is the abbreviation of Disk Usage , used to view the disk space. Unlike the df command, the du command looks at the disk space used by files and directories, not a partition. Syntax format: du [parameter] [file] Common parameters: Example # 显示指定文件所占空间du -sh file # 显示文件夹内所有文件大小du -sh dir # 显示文件夹内所有文件的大小du -ah dir/ This

Linux common commands-13: du Read More »

2022.6.3

Original link: https://www.justzht.com/2022-6-3/ I talked to a friend just now that I can use Node Editor with SDF as a parametric modeling tool, similar to Houdini’s, and then I went to see the SDF function definition of iq. I really want to do a demo, but I don’t know if I have time in June.

2022.6.3 Read More »

Linux common commands-12: df

The df command is the abbreviation of disk free , which is used to display the available disk space on the system. The default display unit is KB . The parameter -h is often used. The data is easier to read and understand. Syntax format: df [parameter] [specified file] Common parameters: Example df -h #

Linux common commands-12: df Read More »

Linux common commands-11: rmdir

The function of the rmdir command is to delete empty directories, and only empty directories can be deleted. Generally rarely used, directly use rm instead Syntax format: rmdir [parameter] [directory name] Common parameters: Example # 删除空目录dir rmdir dir # 递归删除,与rm -rf test1 作用相同rmdir -p test1/test2/test3 This article is reprinted from https://xugaoxiang.com/2022/06/03/linux-cmds-11-rmdir/ This site is for

Linux common commands-11: rmdir Read More »

Can the RISC-V architecture allow the Chinese core to overtake in corners and defeat intel, AMD, and Qualcomm?

For a long time, many people believe that RISC-V, a more open source and inclusive processor architecture, is the main direction for the development of domestic chips. There are also netizens who insist that the RISC-V architecture can allow the Chinese chip industry to overtake the curve and defeat chip giants such as Intel, AMD,

Can the RISC-V architecture allow the Chinese core to overtake in corners and defeat intel, AMD, and Qualcomm? Read More »