先森博客

It’s almost Chinese New Year, don’t discuss any servers anymore

Original link: https://www.sey.ink/5994/ It’s almost Chinese New Year, don’t talk about servers, computer rooms, cloud services and the like anymore. You bring your server home and it can’t bring you any real effect. Friends spend a lot of money in their pockets to eat, drink and have fun. electricity bill. Relatives and friends asked you …

It’s almost Chinese New Year, don’t discuss any servers anymore Read More »

appeared first on Senson Blog.

Original link: https://www.sey.ink/5777/ Yan Xiaoyan appeared first on Senson Blog . This article is reprinted from: https://www.sey.ink/5777/ This site is for inclusion only, and the copyright belongs to the original author.

Photoshop Shortcuts

Original link: https://www.sey.ink/5747/ PS is a popular image processing tool today.. The function is very powerful.. It is precisely because the function is so powerful.. So sometimes you can’t find some functions.. Waste too much time… And the solution is to write down these shortcut keys.. It is more convenient to operate… But to put …

Photoshop Shortcuts Read More »

Batch name files in the form of increasing serial numbers

Original link: https://www.sey.ink/5691/ Create a .txt file and enter the following content and save it as .bat format @echo off setlocal enabledelayedexpansion set count=900 for /f %%i in (‘dir /b *.jpg,*.png,*.bmp,*.jpeg,*.gif’) do ( set /a count+=1 echo renamed: %%i !count! rename %%i !count!.jpg ) Here the numbering starts from 901. To start the numbering from …

Batch name files in the form of increasing serial numbers Read More »

JavaScript escape quotes in strings

Original link: https://www.sey.ink/5458/ Defining a string must enclose it in single or double quotes. So what do you do when your string contains quotes ” or ‘ ? In JavaScript, quotes can be escaped by preceding them with a backslash ( \ ). const sampleStr = “Alan said, \”Peter is learning JavaScript\”.”; With the escape …

JavaScript escape quotes in strings Read More »