發表文章

Excel 項目管理甘特圖 – 含計劃和實際進度對比

https://www.projectclub.com.tw/hard-power/excel-manage/1507-excel-gantt-chart.html  https://kknews.cc/zh-tw/career/l99zpnb.html https://www.managertoday.com.tw/articles/view/55990 https://www.cheers.com.tw/article/article.action?id=5098405&page=2 https://projectmanager.com.tw/%E5%B0%88%E6%A1%88%E7%AE%A1%E7%90%86/%E7%94%98%E7%89%B9%E5%9C%96/ https://jafnnote.com/%E3%80%90%E6%95%99%E5%AD%B8%E3%80%91powerpoint-%E8%A6%81%E6%80%8E%E9%BA%BC%E5%81%9A%E7%94%98%E7%89%B9%E5%9C%96%EF%BC%9F%E8%B7%9F%E8%91%97%E6%AD%A5%E9%A9%9F%E9%A6%AC%E4%B8%8A%E6%90%9E%E5%AE%9A%EF%BC%81/ https://www.bnext.com.tw/article/58745/powerpoint-briefing

參考外貿術語

 http://www.886111.com/Elements/Extends/Tradeing/Terminology/Phase_of_Trade.pdf https://www.b2bers.com/big5/language/term/200803/058.html https://wonderbear8.pixnet.net/blog/post/71246704 學超持戒研讀日記 http://www.mantraco.com.tw/education/education082.htm https://www.freightamigo.com/zh-hant/shipping-tips-zh-hant/%E8%B2%A8%E9%81%8B%E5%AF%84%E4%BB%B6101-%E7%94%9A%E9%BA%BD%E6%98%AF%E5%95%86%E6%A5%AD%E7%99%BC%E7%A5%A8-%E4%B8%80%E6%96%87%E4%BA%86%E8%A7%A3%E6%9B%B4%E5%A4%9A-freightamigo/

AWS_EBS調整磁碟空間爆了如何去更新

圖片
  最近網站遇到這個尷尬錯誤訊息 後來經確查看起來當時選的規格有點太客家只設置了EBS 15GB 一台主機同時host 網站加上一整個資料庫裝在上面說實在的真的規格可以再提升一些 這邊選擇EBS 磁碟區動作->調整磁碟區 這裡要注意提升只能單向(小至大,因此若我放大從15GB升至50GB就不能返回再退回到小於50GB的任一大小選項) 套用修改後發覺還是15G 主要是因為主機要記得重啟 OK 再來下df指令查看有提升。

DCT轉換觀察低中高頻區域處理

圖片
  1.write your name on the Mandrill(Baboon) image for color and grayscale images. 2.2. Split the grayscale Baboon image into 2^n (n= 0, 2, 4, 6 or 8) blocks equally. Please make n as an input so the program can dynamically split the image. If n= 6, the block size is 64X64 each. Use DCT to convert each 64x64 block to convert the block into the frequency domain. Show the image (you may need to scale the image so the details can be displayed). 當n=2->num_blocks = 2^2 = 4,代表影像被分為4塊,每塊尺寸是256*256像素 ->寬度來看分2格就是2*256 當n=4->num_blocks = 2^4 = 16,代表影像被分為16塊,每塊尺寸是128*128像素 ->寬度來看分4格就是4*128 當n=6->num_blocks = 2^6 = 64,代表影像被分為64塊,每塊尺寸是64*64像素 ->寬度來看分8格就是8*64 第一階段matlab code 可直接將函數跟script的.m檔案寫在一起 之後要呼叫時候 函數定義必須要在呼叫之後 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 img_color = imread(" 4.2 . 03. tiff"); % 定義文字及其屬性 text = '周冠羽' ; po...