July 2022

only music lasts forever

Original link: https://hin.cool/posts/guahua.html In the early days of the renovation, I envisioned hanging my favorite movie footage and music albums on one wall. But I don’t know how to design, and I don’t know how to put some pictures with different styles and strong color impact on the same wall. After moving in for a […]

only music lasts forever Read More »

Go channels and locks

How to communicate between different goroutines? There are two options: 1. Mutex of global variables 2. Use pipeline channel to solve Because there is no lock on the global variable m, there will be a resource contention problem, and an error will occur in the code, prompting concurrent map writes var ( myMap = make(map[int]int,

Go channels and locks Read More »

go tcp programming

There are two types of network programming: 1) TCP socket programming is the mainstream of network programming. The reason why it is called Tcp socket programming is because the bottom layer is based on the Tcp/ip protocol. For example: QQ chat 2) http programming of b/s structure, when we use the browser to access the

go tcp programming Read More »

html video video leave picture in picture event leavepictureinpicture event

The leavepictureinpicture event is fired when the HTMLVideoElement leaves picture-in-picture mode successfully. This event is not cancelable and does not bubble. Syntax Use the event name in methods like addEventListener() , or set an event handler property. addEventListener ( ‘leavepictureinpicture’ … The post html video video exit picture-in-picture event leavepictureinpicture event first appeared on Lenix

html video video leave picture in picture event leavepictureinpicture event Read More »

html js click on blank space to close custom popup layer

Usually to make a custom drop-down box, the expanded div needs to be closed after clicking any blank area $(document).on(‘click’,function(e){ var _con = $(‘.ztree,.js_ztree’); // Set the target area (check elements that do not need to be closed when clicking) if(!_con.is(e.target)&&_con.has(e.target).length === 0){ $(‘.ztree’).hide() } }) … The post html js closing custom popup layer

html js click on blank space to close custom popup layer Read More »

video picture-in-picture (small window)

video picture-in-picture (small window) < video id = “video_paly” controls src = “https://v-cdn.zjol.com.cn/280443.mp4” poster = “https://ossweb-img.qq.com/images/lol/web201310/skin/big91012.jpg” >您的浏览器不支持video 标签。 < / video > < button onClick = { ( ) => { var video : any = document . getElementById ( “video_paly” … The post video Picture-in-Picture (Small Window) first appeared on Lenix Blog . This

video picture-in-picture (small window) Read More »

JavaScript, jQuery’s css method is invalid

I ran into a problem today. Trying to add css attributes to a node through jquery to make it achieve the expected style performance. But it doesn’t work. But in another way. Invalid spelling: //这种写法不生效。 $dom.find(“p.text-p”).css(“-webkit-line-clamp”,3) ; //或$dom.find(“p.text-p”).css({“-webkit-line-clamp”:3}) ; Effective spelling: //此处这个3,可以是个变量。 $dom.find(“p.text-p”).attr(“style”, “-webkit-line-clamp:” + 3); Note that in this case, the css() method does

JavaScript, jQuery’s css method is invalid Read More »

How to replace strings in js

The method of string replacement in js: 1. Use regular expression, the syntax is [str.replace(“string to be replaced”, “new string”)]; 2. Use conventional replacement method, the syntax is [ str.replace(/string to be replaced/g, “new string”)]. Related graphic recommendation: js tutorial The method of string replacement in js: Two methods: regular & regular str.replace(“string to be

How to replace strings in js Read More »

Evening News: Global gender equality will take 132 years

Original link: https://sehseh.substack.com/p/132 Good night, In recent years, Mattel, a toy company that has been committed to expanding Barbie’s diverse image, announced that the latest heroine of its “Inspiring Women Series” doll is Jane Goodall, a famous British biologist and animal conservationist , to commemorate her love for chimpanzees. Contributions to research and conservation work.

Evening News: Global gender equality will take 132 years Read More »

Record yourself | 2022.07.14

Original link: https://www.bgbiji.com/1059.html 1. The biggest tragedy of a person is the refusal to grow and mature. 2. Don’t jump to conclusions about anything unless you see it all. 3. Do what you need to do, and do it as well as you can, and leave the rest to your fate. 4. We can deceive

Record yourself | 2022.07.14 Read More »

Amazon makes concessions to EU, hopes to end antitrust probe by year-end

Visit the original URL The European Union’s antitrust regulator, the European Commission, said today that Amazon has offered not to use seller data for its own retail business and made other concessions to end the European Union. antitrust investigation. Amazon also promises to treat sellers’ Buy Box offers equally. The Buy Box allows consumers to

Amazon makes concessions to EU, hopes to end antitrust probe by year-end Read More »