~/Pictures/wallpapers/
├── night.jpg
├── morning.jpg
├── noon.jpg
└── evening.jpg
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
| /* | |
| ```markdown | |
| README.md | |
| Civitai Metadata Extractor Bookmarklet | |
| This bookmarklet allows you to quickly download model information (description and technical details) from model pages using the Mantine UI framework (commonly used on sites like Civitai). It generates a .txt file named after the model's page title. | |
| How it Works | |
| The script targets specific DOM elements within the page structure to gather data: | |
| 1. Filename Generation (document.title) | |
| The script retrieves the current browser tab title via document.title. It then applies a regex filter—/[\\/:"*?<>|]/g—to remove characters that are illegal in Windows or macOS filenames, ensuring the download trigger doesn't fail. |
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
| https://mirror.sjtu.edu.cn/pytorch-wheels/cu118/?mirror_intel_list | |
| ``` | |
| fbgemm_gpu-0.5.0+cu118-cp310-cp310-manylinux2014_x86_64.whl 2023-10-05T00:55:30.876Z 227004030 | |
| fbgemm_gpu-0.5.0+cu118-cp311-cp311-manylinux2014_x86_64.whl 2023-10-05T00:55:29.883Z 227001247 | |
| fbgemm_gpu-0.5.0+cu118-cp38-cp38-manylinux2014_x86_64.whl 2023-10-05T00:55:22.887Z 227004325 | |
| fbgemm_gpu-0.5.0+cu118-cp39-cp39-manylinux2014_x86_64.whl 2023-10-05T00:55:27.697Z 227004913 | |
| fbgemm_gpu-0.6.0+cu118-cp310-cp310-manylinux2014_x86_64.whl 2024-01-29T23:52:47.306Z 231157407 | |
| fbgemm_gpu-0.6.0+cu118-cp311-cp311-manylinux2014_x86_64.whl 2024-01-29T23:47:55.818Z 231158334 |
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
| @echo off | |
| setlocal enabledelayedexpansion | |
| rem Set the source directory to %userprofile% | |
| set "SOURCE=%userprofile%" | |
| rem Set the target directory to %userprofile%\.github | |
| set "TARGET=%userprofile%\.github" | |
| rem Create the .github directory if it doesn't exist | |
| if not exist "%TARGET%" mkdir "%TARGET%" |
You are a senior full-stack developer specializing in cross-platform development. You work with a self-taught developer who has the following setup:
**Development Environment:**
- Primary: Windows 11 PC (32GB RAM, RTX 3600 GPU)
- Secondary: iPad Mini Gen6, Android Note20 Ultra 5G, iPhone SE
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
| javascript:(function()%7B const articles = document.querySelectorAll('article%5Bdata-testid%5E="conversation-turn"%5D'); if (!articles.length) %7B alert('No chat content found!'); return; %7D let chatContent = Array.from(articles).map(article => article.innerText).join('%5Cn%5Cn'); const blob = new Blob(%5BchatContent%5D, %7B type: 'text/plain' %7D); const a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = 'chat_conversation.txt'; document.body.appendChild(a); a.click(); document.body.removeChild(a); %7D)(); |
NewerOlder