All public logs
Jump to navigation
Jump to search
Combined display of all available logs of LemonWiki共筆. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 12:30, 7 April 2025 Planetoid talk contribs created page Troubleshooting of FFmpeg (Created page with "Troubleshooting of FFmpeg issues {{Draft}} == File Overwrite Issue When Integrating FFmpeg with PHP == '''Error condition''': When integrating FFmpeg commands with PHP scripts, if the output file already exists, FFmpeg displays an overwrite confirmation prompt. However, this prompt is not visible in the PHP execution environment. This causes the PHP script to pause, waiting for user input, without any visible prompt. Original command: <pre> ffmpeg -i input.mp4 -vf sc...")
- 11:48, 3 April 2025 Planetoid talk contribs created page Mermaid online editor in Mandarin (Created page with "將 Mermaid 語法轉換為 png(或其他圖片檔案) {{LanguageSwitcher | content = English, 漢字 }} {{Drafting}} == 為什麼使用 Mermaid 語法 == 為什麼使用 Mermaid 語法取代傳統的畫圖方式。現在可以要求 AI「使用 Mermaid 語法,畫 XX 流程圖」方便地產生 Mermaid 語法。 使用 Mermaid 語法畫流程圖的好處是,'''它是文字形式的''',使...")
- 16:18, 2 April 2025 Planetoid talk contribs moved page Convert mermaid to image to Mermaid online editor
- 21:30, 29 March 2025 Planetoid talk contribs created page Javascript debug in Mandarin (Created page with "Javascript 程式碼偵錯 {{LanguageSwitcher | content = English, 漢字 }} == 疑難排解步驟 == * 是否已包含所需的 JavaScript 檔案? * 函式是否與不同的 JavaScript 函式庫發生衝突?例如:[https://stackoverflow.com/questions/41961708/uncaught-typeerror-tooltip-is-not-a-function JavaScript - Uncaught TypeError: $(...).tooltip is not a function - Stack Overflow] * 使用 [https:/...")
- 15:18, 28 March 2025 Planetoid talk contribs created page Extract domain from text (Created page with "Extract the domain part from URLs in article content == Using Google Sheets to extract domains == Use Google Spreadsheet [https://support.google.com/docs/answer/3098244?hl=en REGEXEXTRACT] function <pre> =REGEXEXTRACT(A1, "(http[s]?\://[^/]+)") </pre> Input: <pre> Yahoo! News https://tw.news.yahoo.com/abc </pre> Output: <pre> https://tw.news.yahoo.com </pre> Explanation: * Domain refers to text that starts with <nowiki>http://</nowiki> or <nowiki>https://</nowiki>, f...")
- 15:16, 28 March 2025 Planetoid talk contribs created page Extract domain from text in Mandarin (Created page with "== 從文章內容,擷取網址中的網域部分 == === 使用 Google sheet 擷取網域 === 使用 Google 試算表 [https://support.google.com/docs/answer/3098244?hl=zh-Hant REGEXEXTRACT] 函數 <pre> =REGEXEXTRACT(A1, "(http[s]?\://[^/]+)") </pre> 輸入: <pre> Yahoo! 新聞 https://tw.news.yahoo.com/abc </pre> 輸出: <pre> https://tw.news.yahoo.com </pre> 說明: # 網域指以 <nowiki>http://</nowiki> 或 <nowiki>https://</nowiki> 開頭,與相臨不是符...")
- 23:07, 4 March 2025 Planetoid talk contribs created page RSS Search Engines in Mandarin (Created page with "RSS feeds (含Blog) 的搜尋引擎 {{LanguageSwitcher | content = English, 漢字 }} == 搜尋多個 Blog 或 Blog RSS Feed == * {{Gd}} [https://rssfinder.app/ RSS finder] {{access | date=2025-02-16}} * [https://rss.feedspot.com/ RSS Reader - Feedspot] {{access | date=2025-02-16}} * RSS aggregator which support blog search 已下架的服務 <div class="toccolours mw-col...")
- 18:20, 26 February 2025 Planetoid talk contribs created page Troubleshooting of Streamlit apps (Created page with " = Troubleshooting of Streamlit Apps: LangChain RAG Integration Issues = I've built a Streamlit application that implements a RAG (Retrieval Augmented Generation) system using LangChain, Pinecone for vector storage, and LLMs (GPT/Claude). The app is experiencing a critical error when attempting to generate responses. I've checked the logs from "Manage App" in Streamlit Cloud and found this error: <pre> KeyError: "Input to ChatPromptTemplate is missing variables {'Sourc...")
- 18:37, 22 January 2025 Planetoid talk contribs created page Quick start guide (Created page with " == Quick Start Guide Checklist == # Identify the Target Audience: technical skill level # Set Clear Objectives: e.g., helping users quickly install software or configure hardware) # Provide Clear and Concise Steps: written in simple language? # Include Visual Aids: clear images, diagrams, or screenshots # Test and Gather Feedback # Update Regularly: revision number == Quick Start Guide Template == Here’s a template for structuring technical document titles: ==='''...")
- 11:11, 22 January 2025 Planetoid talk contribs created page Category:Docker (Created page with " {{News feed | title =Docker 相關新聞聯播 | feed = <rss>https://news.google.com/rss/search?q=docker&hl=zh-TW&gl=TW&ceid=TW:zh-Hant</rss> }} {{Hacker news feed | title = Docker 相關 Hacker News 聯播 | feed = <rss>https://hnrss.org/newest?q=Docker</rss> }}")
- 13:42, 20 January 2025 Planetoid talk contribs created page Setting up SFTP with Nginx (Created page with " = Nginx Directory Permissions and Symbolic Link Configuration Guide = == Environment Overview == * Using SFTP to upload files to personal directory * Personal directory linked to website root via symbolic link * Files accessible through public web URL after upload === Example SFTP Upload Process === # Upload file to personal directory: <code>/home/your_user/public_folder/</code> # File automatically reflects in website directory: <code>/usr/share/nginx/html/folder/...")
- 14:18, 17 January 2025 Planetoid talk contribs created page Troubleshooting of bash script (Created page with "Resolving Common Bash Script Execution Errors __TOC__ == Common Bash Script Execution Errors == === How to fix Permission Denied Error: "unable to execute" === '''Error description:''' <pre> $ ./bash-script.sh unable to execute ./bash-script.sh: No such file or directory </pre> '''Resolution:''' Add execute permissions to the script using: <pre> $ chmod +x bash-script.sh </pre> === How to fix Line Ending Compatibility Error === '''Problem:''' <pre> $ ./bash-script.s...")
- 12:16, 16 January 2025 Planetoid talk contribs created page Get chrome version from command line (Created page with " Get Google chrome version from command line == Get Google Chrome Version from Command Line == === Windows === # Open Windows PowerShell # Enter one of the following commands: <pre> ```powershell # Method 1 powershell -command "& {(Get-Item 'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe').VersionInfo.FileVersion}" # Method 2 (shorter) (Get-Item 'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe').VersionInfo.FileVersion ``` </pre> Example...")
- 20:05, 8 January 2025 Planetoid talk contribs created page Template:Tips (Created page with ": Image:Owl icon.jpg")
- 23:13, 7 January 2025 Planetoid talk contribs created page Troubleshooting of OpenAI API in Mandarin (Created page with "OpenAI API 疑難排解 {{LanguageSwitcher | content = EN, 漢字 }} {{Raise hand | text = 如果您對 OpenAI API 有任何疑問,您可以在 OpenAI 開發者論壇的最新 [https://community.openai.com/c/api/7 API 主題] 下發表文章。}} === 如何解決「發生錯誤」 === * 錯誤訊息:"An error occurred. If this issue persists please contact us through our help cente...")
- 18:25, 7 January 2025 Planetoid talk contribs created page PDF conversion (Created page with "PDF 轉換 {{Template:File conversion}} ==== PDF 轉換成純文字 (TXT) ==== * {{Gd}} utility: [https://www.xpdfreader.com/pdftotext-man.html pdftotext] on {{Win}}, {{Mac}}<ref>[https://brewinstall.org/install-pdftotext-mac-osx/ Install pdftotext on Mac OSX - Brew Cask | BrewInstall]</ref> & {{Linux}} ([https://en.wikipedia.org/wiki/Pdftotext pdftotext - Wikipedia | Wikipedia]) {{access | date=2023-06-02}} ** Usage: {{kbd | key=<nowiki>pdftotext [options] [PDF-file [...")
- 11:26, 5 January 2025 Planetoid talk contribs created page Content ownership policies in Large Language Models (Created page with "大型語言模型的著作權政策 {{Draft}} == List of Large Language Models == 著作權擁有者 * OpenAI ChatGPT/DALL-E<ref>[https://openai.com/policies/terms-of-use/ Terms of use | OpenAI] {{access | date=2025-01-05}}</ref>: 「使用者保有輸入內容權利,並擁有所有輸出內容的著作權」{{Gd}} * DeepSeek<ref>[https://chat.deepseek.com/downloads/DeepSeek%20Terms%20of%20Use.html DeepSeek Terms of Use] {{access | date=2025-01-05}}</ref>:「所...")
- 15:34, 31 December 2024 Planetoid talk contribs created page Troubleshooting of Google Vertex AI API in Mandarin (Created page with "Google Vertex AI API 疑難排解 {{Drafting}} {{LanguageSwitcher | content = EN, 漢字 }} == 問題 == === 疑難排解:Vertex AI Search:資料儲存庫需啟用 Enterprise 版功能 === '''錯誤:''' 建立應用程式時遇到錯誤訊息「這個應用程式目前無法使用 4 data stores are ...」 展開所有資料儲存庫清單,顯示「網站資...")
- 19:06, 26 December 2024 Planetoid talk contribs moved page Convert mermaid to png to Convert mermaid to image
- 19:05, 26 December 2024 Planetoid talk contribs created page Troubleshooting of Google Vertex AI API (Created page with "Troubleshooting of Google Vertex AI API {{Drafting}} == Issues == === Troubleshooting: SearchLite API Blocked" Error in Discovery Engine === '''Issue Description''': When attempting to retrieve search results using Google Vertex AI API<ref>[https://cloud.google.com/generative-ai-app-builder/docs/preview-search-results Get search results | Vertex AI Agent Builder | Google Cloud]</ref>, the following error occurs: <pre> curl -X POST -H "Content-Type: applicatio...")
- 14:58, 25 December 2024 Planetoid talk contribs created page Convert mermaid to png (Created page with "Convert Mermaid syntax to png (or other image files) == Online services == [https://mermaid.live/ Online FlowChart & Diagrams Editor - Mermaid Live Editor] * Output format: (1) Download image files png, svg, kroki or (2) Copy to clipboard * Online editor: N/A [https://excalidraw.com/ Excalidraw | Hand-drawn look & feel • Collaborative • Secure] * Output format: Copy png or svg to clipboard * Online editor: Available {{Gd}} * Example: [https://excalidraw.com/#json=Z...")
- 22:52, 16 December 2024 Planetoid talk contribs protected Information Architecture [Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite) (hist)
- 19:02, 4 December 2024 Planetoid talk contribs created page Troubleshooting of whisperX (Created page with "[https://github.com/m-bain/whisperX whisperX] is an enhanced version of OpenAI's Whisper, offering fast automatic speech recognition with word-level timestamps and speaker diarization. It uses the faster-whisper backend and can run the large-v2 model on less than 8GB of GPU memory. whisperX also includes voice activity detection (VAD) preprocessing, reducing hallucinations and supporting batch processing. == whisperX Troubleshooting Guide == === Error: HF_TOKEN environ...")
- 13:47, 3 December 2024 Planetoid talk contribs deleted page Price of Antivirus Software
- 10:49, 28 November 2024 Planetoid talk contribs deleted page Glossary of Open Content CR
- 00:46, 25 November 2024 Planetoid talk contribs created page Convert webpage to markdown (Created page with " {{Draft}} * [https://jina.ai/reader/ Reader API] Category: Tool")
- 23:42, 18 November 2024 Planetoid talk contribs deleted page Steven Chou
- 18:32, 14 November 2024 Planetoid talk contribs created page ChatGPT prompts in Mandarin (Created page with "Tips of ChatGPT prompts {{Template:Generative AI Tool}} {{LanguageSwitcher | content = EN, 漢字 }} == Most Popular ChatGPT Prompts == Most Popular ChatGPT Prompts And How To Improve Them https://www.forbes.com/sites/tjmccue/2023/02/26/most-popular-chatgpt-prompts-and-how-to-improve-them/?sh=45a8fee73064 # 你能為我總結一下這篇文章/文本嗎? # 你能把這個短語/句子翻譯成[語言]嗎? #...")
- 13:49, 5 November 2024 Planetoid talk contribs created page Text to music (Created page with "Text to music [https://www.suno.ai/ Suno AI] * Free limit: Free to use. Require to login account. * License: Commercial was not allowed for free account <ref>[https://suno.com/terms Terms of Service - Suno AI] "If you are a user of the free tier of the Service then, you covenant and agree that you will only use Outputs generated from Submissions made by you through the Service solely for your lawful, internal, personal and non-commercial purposes, provided that you give...")
- 23:23, 1 November 2024 Planetoid talk contribs created page Convert PDF to Text (Created page with "Converting PDF to Plain Text (TXT) * {{Gd}} utility: [https://www.xpdfreader.com/pdftotext-man.html pdftotext] on {{Win}}, {{Mac}}<ref>[https://brewinstall.org/install-pdftotext-mac-osx/ Install pdftotext on Mac OSX - Brew Cask | BrewInstall]</ref> & {{Linux}} ([https://en.wikipedia.org/wiki/Pdftotext pdftotext - Wikipedia | Wikipedia]) {{access | date=2023-06-02}} ** Usage: {{kbd | key=<nowiki>pdftotext [options] [PDF-file [text-file]]</nowiki>}} * {{Gd}} [http://pdft...")
- 10:24, 19 October 2024 Planetoid talk contribs created page Category:Reading (Created page with " {{News feed | title = 讀書會 相關新聞聯播 | feed = <rss>https://news.google.com/rss/search?q=%E8%AE%80%E6%9B%B8%E6%9C%83/%E8%AE%80%E6%9B%B8%E6%9C%83&hl=zh-TW&gl=TW&ceid=TW:zh-Hant</rss> }}")
- 16:46, 15 October 2024 Planetoid talk contribs moved page Elastic search to Elasticsearch
- 14:21, 15 October 2024 Planetoid talk contribs created page Elastic search (Created page with " == Count the number of documents == Elastic search: [https://www.elastic.co/guide/en/elasticsearch/reference/current/search-count.html#search-count-api-example Count API | Elasticsearch Guide [8.15] Elastic] <pre> GET /MY_INXEX/_count </pre> MySQL [https://dev.mysql.com/doc/refman/8.4/en/counting-rows.html MySQL :: MySQL 8.4 Reference Manual :: 5.3.4.8 Counting Rows] <pre> SELECT COUNT(*) FROM MY_TABLE </pre> Category: MySQL Category: Search")
- 14:00, 11 October 2024 Planetoid talk contribs created page Google translate bookmarklet (Created page with "This code is a JavaScript bookmarklet that translates the current page into Tradition Chinese using Google Translate. <pre> javascript: location.href='https://translate.google.com/translate?sl=auto&tl=zh-TW&u=%27+location.href </pre> == Explantion == 1. `javascript:` - This part tells the browser that this is JavaScript code. 2. `location.href=` - This will redirect the browser to a new URL. 3. `'https://translate.google.com/translate?sl=auto&tl=en&u='` - This is t...")
- 23:08, 26 September 2024 Planetoid talk contribs created page Troubleshooting of runway (Created page with "Troubleshooting of runway issues == Resolve the error 'Generation error' == === Error condition === After waiting patiently for several minutes in the queue for a video generation task to be processed, I encountered a "Generation error" which prevented the video from being successfully produced. The complete error message is as follows: <pre> Generation error Your credits will be refunded. Please try again or adjust your prompt if you continue to encounter this error....")
- 10:27, 26 September 2024 Planetoid talk contribs created page AI translator (Created page with "AI 輔助翻譯工具比較:bilingual_book_maker、DeepL Pro、translation-agent 及其修改版 doggy8088/bilingual_book_maker: Make bilingual epub books Using AI translate https://github.com/doggy8088/bilingual_book_maker?tab=readme-ov-file * 支援輸入檔案:epub/txt/srt * 支援長文:有,使用換行符號拆長文 DeepL Pro | Translate Text, Word Docs & Other Docs Securely https://www.deepl.com/en/pro * 特點:可以將圖內文字翻譯 (OCR)...")
- 11:20, 18 September 2024 Planetoid talk contribs created page Common screen sizes and resolutions (Created page with "常見螢幕尺寸和解析度相關的資訊: 1. [http://gs.statcounter.com/ StatCounter Global Stats]: * 提供螢幕解析度的統計資料 * 可以切換不同地區查看數據 * 數據基於採用 StatCounter 網站計數器的網站記錄 2. [https://netmarketshare.com/ Net Applications] (Market share for browsers, operating systems and search engines): * 提供螢幕解析度的統計資料 * 數據來源是採用 HitsLink Analytics 和 SharePost 的網站...")
- 18:27, 17 August 2024 Planetoid talk contribs unblocked 162.158.0.0/16 talk
- 18:27, 17 August 2024 Planetoid talk contribs unblocked 172.70.0.0/16 talk
- 18:27, 17 August 2024 Planetoid talk contribs unblocked 172.71.0.0/16 talk
- 18:26, 17 August 2024 Planetoid talk contribs unblocked 172.69.0.0/16 talk
- 18:26, 17 August 2024 Planetoid talk contribs unblocked 172.68.0.0/16 talk
- 16:12, 6 August 2024 Planetoid talk contribs created page Data privacy in Large Language Models (Created page with "大型語言模型的資料隱私:以ChatGPT為例探討不同版本的政策 {{Draft}} OpenAI ChatGPT * 如果 ChatGPT 不是企業版 (Enterprise)、團隊版 (Team)、API 方案,對話內容就會被拿去訓練模型 <ref>Data Controls FAQ | OpenAI Help Center https://help.openai.com/en/articles/7730893-data-controls-faq</ref><ref>"We do not train on your business data (data from ChatGPT Team, ChatGPT Enterprise, or our API Platform)" https://openai.com/enterpris...")
- 17:41, 19 July 2024 Planetoid talk contribs deleted page RssClientScriptTestResult (expired content)
- 22:37, 30 June 2024 Planetoid talk contribs created page Background removal tool (Created page with " 1. Background Remover - Pixelcut https://create.pixelcut.ai/background-remover 目前最常用這個去背跟設定透明底色 2. Gammas https://gamma.app/ 是 AI 產生簡報服務,不過發現上傳自己的圖片,有自動去背功能 3. Remove Background from Image for Free – remove.bg https://www.remove.bg/ 搜尋引擎排名很前面,但是我只順利轉換一張圖片,其他都無法轉換 Category: Tool")
- 15:35, 4 June 2024 Planetoid talk contribs removed protection from RSS Server Side Aggregator (hist)
- 17:13, 23 May 2024 Planetoid talk contribs created page Troubleshooting of Claude (Created page with " {{Draft}} == Troubleshooting of Claude == === How to fix "Text extraction failed for one of the uploaded files. Please try again." === '''Error message''' <pre> Text extraction failed for one of the uploaded files. Please try again. </pre> '''Model Affected''': Claude 3 Sonnet '''Suggested Workaround:''' * When uploading Excel files for analysis in the Claude system, consider converting and uploading an alternative CSV file instead. == Further reading == Categor...")
- 17:05, 23 May 2024 Planetoid talk contribs moved page Trouble shooting of OpenAI DALLE3 to Troubleshooting of OpenAI DALLE3
- 18:14, 20 May 2024 Planetoid talk contribs created page Troubleshooting of Google Gemini API (Created page with " {{Draft}} == Troubleshooting of Google Gemini API == === How to fix "Request contains an invalid argument" === Error message <pre> 無法提交提示 錯誤訊息:「Request contains an invalid argument.」 狀態:400 錯誤代碼:3 要求 ID:xxx </pre> Workaround solution: * If you upload a video file for API analysis, you might consider shortening the video duration, for example, using ffmpeg to reduce an hour-long video to half its length. This will help...")
- 12:37, 11 May 2024 Planetoid talk contribs created page Trouble shooting of OpenAI DALLE3 (Created page with "OpenAI DALL-E is renowned for its ability to create AI-generated art from spoken prompts. However, users often encounter frustrating issues during the process. Below, we list common problems and their solutions. '''Issue 1: Cropped Images in Generated Art''' When using DALL-E, the default output is a square image size (1024 x 1024 pixels), and it's common to find characters or objects cut off. '''Solution:''' # If maintaining a square layout, it's best to adjust the...")