How to use Unity to achieve sci-fi projection effects?
How to use Unity to achieve sci-fi projection effects? I am learning Shader and record the holographic projection effect I just played.
Scrapy crawler code template and general project
Scrapy crawler code template and general project, When I use scrapy to crawl things I am interested in, I always start project and genspider frequently, and then repetitively add some common function codes to the default template of the scrapy library
WPF enterprise development framework building guide, 2020 from entry to give up
WPF enterprise development framework building guide, 2020 from entry to give up, This series of articles aims to record the use of WPF in the development of new medical projects at work. I feel that we must unify some of the specifications and improve the efficiency of team development.
How to automatically add css prefix?
How to automatically add css prefix? Sometimes we need to automatically add a prefix to css, so I will share some methods to achieve this function. If you like, you can bookmark this post or share it on social media. Automatically add css prefix method How to automatically add prefixes to css styles. step 1 … Read more
SQLite many useful new features, SQLite 3.35.0 is released
Do you know SQLite many useful new features, SQLite 3.35.0 is released? The most popular embedded database SQLite development team released version 3.35.0 of SQLite on March 12, 2021
How to use static anonymous functions in C# 9
How to use static anonymous functions in C#9? Anonymous functions It has been in C# for many years. Although anonymous functions are very cool to use, the cost is not small. In order to avoid unnecessary memory allocations that you do not expect
Summary of website file upload vulnerability penetration
Summary of website file upload vulnerability penetration, The website more or less has some upload functions. Usually these upload functions may have some bugs, which gives hackers some opportunities.
How to use js postMessage to transfer messages across domains
How to use js postMessage to transfer messages across domains? In daily development work, when we need to send messages across domains on the client side, the postMessage provided by javascript can help us.
2021 Best JavaScript asynchronous programming guide
Best JavaScript asynchronous programming guide, js is single-threaded, and the execution stack and rendering thread of js in the browser block each other. The biggest advantage of single-threaded mode is that it is safer and simpler.