September 2022

Global Times reports that NSA hacked telecom infrastructure

In the attack on Northwestern Polytechnical University, the NSA was found to have hacked into telecommunications infrastructure, the English-language Global Times reported . To investigate the cyber attack, the National Computer Virus Emergency Response Center and Qihoo 360 jointly launched a comprehensive technical analysis. They found that NSA TAO (Tailored Access Operations) used 41 types

Global Times reports that NSA hacked telecom infrastructure Read More »

Leapmotor “leads” in losses

Title map | Leapmotor official website Welcome to the WeChat subscription number of “Sina Technology”: techsina Written | Edited by Qian Qian | Li Xinma Source: DoNews Seven years after its establishment and three years after the official delivery of vehicles, Leapmotor, which has grown rapidly, has been shortlisted for the second echelon of new

Leapmotor “leads” in losses Read More »

The sword refers to Qualcomm, Mobileye, Nvidia’s radicalism and dilemma

Welcome to the WeChat subscription number of “Sina Technology”: techsina Text / Zhou Xiongfei Source/Link Travel (ID: lianxiachuxing) In addition to Apple, Nvidia’s annual technology conference is also dubbed the “Spring Festival Gala” by some netizens. The reason why it is called “Spring Festival Gala” is because at each conference, NVIDIA will come up with

The sword refers to Qualcomm, Mobileye, Nvidia’s radicalism and dilemma Read More »

The collaborative commercialization of Zhongzhi Road has been completed again, and the operation of the network-connected Robobus has been launched

In the impression of most people, the realization of L4-level autonomous driving is inseparable from complex sensors, large computing power chips, and software and hardware such as high-precision maps that are updated in time. become an expensive luxury. In this case, some innovators are trying to “reduce” hardware and software for self-driving cars by enhancing

The collaborative commercialization of Zhongzhi Road has been completed again, and the operation of the network-connected Robobus has been launched Read More »

Xinli Sensing has obtained a strategic investment of 30 million yuan

Xinli Sensing is a manufacturer and service provider of sensor products, affiliated to Jiangxi Xinli Sensing Technology Co., Ltd. Recently, Xinli Sensing has obtained a new round of financing of 30 million yuan. The investors are Hanwei Technology and Zhengzhou High-tech Zone Industrial Development Guidance Fund. The post-investment valuation is 110 million yuan, accounting for

Xinli Sensing has obtained a strategic investment of 30 million yuan Read More »

Exploring yourself is a long way

In this age of mass awakening, we often hear “we need to explore ourselves and understand ourselves”. But suppose we rudely divide people into three categories: those who think they don’t need to find themselves (or those who don’t know the importance of “finding themselves”), those who are searching for themselves, and those who have

Exploring yourself is a long way Read More »

Japan will open to entry

Japan announced a new entry policy that will be implemented on October 11: the cap on the number of people entering a single day will be lifted, the ban on individual independent travel will be lifted, and visa requirements will be waived for short-term stays. This move is intended to use the depreciation effect of

Japan will open to entry Read More »

js to determine whether a string contains a string of five methods

Method 1: indexOf() (recommended) var str = “123”; console.log(str.indexOf(“3”) != -1 ); // true The indexOf() method returns the first occurrence of a specified string value in a string. If the string value to be retrieved does not appear, the method returns -1. Method 2: search() var str = “123”; console.log(str.search(“3”) != -1 ); //

js to determine whether a string contains a string of five methods Read More »

Problems using mysql “=null”

select last_name , job_id from employees where manager_id is null ; select last_name , job_id from employees where manager_id <=> Null ; select last_name , job_id from employees where manager_id = Null ; last = null is wrong If one of the values, strings, or expressions on either side of the equal sign is NULL,

Problems using mysql “=null” Read More »