const newObject = {...oldObject,wantToDeleteKey1:undefined,wantToDeleteKey2:undefined}delete newObject. wantToDeleteKey1delete newObject. wantToDeleteK...
2024/03/08
2024/03/03
gorm,update zero value
db.Select("*").Omit("CreatedAt").Updates(d)=>will update zero values in d&nb...
golang,string,containsAny,
strings.ContainsAny("hello", "open")=>truebecause the character ...
2024/03/02
div, change line code
whitespace-per-l...
2024/02/29
how to set file name when upload file,react
const modifiedFile = new File([file], "_icon.jpg", { type: file.type });const formData = new FormData(); formData.append("file", modifiedFil...
javascript, join object array
objArray.map(obj=>obj.a).join(',')- map-join&nb...
yarn uninstall
yarn remove xxxyarn add x...
2024/02/28
Docker not found when freshly installed on Mac
Docker not found when freshly installed on Mac- Docker Desktop -> Settings -> Advanced -> Choose System, not User -> Click [Apply & resta...
2024/02/27
Arrow function vs Function declaration
arrow function can not use thisarrow function must be defined before useFunction declaration can use new&nb...
spring boot test,spring context
get value from application.yamluse environmentuse profile@componentcomponent scan initialize the componentadd it to spring application contextcan get the bean from application context@Component equals @Bean in a @Configurationcan use @SpringBootTest to load spring application context&nb...