October 2022

car maintenance on saturday

Original link: https://www.cfanlost.com/archives/1250.html He has been with me in my car for six years. He has driven our family to many places, and he has also witnessed the days of our hard work step by step. With him, I became a car owner. At the beginning, I didn’t worry about the expenses of buying insurance, […]

car maintenance on saturday Read More »

Zhang Yitang was revealed to have proved Riemann’s conjecture related problems, shaking the mathematical community

Welcome to the WeChat subscription number of “Sina Technology”: techsina Text/Jin Lei Alex source/qubit Breaking News! The online mathematician Zhang Yitang has conquered the Landau-Siegel Zeros Conjecture. And this news is said to be said by Zhang Yitang himself when he participated in the Zoom online meeting of Peking University alumni. Such a revelation can

Zhang Yitang was revealed to have proved Riemann’s conjecture related problems, shaking the mathematical community Read More »

web client storage

Modern web browsers offer many ways to store data on the web client of the user’s computer – with the user’s permission – and retrieve it when it needs to. This allows you to keep your data for a long time, save sites and documents for offline use, preserve your personal configuration for your site,

web client storage Read More »

IndexedDB API

indexedDB is a low-level API for client-side storage of large amounts of structured data, including files/blobs. This API uses indexes to enable high-performance searches on this data. While Web Storage is useful for storing small amounts of data, it is less useful for storing large amounts of structured data. IndexedDB provides a solution. This is

IndexedDB API Read More »

An article to understand JS asynchronous programming, detailed explanation of callback, Promise, Generator, async/await usage

JavaScript is a single-threaded programming language that requires an asynchronous approach to achieve high performance. However, asynchronous programming is often confusing when you are just starting to learn. What is synchronous/asynchronous For example: if now you need to do two things, boil water and eat. So how do you allocate your time? Method 1: Boil

An article to understand JS asynchronous programming, detailed explanation of callback, Promise, Generator, async/await usage Read More »

What is the difference between declaring a variable with and without var in javascript

If you’re in the global scope, there’s not much difference. Read Kangax’s answer for explanation If you are in a function, then var will create a local variable, “without var” will look up the scope chain until it finds the variable or reaches the global scope (at which point it will create it) There is

What is the difference between declaring a variable with and without var in javascript Read More »

js popup window list

1. Pop up a full screen window <html> <body onload=”window.open(‘http://lre.cn’,’example01′,’fullscreen’);”>; <b>www.lre.cn</b> </body> </html> 2. Pop up a window that has been transformed by F11 <html> <body onload=”window.open(”http://lre.cn’,’example02′,’channelmode’);”>; <b>www.lre.cn</b> </body> </html> 3. Pop up a window with a favorite link toolbar <html> <body onload=”window.open(‘http://lre.cn’,’example03′,’width=400,height=300,directories’);”> <b>www.lre.cn</b> </body> </html> 4. Web page dialog <html> <SCRIPT LANGUAGE=” javascript ”>

js popup window list Read More »