Two Java replicas of SUSCTF2022

Two Java replicas of SUSCTF2022 preface I didn't watch the game. First, I can't remember Java after touching the whole winter vacation... Second, because the hearts and minds of the team are directly seconds.. However, these two fastjson seem to have some strange problems. If you reproduce them, just learn something from them. baby gadget v ...

Added by GoodGuy201 on Wed, 02 Mar 2022 16:36:24 +0200

Day13 DOM operation, attribute operation and event

1 simulate document tree structure 2 how to get elements 1) Get element by id var div1 = document.getElementById("box1"); 2) Get element by class name var p1Arr = document.getElementsByClassName("p1"); Pseudo array definition: 1. It has the length attribute, and other attributes (indexes) are non negative integers (the index in the objec ...

Added by john_wenhold on Wed, 02 Mar 2022 15:17:41 +0200

Small changes in Logo, big differences in mood, SVG vector animation format website Logo picture production and practice tutorial (Python 3)

The original text is reproduced from "Liu Yue's technology blog" https://v3u.cn/a_id_207 Once upon a time, SVG(Scalable Vector Graphics) vector animation was known as a technology cursed by browsers because of poor hardware support (IE) and endless compatibility tuning (Safari). However, today in 2022, everything is different. It is ...

Added by convinceme on Wed, 23 Feb 2022 18:21:41 +0200

JavaSpript Learning Notes

1. What is JavaSpript 1.1 Overview javaSpript is one of the most popular scripting languages in the world A qualified backend must be javaScript proficient 1.2 History Introduction: https://blog.csdn.net/kese7952/article/details/79357868 ECMAScript: A standard that can be understood as javaScript The latest version has reached es6~but mo ...

Added by beachcomber on Mon, 07 Feb 2022 19:51:19 +0200

js garbage collection and memory leak

js garbage collection The Javascript of the browser has an automatic garbage collection mechanism (GC). The garbage collector will periodically (periodically) find out those variables that are no longer in use, and then release their memory. However, this process is not real-time, because it is expensive and stops responding to other operation ...

Added by maniac1aw on Fri, 21 Jan 2022 08:42:14 +0200