單親媽媽, 要加油, 要勇敢 取得連結 Facebook X Pinterest 以電子郵件傳送 其他應用程式 - 9月 14, 2021 一切都是最好的安排 勇敢!! 帶領你和 孩子們成為她們的驕傲 !!https://womany.net/read/article/25004https://mamibuy.com.tw/talk/article/90947 取得連結 Facebook X Pinterest 以電子郵件傳送 其他應用程式 留言
考績被打差了 輕率離職會更傷 - 2月 27, 2021 最後是看工作態度與敬業精神,小羊認真負責,但是很少到主管面前走動,主管常常很疑惑他究竟在忙些什麼;而胡大不同,他會主動向主管報備,並提出問題請示主管,在主管心裡留下主動積極的觀感。 考績是一面鏡子,照見的不是你看到的自己,而是主管看到的自己,而主管就是按照以上四個因素在評估你的績效,新的一年就抓緊這四大項辦了吧! https://www.yes123.com.tw/aboutwork_2020/article.asp?w_id=7082 閱讀完整內容
Arrays - DS (Reverse array) [Easy] - 2月 21, 2021 Example Return . Sample Input 1 Copy Download Array: arr 1 4 3 2 4 1 4 3 2 Sample Output 1 2 3 4 1 static int [] reverseArray( int [] a) { int [] b= new int [a.length]; int j=a.length; for ( int i= 0 ;i<a.length;i++){ b[j- 1 ]=a[i]; j=j- 1 ; } return b; } 閱讀完整內容
WireMock - 12月 10, 2024 (WireMock 在Spring boot 啟動 by chatgpt) 1.在 Spring Boot main 方法中啟動 WireMock Maven: <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock-jre8</artifactId> <version>2.35.0</version> <scope>test</scope> </dependency> 2. 在 Spring Boot main 方法中啟動 WireMock import com.github.tomakehurst.wiremock.WireMockServer; import static com.github.tomakehurst.wiremock.client.WireMock.*; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class Application { public static void main(String[] args) { // 啟動 Spring Boot 應用 SpringApplication.run(Application.class, args); // 啟動 WireMock 伺服器 WireMockServer wireMockServer = new WireMockServer(8081); //... 閱讀完整內容
留言
張貼留言