Set Bing Wallpaper After Login on Macos by absszero 2024-10-18 每天上班都會看到同事的桌布更換,這也是 Windows 內建的功能。我很好奇那樣的景致是哪裡拍攝的,期望有一天排進我的旅遊清單。所以決定找一下有沒有類似的應 Read more
Google spreadsheet updates by developer metadata by absszero 2024-10-14 透過 Google Sheets API 可以很方便的寫入資料到 Google 試算表。而我最近的一個挑戰是要更新後續新增的的資料。主要的難處是檢索,由於 API 不支援資料搜尋,所以無法透過查 Read more
Bootstrap and its breakpoint generation by absszero 2024-06-22 自定義斷點 Bootstrap 在官方文件關於斷點(Breakpoint) 一開始就提到可以透過自訂變數設定斷點。最近在處理前端項目的時候,也注意到了前人已經設定 Read more
Speed up Laravel test by absszero 2024-06-11 In Memory 最近在進行一個既有專案的開發,為了能夠在上面做單元測試,著手進行準備工作。首先嘗試用 SQlite InMemory 的方式。然後在 TestCase 繼承了 RefreshDatabase 處理資料庫的初始化。 namespace Tests; Read more
Test non-existent SQL functions by absszero 2024-04-20 Laravel 測試預設配置 SQLite 做為資料庫,並使用 In memory 的方式執行測試。但產品資料庫會使用的 SQL Function 不一定能在 SQLite 上使用,目前在嘗試幾個做法來解決測試無法通過特定資 Read more