Compilation learning notes -- assembler format
Definitions, assumptions and references of segments
Definition of segment
format
segment_name segment [align] [combine] ['class']
statements
segment_name ends
;keyword segment Indicates the beginning of the segment definition, keyword ends Indicates the end of the segment definition(end of segment),segment_name Represents t ...
Added by nalkari on Wed, 02 Mar 2022 02:10:35 +0200
Java foundation - lock
1. Lock interface
Locks are tools that control access to shared resourcesLock and synchronize are the most common locks. They can achieve the purpose of thread safety, but they are quite different in use and functionLock does not replace synchronize, but provides advanced functions when synchronize is inappropriate or unable to meet require ...
Added by eirikol on Wed, 02 Mar 2022 02:09:58 +0200
MQ RabbitMQ High Availability Cluster: Keepalived installation and configuration
1 Introduction
Keepalived is a high-performance server high availability or hot standby solution. Keepalived is mainly used to prevent the occurrence of single point of failure of the server. It can cooperate with the load balancing servers of Nginx, Haproxy and other reverse agents to achieve high availability of the web server. Keepalived is ...
Added by Smackie on Wed, 02 Mar 2022 01:53:10 +0200
JS object Foundation
preface
Finally, I want to learn from you. For our program apes, we will never be single! No object? Impossible! Just one New, ha ha!!!
No more nonsense. Let's learn JS objects together!
1, What is the object?
Definition: in object-oriented programming, everything is an object! Object is a concrete thing. For example, a star is not an ...
Added by mistcat on Wed, 02 Mar 2022 01:40:49 +0200
Java learning notes XML and JSON
XML and JSON
1, XML(eXtensible Markup Language)
characteristic:
xml is a platform independent markup language xml is self descriptive effect:
Network data transmissiondata storage configuration file xml file: xml file is a way to save xml data xml syntax (see a case)
<?xml version="1.0" encoding="UTF-8"?>
<!--First l ...
Added by frost on Wed, 02 Mar 2022 01:37:57 +0200
Sword finger Offer 64 Find 1 + 2 +... + n
Sword finger Offer 64 Find 1 + 2 +... + n
1. Title Description
For 1 + 2 +... + n, it is required that keywords such as multiplication and division, for, while, if, else, switch, case and conditional judgment statements (A?B:C) cannot be used.
Example 1:
Input: n = 3 Output: 6
Example 2:
Input: n = 9 Output: 45
Restrictions: ...
Added by justintoo1 on Wed, 02 Mar 2022 01:36:09 +0200
C # construct Expression expression and call string Contains
If you are a C# developer, learning to use Expression will bring some benefits to writing some functions. For example, when we develop a paging function, we will have many query conditions. For novices, the code of these query conditions may be processed by splicing the where conditions of sql. When you learn to use Expression, This will be a v ...
Added by robk on Wed, 02 Mar 2022 01:28:10 +0200
leetcode363 - the maximum value of the rectangular area does not exceed the sum of K (prefix and + dichotomy) (TreeSet or auxiliary array dynamic return)
introduce
My LeetCode homepage, one problem one solution
Tags: queue, dynamic programming, binary search
363. The rectangular area does not exceed the maximum value of K and Difficulty difficulty
363. The rectangular area does not exceed the maximum value of K and: https://leetcode-cn.com/problems/max-sum-of-rectangle-no-larger-than-k ...
Added by Piba on Wed, 02 Mar 2022 01:12:42 +0200
[image encryption] Based on matlab GUI orthogonal Latin square + two-dimensional Arnold scrambling image encryption [including Matlab source code 813]
1, Introduction
1 purpose of digital image scrambling
So far, the more mature information hiding algorithms basically take the image as the carrier. Image scrambling, as the name suggests, is to disrupt the image and hide the real content of the original image. Digital image scrambling is similar to the idea of information file encryption. It ...
Added by shoppingspree on Wed, 02 Mar 2022 01:05:05 +0200
Vue custom instruction
Common built-in instructions
v: Text - > update textContent of elementV-html - > update innerHTML of elementV-IF - > if it is true, the current tag will be output to the pageV-else - > if it is false, the current tag will be output to the pageV-show - > control display / hide by controlling display styleV-for - > traverse arr ...
Added by bradmasterx on Wed, 02 Mar 2022 01:03:38 +0200