This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
看看網頁版全文 ⇨ 雜談:MacBook好像不是只有一種 : TALK: MacBook Seems Not to Be the Only One | |
https://blog.pulipuli.info/2025/07/talk-macbook-seems-not-to-be-the-only-one.html | |
最近拿到了一台別人不要的MacBook Air,這是2015年出產的版本。 | |
但沒想到MacBook Air的種類比我想像中的還要複雜許多。 | |
這個種類不只是指筆電的型號,還有它的週邊們。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
看看網頁版全文 ⇨ 在Docker的Nextcloud用腳本新增外部網頁連結 : Adding External Site Links Using Scripts in Nextcloud on Docker | |
https://blog.pulipuli.info/2025/07/adding-external-site-links-using-scripts-in-nextcloud-on-docker.html | |
客製化Nextcloud的下一步,我們能不能將外部網頁嵌入到Nextcloud的應用程式裡面呢?答案是使用外部網頁(External sites)擴充功能。 | |
我們可以進一步在Docker的Hook Folders中的post-installation資料夾中加入腳本,讓Nextcloud安裝完成後,自動開啟外部網頁擴充功能,並且將指定的網址加入到Nextcloud系統中。 | |
The next step in customizing Nextcloud: can we embed external web pages into Nextcloud applications? The answer is yes, using the External sites app. We can further automate this process by adding a script to the post-installation folder within the Docker Hook Folders. This script will enable the External sites app and add specific URLs to the Nextcloud system after Nextcloud installation is complete.。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
看看網頁版全文 ⇨ 雜談:3M牙線停售了 : TALK: 3M Dental Floss Discontinued | |
https://blog.pulipuli.info/2025/04/talk-m-dental-floss-discontinued.html | |
之前我很常用的3M牙線,最近想要補充庫存的時候,我才發現它因為生產過程造成PFAS而停售了。 | |
---- | |
# 3M細滑微孔結牙線 / 3M Stylish Dispenser。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
看看網頁版全文 ⇨ Nextcloud客製化網頁:插入外部JavaScript腳本 : Nextcloud Customized Webpage: Inserting External JavaScript Scripts | |
https://blog.pulipuli.info/2025/06/nextcloud-customized-webpage-inserting-external-javascript-scripts.html | |
要大幅度修改Nextcloud的網頁的話,建立主題(theme)可能是最常見的建議。 | |
但如果我們是要在Nextcloud的網頁裡面插入外部JavaScript腳本的話,這手續可就麻煩得多了。 | |
讓我們應用調整Docker的Nextcloud的技巧,在Nextcloud安裝完後,自動佈署修改後的程式碼吧。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
看看網頁版全文 ⇨ 雜談:修正「布丁布丁吃什麼?」部分功能 : TALK: “Pulipuli’s Blog” Feature Improvements | |
https://blog.pulipuli.info/2025/06/talk-pulipulis-blog-feature-improvements.html | |
每隔一段時間就把累積的問題逐步修正,這次要來修正的是下載跟目錄的問題。 | |
---- | |
# 下載文章 / Article Download。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
看看網頁版全文 ⇨ 讓Docker架設的Nextcloud預設關閉或開啟應用程式 : Enabling or Disabling Apps by Default in a Dockerized Nextcloud Instance | |
https://blog.pulipuli.info/2025/06/enabling-or-disabling-apps-by-default-in-a-dockerized-nextcloud-instance.html | |
既然談到用Docker架設Nextcloud,那我們就要活用Docker的架構,讓Nextcloud不僅僅是「開箱可用」,而且還是「自訂後」的可用。 | |
我們可以客製化的指令放在「/docker-entrypoint-hooks.d/post-installation」資料夾內,這樣就可以讓Nextcloud初次安裝完成後,自動進行我們要的設定。 | |
Since we're talking about setting up Nextcloud with Docker, let's leverage Docker's architecture to make Nextcloud not just "usable out-of-the-box," but usable after customization. We can place custom commands in the /docker-entrypoint-hooks.d/post-installation directory, allowing Nextcloud to automatically perform our desired configurations after the initial installation completes.。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
看看網頁版全文 ⇨ 雜談:有電梯與沒有電梯的大樓 : Talk: Buildings With and Without Elevators | |
https://blog.pulipuli.info/2025/03/talk-buildings-with-and-without-elevators.html | |
到底是走很近就能抵達,但沒有電梯的大樓好;還是必須走到山上,但是有電梯的大樓好呢?。 | |
---- | |
# 很近的大樓 / The Building, But Very Close。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
看看網頁版全文 ⇨ 用Docker建構開箱可用的Nextcloud : Deploying a Ready-to-Use Nextcloud Instance with Docker | |
https://blog.pulipuli.info/2025/06/deploying-a-readytouse-nextcloud-instance-with-docker.html | |
Nextcloud是一個相當受歡迎的自架雲端硬碟應用程式。 | |
過往我都是用LXC的容器形式架設,這次我們要用Docker技術架設Nextcloud。 | |
要架設一個開箱可以用的Nextcloud其實還是有點複雜,我把相關參數整理成docker-compose.yml,希望對有需要的人有所幫助。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
看看網頁版全文 ⇨ 雜談:燈泡不時熄滅,好像還是燈泡的問題 : TALK: The Lightbulb Keeps Going Out; It Seems to Still Be a Problem With the Bulb | |
https://blog.pulipuli.info/2025/06/talk-the-lightbulb-keeps-going-out-it-seems-to-still-be-a-problem-with-the-bulb.html | |
一直搞不懂為什麼燈泡會時常熄滅的我,在調整了很多次熄滅的燈泡後,我忽然意識到這可能還是燈泡的問題,但是卻不是燈泡本身能不能正常運作的問題。 | |
---- | |
# 現在使用的大燈泡 / The Light Bulbs in Use。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
看看網頁版全文 ⇨ 不知道怎麼下後設資料?用AI幫你添增索引關鍵字 : Don't Know How to Add Metadata? Use AI to Write Keywords | |
https://blog.pulipuli.info/2025/06/dont-know-how-to-add-metadata-use-ai-to-write-keywords.html | |
我開發了一個家用的倉儲管理系統來記錄家裡物品的收納位置和存量。 | |
為了讓我更容易用搜尋找到物品,我使用Google Gemini來解析物品的照片,以此來添增後設資料(metadata),提高它被檢索找到的機會。 | |
使用下來意外地好用,但也有些限制。 |
NewerOlder