Skillfully using CSS to realize colorful triangle border animation

Recently, a little friend asked me, where A website See a colorful triangle border animation realized by SVG, and ask whether it can be realized by CSS:A very interesting animation effect immediately reminds me of where I am CSS fantasy border animation The border animation introduced in the article is very similar:Its core is to use the conic ...

Posted by mcollyns on Thu, 10 Mar 2022 10:56:31 +0100

Create a high-level matte glass gradient background with a filter

Recently, a low code platform in our company was completed and launched, and its home page is like this (data desensitization):Peel off the content elements of the page and leave only the background, which is roughly as follows:At first, it was intended to cut the picture, but when you think about it carefully, this effect can also be made very ...

Posted by Mountain Water on Thu, 10 Mar 2022 10:51:02 +0100

Shiro550 post vulnerability WP (verify + exploit + rebound shell)

Shiro550, as a classic loophole of HW in 2020, has attracted countless heroes to bow downIn that year's competition, many students won the core targets and difficult targets all over the country through 550. They benefited a lot from their participation, both in attack and defenseAlthough it is a local test WP written two years ago, the vulnera ...

Posted by Allan- on Thu, 10 Mar 2022 10:47:23 +0100

Wechat applet upload file

Wechat applet upload file 1, Explain The photographing component has the function of wechat authorized camera and will transfer the uploaded pictures to the parent page in the form of array collection in combination with the back-end interface. Note: the component is suitable for uploading pictures separately without carrying parameters. Afte ...

Posted by red-x on Thu, 10 Mar 2022 10:29:17 +0100

4196 shortest path (heap optimized dijkstras algorithm template)

1. Problem Description: Given an undirected graph with n points and m edges. Points are numbered from 1 to n. The graph may contain double edges and self rings. Please find and output the shortest path from point 1 to point n. Input format The first line contains two integers n, m. The next m lines contain three integers a, b and W, indicati ...

Posted by johnwayne77 on Thu, 10 Mar 2022 10:27:14 +0100

Docker introduction private notes build docker private warehouse docker official warehouse

Two common image warehouses:Docker official warehouse registryVMware's open source warehouse harbor (built-in registry)Docker's official image warehouse is an application based on http protocol deployed in the container.The deployment and use methods are as follows:The official image warehouse of Docker is deployed in the registry container. Fi ...

Posted by en on Thu, 10 Mar 2022 10:27:41 +0100

R language data analysis tool data Table package -- detailed description of data frame structure processing

Copyright notice: This article is the original article of the blogger. Please indicate the source for reprint     R language data The table package comes with data The upgraded version of frame is used for the processing of data in data frame format. The biggest feature is fast. It includes two aspects: on the one hand, it ...

Posted by nevynev on Thu, 10 Mar 2022 09:54:32 +0100

To cheat the golden flower? The one implemented in Python

Hello, I'm an advanced Python player. preface"Cheat the Golden Flower", also known as three cards, is a folk multiplayer card game widely spread throughout the country. For example, the cheating golden flower in JJ competition (winning three cards) has unique card comparison rules. The game needs to test the player's courage and wisdo ...

Posted by nicknax on Thu, 10 Mar 2022 09:46:50 +0100

RKE cluster certificate management

v0.2.0 available Note: This is not "TLS certificate management in Kubernetes". For more details, please refer to Kubernetes documentation and RKE cluster Yaml example. Certificate is an important part of Kubernetes cluster. All Kubernetes components need certificates. You can use rke cert command of RKE to manage certificates. Rota ...

Posted by dfego on Thu, 10 Mar 2022 09:25:06 +0100

C language to calculate linear equations

Today, let's solve linear equations with c. There are two ways to solve linear equations manually. 1. Solve by elimination 2. Solve through matrix determinant, etc Now we want to use c language to solve linear equations with determinant. Before solving, we must first learn the knowledge of determinant. If you don't know determinant, please ...

Posted by mrwhale on Thu, 10 Mar 2022 09:20:42 +0100