[Linux] dns domain name resolution service

1. DNS 1.1 Introduction to DNS Domain name resolution: (English: Domain Name System, abbreviation: DNS) is a service of the Internet. As a distributed database that maps domain names and IP addresses to each other, it can make people access the Internet more conveniently. DNS uses udp53 and tcp53. Currently,the length limit for each level […]

There is a vulnerability in the third-party component used by Android APP. After rectification, an error is reported: ava.lang.NoClassDefFoundError: Failed resolution of: Ljava/awt/Color;

Recently, the company’s app was detected to use third-party components containing vulnerabilities and needs to be rectified. Record: some problems encountered during the rectification process and their solutions. 1. The component commons-net-3.3.jar has a vulnerability CVE-2021-37533. According to the official website announcement, just upgrade to 3.10.0 or above. build.gradle under app implementation ‘commons-net:commons-net:3.10.0’ Apache official […]

The linux-5.4.18 kernel forces the output of graphics display signals and specifies the resolution through the firmware file.

Table of Contents 1 Introduction 2 Set the connector status to “connector_status_connected” 2.1 Connector status 2.2 Forcibly set the connector status to “connector_status_connected” 2.2.1 Introduction 2.2.2 Get the name of the connector 2.2.3 Add: video=DP-1:D to the startup parameters 3 Set the resolution through firmware 3.1 Create firmware file (take 1920×1200 resolution as an example) […]

Revealing the principle of DNS resolution in docker containers

Background While using docker these days, I encountered some problems with DNS resolution in the container. So I took some time to figure out the principle and wrote this article to share. 1. Container started by docker run command Take starting a busybox container as an example: root@ubuntu20:~# docker run -itd –name u1 busybox 63b59ca8aeac18a09b63aaf4a14dc80895d6de293017d01786cac98cccda62ae […]

LINGMESS: Linguistically Informed Multi Expert Scorers for Coreference Resolution (lingmess-coref)

1 Introduction Figure 1 atchitecture of multi expert model just as the shown diagram, which categorize the mention-pairs into 6 types, and there will be a trainable scoring function for each category. 2 six types mention pairs PRON-PRON-C: compatible pronouns based on their attributes such as gender, number and animacy; PRON-PRON-NC: incompatible pronouns; ENT-PRON: a […]

EfficientViT: Multi-scale linear attention for high-resolution dense prediction

Title: EfficientViT: Multi-Scale Linear Attention for High-Resolution Dense Prediction Paper: https://arxiv.org/abs/2205.14756 Chinese version: [Reading Paper] EfficientViT: Enhanced Linear Attention for High-Resolution Low-Computation transforms softmax attention into linear attention_Shaner’s Blog-CSDN Blog Code: https://codeload.github.com/mit-han-lab/efficientvit/zip/refs/heads/master Table of Contents 1. Abstract 2. Main contributions 3. Methodology 3.1 Multi-Scale Linear Attention 3.2 EfficientViT architecture 4. Experiment 4.1 Ablation studies 4.2 […]

Matlab implementation of airspace conflict detection and resolution based on GJK algorithm

Table of Contents 1. GJK algorithm 2. Horizontal conflict detection model based on GJK algorithm 2.1 Establish a spatial rectangular coordinate system and restore the shape of the airspace itself 2.2 Constructing Minkowski support points 2.3 Iteratively find support points and construct triangles 2.4 Check whether the triangle contains the origin 2.5 Solve the minimum […]