Blog | 博客

Convex Hull

Original link: https://yousazoe.top/archives/84b74385.html introduction In this section we will explore the central problem of computational geometry: the convex hull problem. Convexity Why Convex Hull The first stop of our computational geometry is the convex hull problem, which is at the core of computational geometry, and this core is reflected in the fact that almost all […]

Convex Hull Read More »

? Thanks to JetBrains for supporting my open source project!

Original link: https://www.mokeyjay.com/archives/3171 ? Thanks to JetBrains for supporting my open source project! I will continue to work hard! JetBrains Open Source Project Free License Program The post ? Thanks to JetBrains for supporting my open source project! first appeared on mokeyjay – Super Xiao Zi . This article is reprinted from: https://www.mokeyjay.com/archives/3171 This site

? Thanks to JetBrains for supporting my open source project! 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 »

Rendering html objects in layui table

The first <script type=”text/html” id=”see-bar”> <a class=”layui-btn layui-btn-primary layui-btn-xs ” data-id=”” onclick=”see(this)” lay-event=”See” style=”color:#2880cb”>< /a> </script> table.render({ . . . , cols: [[ , { ‘13%’, title: ‘card number’, align: ‘center’, rowspan: ‘1’, toolbar: ‘#see-bar’ } ]] . . . }); the second , cols: [[ { type: … The post rendering html objects in

Rendering html objects in layui table Read More »

js method to split string

js method to split string Applicable to each scene is different const arr = [ ‘1-2’ , ‘1-3’ , ‘2-3’ , ‘3-4’ ] ; 1. string.split() Separated by special characters ‘1-2’ . split ( ‘-‘ ) // [‘1’, ‘2’] 2. String.substring(start,stop) start is required. A non-negative integer specifying the position in string of the first

js method to split string Read More »

What is Ambient Mesh?

Ambient Mesh by Istio Community , is essentially to separate the L4 and L7 functions in the sidecar proxy (Envoy), so that some users who only need security functions can use Istio with the least resistance (low resource consumption, operation and maintenance costs). This article will introduce you to Ambient Mesh, why you need it,

What is Ambient Mesh? Read More »

Absolutely impossible game ads on Simplified Chinese social networks

Original link: https://onojyun.com/2022/09/23/7256/ △ 266|A game advertisement that is absolutely impossible for a simplified Chinese social network Don’t be fooled, the “this kind of game” mentioned in the title must not exist in simplified Chinese social networks, even if it is more brainwashing, more eye-catching, and more addictive than those stupid advertisements in WeChat Moments

Absolutely impossible game ads on Simplified Chinese social networks Read More »

Tech Enthusiasts Weekly (Issue 224): Why Figma wins over Sketch

Original link: http://www.ruanyifeng.com/blog/2022/09/weekly-issue-224.html Here is a record of weekly tech content worth sharing, published on Friday. This magazine is open source (GitHub: ruanyf/weekly ), welcome to submit issues, contributions or recommend scientific and technological content. Weekly discussion forum post “Who’s Hiring? “ , provides a lot of programmer employment information, welcome to visit or post

Tech Enthusiasts Weekly (Issue 224): Why Figma wins over Sketch Read More »

Rum Row

Original link: https://s3-eu-west-1.amazonaws.com/dailyartartwork/img-2022080362eac69744b75 Frederick Judd Waugh was an American artist best known for his marine art. Waugh was the son of Samuel Waugh, a famous portraitist in Philadelphia. He studied with Thomas Eakins at the Pennsylvania Academy of Fine Arts and Adolphe-William Bouguereau at the Julian Academy in Paris. After leaving Paris, he moved to

Rum Row Read More »

Access to draw.io’s drawing in Dokuwiki

Original link: https://www.ixiqin.com/2022/09/23/access-the-draw-in-dokuwiki-io-of-drawing/ As an engineer, I will inevitably add flowcharts, sequence diagrams, etc. to my blog/wiki. Therefore, a simpler way of drawing is required. In the past, pictures were drawn locally and then copied and uploaded to the Wiki. However, with the emergence of online drawing tools such as tldraw and draw.io, people have

Access to draw.io’s drawing in Dokuwiki Read More »