chart 畫圖 (excel) 取得連結 Facebook X Pinterest 以電子郵件傳送 其他應用程式 - 10月 01, 2021 1. Excel 做Box plothttps://www.youtube.com/watch?v=iE2SqkTpfXg2.Excel 儀表板https://www.youtube.com/watch?v=b1MrA6kVIIgA. Excel樞紐分析 的交叉分析篩選器B. 篩選器 直1改成橫4C. 2個篩選器 之間連動-- 篩選器右鍵"報表連線"D. 年分和所有圖表都連線, so 所有都打勾E. 結果: Excel 儀錶板 取得連結 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); //... 閱讀完整內容
留言
張貼留言