const modifiedFile = new File([file], "_icon.jpg", { type: file.type });const formData = new FormData(); formData.append("file", modifiedFil...
2024/02/29
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...