New pages
Jump to navigation
Jump to search
- 18:31, 15 June 2026 PDF Table Parsing (hist | edit) [12,548 bytes] Planetoid (talk | contribs) (Created page with "== Technical Notes on PDF Table Parsing == PDF table parsing usually cannot rely solely on the raw output produced by tools such as <code>pdfplumber.extract_tables()</code>, Camelot, Tabula, or similar libraries. Since PDF is primarily a layout-oriented format rather than a structured data format, practical implementations often require additional rules, state management, and post-processing steps in order to produce stable and usable datasets. The following notes summ...")
- 10:48, 6 June 2026 Speech to text (hist | edit) [11,107 bytes] Planetoid (talk | contribs) (Created page with "== Speech to text 工具 == {{Gd}} [https://github.com/openai/whisper openai/whisper: Robust Speech Recognition via Large-Scale Weak Supervision] * Support Language: 99 languages * Input file: Audio files * Speaker identification: Need to integrate with (1) [https://github.com/m-bain/whisperX m-bain/whisperX: WhisperX: Automatic Speech Recognition with Word-level Timestamps (& Diarization)] or (2) [https://github.com/pyannote/pyannote-audio pyannote/pyannote-audio: Neura...")
- 14:39, 4 June 2026 Troubleshooting of GIT (hist | edit) [4,475 bytes] Planetoid (talk | contribs) (Created page with " == Troubleshooting of GIT == === Restoring deleted files in Git === Restoring deleted files in Git === SSH Authentication Failed: Permission denied (publickey) === '''Error Message''' After keyin the command <pre>git clone [email protected]:your-org/your-repo.git /opt/your-app</pre>, met the error message <pre> Cloning into '/opt/your-app'... [email protected]: Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the...")
- 10:18, 13 May 2026 X Advanced Search (hist | edit) [1,877 bytes] Planetoid (talk | contribs) (Created page with "X (tweets) Advanced Search == Methods == # https://x.com/search-advanced # Enter the query directly into the search box # ''$'' apify: [https://console.apify.com/actors/61RPP7dywgiy0JPD0/input 🏯 Tweet Scraper V2 - X / Twitter Scraper] == Use Cases == === Case 1: Search recent posts from a specific account === Recent posts from account: @elonmusk <pre> from:elonmusk </pre> 🔗 https://x.com/search?q=from%3Aelonmusk&src=typed_query === Case 2: Search posts by date...")
- 10:53, 30 April 2026 Open Files in a GUI Editor from the Terminal (hist | edit) [4,496 bytes] Planetoid (talk | contribs) (Created page with "How to open files with your favorite editor from the terminal? 1. Open your shell config file: <pre> vi ~/.zshrc # for zsh vi ~/.bashrc # for bash </pre> 2. Add an alias for your editor: <pre> # VS Code alias code="open -a 'Visual Studio Code'" <pre> Tip: Not sure of the exact app name? Run this to find it: <pre> ls /Applications/ | grep -i "visual\|cursor\|zed\|sublime" </pre> The name must exactly match the `.app` filename in `/Applications/` (without the `.ap...")