When my roommate drew the Christmas tree, I rolled up a handful of files to upload and download

๐Ÿ‡ Small wood come Yes \textcolor{Orange} {here comes Koki} Here comes Koki ๐Ÿฃ ...

Posted by lailaigogo on Sat, 01 Jan 2022 09:26:52 +0100

Basic tutorial for getting started with React

Basic tutorial for getting started with React What is React? React is a declarative, efficient and flexible JavaScript library for building user interfaces. Using react, you can combine some short and independent code fragments into a complex UI interface. These code fragments are called "components" What are the characteristics of ...

Posted by riddlejk on Sat, 01 Jan 2022 09:05:17 +0100

[learn flutter by hand] flutter's basic configuration and package volume optimization strategy for playing Android packages

Hi ~ bean skin powder! What are you learning recently? Has it become better? This time, please read the basic configuration and package volume optimization strategy of fluent packaging carefully produced by byte beating "saucxs", so as to increase your cross domain knowledge and take a small step on the road of "full stack" ...

Posted by redrabbit on Fri, 31 Dec 2021 22:00:42 +0100

"ES6" - learning notes

Compare the scope of the var and let keywords When a variable is declared with the var keyword, it is declared globally. If it is declared inside a function, it is declared locally. The let keyword behaves similarly, but has some additional functionality. When you use the let keyword to declare a variable in a code block, statement, or expres ...

Posted by Rodis on Fri, 31 Dec 2021 21:15:42 +0100

Basic logic of XSS test bypass

The previous section talked about the closure of XSS, and some articles will confuse the closure with bypass. In my opinion, closing is the basis for meeting the basic syntax requirements of the browser for script execution; Bypassing is a breakthrough means used when the program is equipped with imperfect security measures. So how should this ...

Posted by FourthChapter on Fri, 31 Dec 2021 16:21:58 +0100

Restrictions on Js file upload type of Web front end (judged according to file header information)

preface In the process of Web project development, the file upload function is almost essential. Many times, when we upload files, especially when we open the file upload function to ordinary users, we generally need to limit the format of uploaded files to prevent bad users and hackers from uploading virus script files to the server, Common f ...

Posted by ridiculous on Fri, 31 Dec 2021 15:24:28 +0100

webpack basic usage

Webpack is a technology that many front-end workers will contact. It has no doubt about the effect of code optimization, but its complex operation is undoubtedly very troublesome for Xiaobai who is new to the front-end. Today, let's talk about the introduction and use of the basis of webpack. Basic concepts webpack is a static module packer f ...

Posted by Ludichrist on Fri, 31 Dec 2021 10:27:52 +0100

Build encrypted web service https httpd+mod_ssl

Build encrypted web service https httpd+mod_ssl install To implement encryption authentication, this security module is called mod_ssl yum install mod_ssl -y After installation, an SSL is generated under the sub configuration module Conf file Go to view the configuration items in the file vim /etc/httpd/conf.d/ssl.conf Listen 443 ht ...

Posted by cash09 on Fri, 31 Dec 2021 01:39:04 +0100

The fourth day of learning React from scratch ~ realize a good-looking pop-up calendar component

preface Today is the fourth day of learning react. My first small goal is to realize all the functions of todo list software on the web side one by one through react! The previous articles will be put in the preface: ๐Ÿ“ฆ Code warehouse link React todo gitee warehouse ๐Ÿ’ป Online preview effect React todo development progress # ๐Ÿ‘€ Day 1 ...

Posted by rulian on Thu, 30 Dec 2021 20:05:23 +0100

JavaScript quick start

JavaScript is a client-side scripting language. Running in client browsers, each browser has an engine to parse JavaScript. Scripting language: it can be parsed and executed directly by the browser without compilation. The core function is to enhance the interaction between users and HTML pages and make the pages have some dynamic effects. ...

Posted by aysx on Thu, 30 Dec 2021 17:58:01 +0100