455ec4634273a867e24c41fcfe04975decca212f
AI/2025-02-13-19-00-11.png
... | ... | Binary files /dev/null and b/AI/2025-02-13-19-00-11.png differ |
AI/AI-video/Video_note_generator/Video_note_generator.md
... | ... | @@ -0,0 +1,53 @@ |
1 | + |
|
2 | +# Video_note_generator |
|
3 | + |
|
4 | + |
|
5 | +#小红书 |
|
6 | + |
|
7 | +Use Python to convert videos into high-quality Xiaohongshu notes in one click, automatically optimize content and illustrations. The code is open source. Thanks to the author Xuanqing |
|
8 | + |
|
9 | +Application scenarios |
|
10 | + |
|
11 | +- Content creators: quickly convert videos/live content into articles |
|
12 | +- Knowledge managers: automatically organize video notes and learning points |
|
13 | +- Social media operations: batch generate high-quality Xiaohongshu notes |
|
14 | + |
|
15 | +https://github.com/whotto/Video_note_generator |
|
16 | + |
|
17 | + git clone [email protected]:whotto/Video_note_generator.git |
|
18 | + |
|
19 | + pip install -r requirements.txt |
|
20 | + |
|
21 | + cp .env.example .env |
|
22 | + |
|
23 | +- [[openrouter]] - [[unsplash]] |
|
24 | + |
|
25 | +注意:以下环境变量未设置: |
|
26 | + - UNSPLASH_REDIRECT_URI (用于Unsplash回调) |
|
27 | + |
|
28 | +python video_note_generator.py urls.txt |
|
29 | + |
|
30 | + |
|
31 | + |
|
32 | +## requirements |
|
33 | + |
|
34 | + |
|
35 | +pip install yt-dlp |
|
36 | + |
|
37 | + openai>=1.0.0 |
|
38 | + httpx>=0.24.1 |
|
39 | + yt-dlp>=2023.11.16 |
|
40 | + openai-whisper>=2023.11.17 |
|
41 | + python-dotenv>=1.0.0 |
|
42 | + requests>=2.31.0 |
|
43 | + beautifulsoup4>=4.12.2 |
|
44 | + python-unsplash>=1.1.0 |
|
45 | + Pillow>=10.1.0 |
|
46 | + urllib3>=2.1.0 |
|
47 | + certifi>=2023.11.17 |
|
48 | + ffmpeg-python>=0.2.0 |
|
49 | + |
|
50 | + # Optional dependencies for better performance |
|
51 | + torch>=2.1.0 |
|
52 | + pytube>=15.0.0 |
|
53 | + you-get>=0.4.1650 |
AI/AI-video/ai-video.md
... | ... | @@ -1,6 +1,8 @@ |
1 | 1 | |
2 | 2 | # ai-vid.md |
3 | 3 | |
4 | +## AI-Youtube-Shorts-Generator |
|
5 | + |
|
4 | 6 | Wow, you can slice the essence of a long video into a film with one click? This open source software is crazy: |
5 | 7 | |
6 | 8 | https://github.com/SamurAIGPT/AI-Youtube-Shorts-Generator |
... | ... | @@ -10,31 +12,5 @@ The news of OpenAI's transformation to profitability was a hot topic a few days |
10 | 12 | https://x.com/huangyun_122/status/1841431233261117786 |
11 | 13 | |
12 | 14 | |
15 | +- [[Video_note_generator]] |
|
13 | 16 | |
14 | - |
|
15 | -## Video_note_generator |
|
16 | - |
|
17 | -#小红书 |
|
18 | - |
|
19 | -Use Python to convert videos into high-quality Xiaohongshu notes in one click, automatically optimize content and illustrations. The code is open source. Thanks to the author Xuanqing |
|
20 | - |
|
21 | -Application scenarios |
|
22 | - |
|
23 | -- Content creators: quickly convert videos/live content into articles |
|
24 | -- Knowledge managers: automatically organize video notes and learning points |
|
25 | -- Social media operations: batch generate high-quality Xiaohongshu notes |
|
26 | - |
|
27 | -https://github.com/whotto/Video_note_generator |
|
28 | - |
|
29 | - git clone [email protected]:whotto/Video_note_generator.git |
|
30 | - |
|
31 | - pip install -r requirements.txt |
|
32 | - |
|
33 | - cp .env.example .env |
|
34 | - |
|
35 | -- [[openrouter]] - [[unsplash]] |
|
36 | - |
|
37 | -注意:以下环境变量未设置: |
|
38 | - - UNSPLASH_REDIRECT_URI (用于Unsplash回调) |
|
39 | - |
|
40 | -python video_note_generator.py urls.txt |
|
... | ... | \ No newline at end of file |
AI/ai-chatbot.md
... | ... | @@ -0,0 +1,23 @@ |
1 | + |
|
2 | +# ai-chatbot.md |
|
3 | + |
|
4 | +## chatwise |
|
5 | + |
|
6 | +[ChatWise: The second fastest AI chatbot](https://chatwise.app/) |
|
7 | + |
|
8 | +Supports multiple LLM models such as ChatGPT, DeepSeek, Claude, Gemini and Llama |
|
9 | + |
|
10 | +Supports web search and rendering HTML/React/charts/documents |
|
11 | + |
|
12 | +## cherry studio |
|
13 | + |
|
14 | +After trying various knowledge base building solutions (of course, I can do it), the most convenient one is [Cherry Studio](https://github.com/CherryHQ/cherry-studio), which only takes four steps: |
|
15 | + |
|
16 | +1⃣Download the nomic-embed-text model from Ollama |
|
17 | +2⃣Select the corresponding embedding model |
|
18 | +3⃣Upload the document |
|
19 | +4⃣Set the knowledge base in the dialogue and call DeepSeek-R1 |
|
20 | + |
|
21 | +If your graphics card is not powerful, don't run the local model, just use the free quota, trust me. |
|
22 | + |
|
23 | + |
|
... | ... | \ No newline at end of file |
AI/ai-search/2025-02-13-18-57-19.png
... | ... | Binary files /dev/null and b/AI/ai-search/2025-02-13-18-57-19.png differ |
AI/ai-search/ai-search.md
... | ... | @@ -4,4 +4,19 @@ |
4 | 4 | - https://www.qoodle.ai/ |
5 | 5 | https://preview.redd.it/rg6gze1qz39e1.gif?width=1920&format=mp4&s=05f854f6b32dd460fbfc8013adb6bf7d019d654e |
6 | 6 | |
7 | -- https://github.com/itsPreto/tangent |
|
... | ... | \ No newline at end of file |
0 | +- https://github.com/itsPreto/tangent |
|
1 | + |
|
2 | + |
|
3 | + |
|
4 | + |
|
5 | +## Xyne |
|
6 | + |
|
7 | +An intelligent search and Q&A tool for work: [Xyne](https://xynehq.com/), which integrates various data at work, can efficiently search for various files, emails, chat records, application tools and other data and reply to questions and answers |
|
8 | + |
|
9 | +It can be used to assist in finding files, checking customer/project information, finding problem solutions, etc. |
|
10 | + |
|
11 | +It can connect commonly used tools at work, all functions of Google Workspace, Slack, GitHub, etc., integrate the data of these applications together for easy search |
|
12 | + |
|
13 | +Support local and cloud deployment, support multiple models, support multi-threaded data ingestion |
|
14 | + |
|
15 | + |
|
... | ... | \ No newline at end of file |
Home.md
... | ... | @@ -19,7 +19,7 @@ |
19 | 19 | |
20 | 20 | ## tools |
21 | 21 | |
22 | -- [[cover]] - [[vid-dl]] |
|
22 | +- [[cn-soft]] - [[file-share]] - [[screen-recorder]] |
|
23 | 23 | |
24 | 24 | ### net + web |
25 | 25 | |
... | ... | @@ -27,20 +27,29 @@ |
27 | 27 | |
28 | 28 | - [[avatar]] |
29 | 29 | |
30 | +- [[cloudflare]] - [[cloudflare-tools]] |
|
31 | + |
|
32 | +#### proxy |
|
33 | + |
|
34 | +- [[phone-proxy]] - [[nekobox]] |
|
30 | 35 | |
31 | 36 | ### media |
32 | 37 | |
33 | -- [[writing]] - [[video]] - [[layout]] |
|
38 | +#### video |
|
34 | 39 | |
35 | -- [[bg-remover]] - [[watermark-remover]] |
|
40 | +- [[video]] - [[video-dl]] |
|
41 | + |
|
42 | +#### text/writing |
|
43 | + |
|
44 | +- [[writing]] - [[cover]] - [[layout]] |
|
36 | 45 | |
37 | -### proxy |
|
46 | +- [[documents]] |
|
38 | 47 | |
39 | -- [[phone-proxy]] |
|
48 | +#### images |
|
40 | 49 | |
41 | -- [[nekobox]] |
|
50 | +- [[bg-remover]] - [[watermark-remover]] |
|
42 | 51 | |
43 | -### social-media |
|
52 | +#### social-media |
|
44 | 53 | |
45 | 54 | - [[hot]] - [[social-media-sync]] |
46 | 55 | |
... | ... | @@ -50,6 +59,10 @@ |
50 | 59 | |
51 | 60 | - [[reddit-sub]] |
52 | 61 | |
62 | + |
|
63 | + |
|
64 | + |
|
65 | + |
|
53 | 66 | ## automation |
54 | 67 | |
55 | 68 | - [[automation]] |
make-money/metal-detector/minelab/minelab.md
... | ... | @@ -26,6 +26,67 @@ |
26 | 26 | | | Minelab | Equinox 800 | | 700 | | |
27 | 27 | |
28 | 28 | |
29 | + |
|
30 | + |
|
31 | +## compare vanquish and quinox |
|
32 | + |
|
33 | +https://www.detectorprospector.com/topic/20432-equinox-whats-improved/ |
|
34 | + |
|
35 | +### Equinox Series |
|
36 | + |
|
37 | +| Feature | Equinox 600 | Equinox 700 | Equinox 800 | Equinox 900 | |
|
38 | +|-------------------------|----------------------------------------|----------------------------------------|----------------------------------------|----------------------------------------| |
|
39 | +| **Technology** | Multi-IQ Simultaneous Multi-Frequency | Multi-IQ Simultaneous Multi-Frequency | Multi-IQ Simultaneous Multi-Frequency | Multi-IQ Simultaneous Multi-Frequency | |
|
40 | +| **Frequencies** | 5 kHz, 10 kHz, 15 kHz | 5 kHz, 10 kHz, 15 kHz, 20 kHz, 40 kHz | 5 kHz, 10 kHz, 15 kHz, 20 kHz, 40 kHz | 5 kHz, 10 kHz, 15 kHz, 20 kHz, 40 kHz | |
|
41 | +| **Search Modes** | Park, Field, Beach | Park, Field, Beach | Park, Field, Beach | Park, Field, Beach, Gold | |
|
42 | +| **Target ID Segments** | 50 | 50 | 50 | 50 | |
|
43 | +| **Audio Options** | 5 Tone | 5 Tone | 5 Tone | 5 Tone | |
|
44 | +| **Wireless Audio** | No | Yes (Bluetooth) | Yes (Bluetooth) | Yes (Bluetooth) | |
|
45 | +| **Display** | LCD with Backlight | LCD with Backlight | LCD with Backlight | LCD with Backlight | |
|
46 | +| **Waterproof** | Yes (up to 3 meters) | Yes (up to 3 meters) | Yes (up to 3 meters) | Yes (up to 5 meters) | |
|
47 | +| **Weight** | 1.3 kg | 1.3 kg | 1.3 kg | 1.3 kg | |
|
48 | +| **Standard Coil** | 11" Double-D Smart Coil | 11" Double-D Smart Coil | 11" Double-D Smart Coil | 11" Double-D Smart Coil | |
|
49 | +| **Price Range** | Entry-Level | Mid-Range | High-End | Premium | |
|
50 | + |
|
51 | +### Vanquish Series |
|
52 | + |
|
53 | +| Feature | Vanquish 340 | Vanquish 440 | Vanquish 540 | |
|
54 | +|-------------------------|---------------------------------------|---------------------------------------|---------------------------------------| |
|
55 | +| **Technology** | Multi-IQ Simultaneous Multi-Frequency | Multi-IQ Simultaneous Multi-Frequency | Multi-IQ Simultaneous Multi-Frequency | |
|
56 | +| **Frequencies** | 5 kHz, 10 kHz, 15 kHz | 5 kHz, 10 kHz, 15 kHz, 20 kHz, 40 kHz | 5 kHz, 10 kHz, 15 kHz, 20 kHz, 40 kHz | |
|
57 | +| **Search Modes** | Coin, Jewellery, All Metal | Coin, Relic, Jewellery, Custom | Coin, Relic, Jewellery, Custom | |
|
58 | +| **Target ID Segments** | 5 | 12 | 25 | |
|
59 | +| **Audio Options** | 3 Tone | 3 Tone | 5 Tone | |
|
60 | +| **Wireless Audio** | No | No | Yes (Bluetooth) | |
|
61 | +| **Display** | Monochrome LCD | Monochrome LCD | Monochrome LCD with Red Backlight | |
|
62 | +| **Waterproof** | Coil to 1 m (3.3 ft) | Coil to 1 m (3.3 ft) | Coil to 1 m (3.3 ft) | |
|
63 | +| **Weight** | 1.2 kg | 1.2 kg | 1.3 kg | |
|
64 | +| **Standard Coil** | 10" x 7" Double-D Smart Coil | 10" x 7" Double-D Smart Coil | 12" x 9" Double-D Smart Coil | |
|
65 | +| **Price Range** | Budget-Friendly | Mid-Range | High-End | |
|
66 | + |
|
67 | +### Key Differences |
|
68 | + |
|
69 | +- **Frequencies:** The Equinox 700, 800, and 900 models offer higher frequency options (20 kHz and 40 kHz) compared to the 600 model, providing enhanced sensitivity to smaller targets. |
|
70 | + |
|
71 | +- **Wireless Audio:** The Equinox 700, 800, and 900 models support Bluetooth wireless audio, offering a more convenient listening experience. |
|
72 | + |
|
73 | +- **Display:** The Vanquish 540 features a backlit display, enhancing visibility in low-light conditions. |
|
74 | + |
|
75 | +- **Target ID Segments:** The Vanquish 540 offers 25 target ID segments, providing more detailed target identification compared to the 340 and 440 models. |
|
76 | + |
|
77 | +- **Weight:** The Vanquish 540 is slightly heavier than the 340 and 440 models, which may affect user comfort during extended use. |
|
78 | + |
|
79 | +- **Price Range:** The Equinox series is positioned as a premium line with advanced features, while the Vanquish series offers more budget-friendly options without compromising essential performance. |
|
80 | + |
|
81 | +### Summary |
|
82 | + |
|
83 | +The Equinox series is designed for users seeking advanced features and higher frequency options, suitable for a variety of detecting scenarios. The Vanquish series caters to those looking for a cost-effective solution with essential features, making it ideal for beginners or casual hobbyists. |
|
84 | + |
|
85 | +*Note: Specifications are based on available information as of February 2025. For the most current details, please refer to Minelab's official website or authorized dealers.* |
|
86 | + |
|
87 | + |
|
88 | + |
|
89 | + |
|
29 | 90 | ## Vanquish 440 |
30 | 91 | |
31 | 92 | https://item.taobao.com/item.htm?id=760905217429&pisk=fHnBrzGJC6fBuFzduYpaGU_Ct4Z7AXt2RTw-nYIFekELwTGteJeL98eO6-ecpzFy-baSaf4-YkkE19msGgSeteDRVurJgI-20vDUqudV9DCFF62Yd7KPvyIT-pHyJI-20ATLKuk9gDyeyCabUueLyJU9C8wAvuUL2Pp_e85LwWh-BeeMGw5pNxR1jG7Q-OFuT9Ayacw9tSHINR2tfu43MPFc2Vo_dyNxpDJfj22tbca47TJ4Xx0Z9RZXVGEQlDmbWDdGVPc76ziKQI_0MVhUXD3fegH_A54uQXfB1SnnBmqT7npjBccEKcMPe3eZg5HnvutvnkZL9lsP_iPj3l75Crj7CSJ6CaboQ7xj4_FmVFaLIJawCd1KryegCSJ6CabuJR2QBd9194f..&spm=a1z10.1-c-s.w4004-25368127959.20.344244edYkoVXv&skuId=5246618437844 |
... | ... | @@ -69,4 +130,22 @@ Handles both high and low conductive targets (e.g., tiny gold nuggets or large s |
69 | 130 | Adaptability |
70 | 131 | |
71 | 132 | Whether you’re hunting in parks, fields, forests, or underwater, Multi-IQ can handle a wide range of conditions. |
72 | -Suitable for a variety of detecting activities: coin shooting, relic hunting, beach detecting, and even gold prospecting. |
|
... | ... | \ No newline at end of file |
0 | +Suitable for a variety of detecting activities: coin shooting, relic hunting, beach detecting, and even gold prospecting. |
|
1 | + |
|
2 | + |
|
3 | + |
|
4 | +## detecting depth |
|
5 | + |
|
6 | +# Approximate Detection Depths for Minelab Equinox & Vanquish Models |
|
7 | + |
|
8 | +| Model | Approximate Coin Detection Depth | Approximate Depth in cm | Notes | |
|
9 | +|---------------|----------------------------------|-------------------------|-----------------------------------------------------------| |
|
10 | +| Equinox 900 | ~12 inches | ~30 cm | Top‐of‐the‐line performance; excels in mineralized soils | |
|
11 | +| Equinox 700 | ~10–11 inches | ~25–28 cm | Slightly less deep than the 900 but very capable | |
|
12 | +| Equinox 800 | ~9–10 inches | ~23–25 cm | Good balance of performance and features | |
|
13 | +| Equinox 600 | ~8–9 inches | ~20–23 cm | Entry-level model with solid detection depth | |
|
14 | +| Vanquish 440 | ~7–8 inches | ~18–20 cm | Beginner-friendly; uses AA batteries; lower overall depth | |
|
15 | +| Vanquish 340 | ~6–7 inches | ~15–18 cm | Most affordable; simplified features result in shallower detection | |
|
16 | + |
|
17 | +> **Note:** These values are approximations based on typical field reports and may vary greatly depending on factors such as target size, ground conditions, coil size, and detector settings. Always test under your own conditions to gauge actual performance. |
|
18 | + |
make-money/treasure-hunting/\345\257\273\345\256\235\346\211\213\345\206\214.pdf
... | ... | Binary files /dev/null and "b/make-money/treasure-hunting/\345\257\273\345\256\235\346\211\213\345\206\214.pdf" differ |
media/documents/documents.md
... | ... | @@ -0,0 +1,45 @@ |
1 | + |
|
2 | +# documents |
|
3 | + |
|
4 | + |
|
5 | +## MarkItDown |
|
6 | + |
|
7 | +https://github.com/microsoft/markitdown |
|
8 | + |
|
9 | + |
|
10 | +MarkItDown is a utility for converting various files to Markdown (e.g., for indexing, text analysis, etc). It supports: |
|
11 | + |
|
12 | +- PDF |
|
13 | +- PowerPoint |
|
14 | +- Word |
|
15 | +- Excel |
|
16 | +- Images (EXIF metadata and OCR) |
|
17 | +- Audio (EXIF metadata and speech transcription) |
|
18 | +- HTML |
|
19 | +- Text-based formats (CSV, JSON, XML) |
|
20 | +- ZIP files (iterates over contents) |
|
21 | + |
|
22 | +To install MarkItDown, use pip: pip install markitdown. Alternatively, you can install it from the source: pip install -e . |
|
23 | + |
|
24 | + |
|
25 | +markitdown path-to-file.pdf > document.md |
|
26 | + |
|
27 | +markitdown 273424552.pdf > 273424552.md |
|
28 | + |
|
29 | +/d/HE2/Downloads |
|
30 | + |
|
31 | +error: |
|
32 | + |
|
33 | + Traceback (most recent call last): |
|
34 | + File "<frozen runpy>", line 198, in _run_module_as_main |
|
35 | + File "<frozen runpy>", line 88, in _run_code |
|
36 | + File "C:\Users\Administrator\AppData\Local\Programs\Python\Python313\Scripts\m |
|
37 | + arkitdown.exe\__main__.py", line 7, in <module> |
|
38 | + sys.exit(main()) |
|
39 | + ~~~~^^ |
|
40 | + File "C:\Users\Administrator\AppData\Local\Programs\Python\Python313\Lib\site- |
|
41 | + packages\markitdown\__main__.py", line 43, in main |
|
42 | + print(result.text_content) |
|
43 | + ~~~~~^^^^^^^^^^^^^^^^^^^^^ |
|
44 | + UnicodeEncodeError: 'gbk' codec can't encode character '\xa0' in position 7: ill |
|
45 | + egal multibyte sequence |
media/image/image-edit/image-edit.md
... | ... | @@ -0,0 +1,5 @@ |
1 | + |
|
2 | +# image-edit |
|
3 | + |
|
4 | +- photoshop |
|
5 | + |
media/image/image-uploader/image-uploader.md
... | ... | @@ -0,0 +1,25 @@ |
1 | + |
|
2 | +# image-uploader |
|
3 | + |
|
4 | +## PicGo |
|
5 | + |
|
6 | +Enter the following required items: |
|
7 | + |
|
8 | +- Application Key ID, fill in the Access Key ID in the R2 API |
|
9 | +- Application Key, fill in the Secret Access Key in the R2 API |
|
10 | +- Bucket Name, fill in the Bucket name created in R2, such as yu-r2-test in my above |
|
11 | +- File Path, the file path uploaded to R2, I choose to use {fileName}.{extName} to retain the original file name and extension, or you can customize the folder prefix for distinction |
|
12 | + - such as obsidian/{fileName}.{extName} |
|
13 | + - default {year}/{month}/{md5}.{extName} |
|
14 | +- Custom Node, fill in the "Use jurisdiction-specific endpoints for S3 clients" in the R2 API, that is, S3 Endpoint in the format of xxx.r2.cloudflarestorage.com |
|
15 | + |
|
16 | +For configuration items, please refer to the document: picgo-plugin-s3 |
|
17 | + |
|
18 | + |
|
19 | + |
|
20 | +## output format |
|
21 | + |
|
22 | + |
|
23 | + |
|
24 | + |
|
25 | + |
media/image/image-viewer/image-viewer.md
... | ... | @@ -0,0 +1,5 @@ |
1 | + |
|
2 | +# image-viewer |
|
3 | + |
|
4 | +- [XNViewer MP](https://www.xnview.com/en/xnviewmp/) |
|
5 | +- https://download.xnview.com/XnViewMP-win-x64.exe |
media/video/jianying/jianying.md
... | ... | @@ -1,5 +0,0 @@ |
1 | - |
|
2 | -# jianying |
|
3 | - |
|
4 | -Jianying version 6.02, you can use all VIP functions without membership, just unzip and use, don't upgrade! Don't upgrade! Don't upgrade! |
|
5 | -https://pan.quark.cn/s/ae2f3fb5a752 |
|
... | ... | \ No newline at end of file |
media/video/vid/douyin/douyin.md
... | ... | @@ -1,6 +0,0 @@ |
1 | - |
|
2 | -# douyin |
|
3 | - |
|
4 | -Tik Tok concurrent batch automatic video upload |
|
5 | - |
|
6 | -https://github.com/withwz/douyin_upload |
|
... | ... | \ No newline at end of file |
media/video/vid/vid-copy/vid-copy.md
... | ... | @@ -1,25 +0,0 @@ |
1 | - |
|
2 | -# vid-copy |
|
3 | - |
|
4 | -## VideoLingo |
|
5 | - |
|
6 | -🤩 I wrote a fully automatic video transfer project using Cursor in two weeks: |
|
7 | - |
|
8 | -VideoLingo |
|
9 | - |
|
10 | -Reject AI flavor of machine translation |
|
11 | -Reject double-line subtitles |
|
12 | -Reject abrupt punctuation |
|
13 | -On par with professional subtitle groups |
|
14 | -Support multiple language input and output |
|
15 | -One-click fully automatic video transfer |
|
16 | - |
|
17 | -💪 Compared with other projects, it should be said that it is the closest to Netflix subtitle standards, and has received wide acclaim in the internal test group👏 |
|
18 | - |
|
19 | -🐛 It took a long time to fix the bug. Now there is no need for manual intervention. Just go and make a cup of coffee when you start processing~ |
|
20 | - |
|
21 | -🎙️ The dubbing function is under development and will be launched soon |
|
22 | - |
|
23 | -👉 More demos and one-click packages are on the Github homepage: |
|
24 | - |
|
25 | -[VideoLingo](https://github.com/Huanshere/VideoLingo) |
|
... | ... | \ No newline at end of file |
media/video/vid/vid-prog-edit/vid-prog-edit.md
... | ... | @@ -1,9 +0,0 @@ |
1 | - |
|
2 | -# vid-prog-edit |
|
3 | - |
|
4 | -https://github.com/PyAV-Org/PyAV - 2.6K |
|
5 | - |
|
6 | -https://github.com/kkroening/ffmpeg-python - 10.2K |
|
7 | - |
|
8 | -https://github.com/imageio/imageio - 1.5K |
|
9 | - |
media/video/video-copy/video-copy.md
... | ... | @@ -0,0 +1,25 @@ |
1 | + |
|
2 | +# vid-copy |
|
3 | + |
|
4 | +## VideoLingo |
|
5 | + |
|
6 | +🤩 I wrote a fully automatic video transfer project using Cursor in two weeks: |
|
7 | + |
|
8 | +VideoLingo |
|
9 | + |
|
10 | +Reject AI flavor of machine translation |
|
11 | +Reject double-line subtitles |
|
12 | +Reject abrupt punctuation |
|
13 | +On par with professional subtitle groups |
|
14 | +Support multiple language input and output |
|
15 | +One-click fully automatic video transfer |
|
16 | + |
|
17 | +💪 Compared with other projects, it should be said that it is the closest to Netflix subtitle standards, and has received wide acclaim in the internal test group👏 |
|
18 | + |
|
19 | +🐛 It took a long time to fix the bug. Now there is no need for manual intervention. Just go and make a cup of coffee when you start processing~ |
|
20 | + |
|
21 | +🎙️ The dubbing function is under development and will be launched soon |
|
22 | + |
|
23 | +👉 More demos and one-click packages are on the Github homepage: |
|
24 | + |
|
25 | +[VideoLingo](https://github.com/Huanshere/VideoLingo) |
|
... | ... | \ No newline at end of file |
media/video/video-dl/video-dl.md
... | ... | @@ -1,6 +1,12 @@ |
1 | 1 | |
2 | 2 | # video-dl |
3 | 3 | |
4 | + |
|
5 | +## yt-dlp |
|
6 | + |
|
7 | +https://github.com/yt-dlp/yt-dlp |
|
8 | + |
|
9 | + |
|
4 | 10 | ## superparse |
5 | 11 | |
6 | 12 | I recommend a very powerful video download tool: superparse |
... | ... | @@ -22,7 +28,7 @@ https://github.com/DangJin/awesome-social-media-downloader/ |
22 | 28 | |
23 | 29 | ## Cobalt - 全能极简视频下载神器,开箱即用,无广告 |
24 | 30 | |
25 | -支持的平台: |
|
31 | +supported platforms: |
|
26 | 32 | - Bilibili |
27 | 33 | - YouTube |
28 | 34 | - Instagram |
media/video/video-edit/jianying/jianying.md
... | ... | @@ -0,0 +1,5 @@ |
1 | + |
|
2 | +# jianying |
|
3 | + |
|
4 | +Jianying version 6.02, you can use all VIP functions without membership, just unzip and use, don't upgrade! Don't upgrade! Don't upgrade! |
|
5 | +https://pan.quark.cn/s/ae2f3fb5a752 |
|
... | ... | \ No newline at end of file |
media/video/video-edit/vid-prog-edit/vid-prog-edit.md
... | ... | @@ -0,0 +1,9 @@ |
1 | + |
|
2 | +# vid-prog-edit |
|
3 | + |
|
4 | +https://github.com/PyAV-Org/PyAV - 2.6K |
|
5 | + |
|
6 | +https://github.com/kkroening/ffmpeg-python - 10.2K |
|
7 | + |
|
8 | +https://github.com/imageio/imageio - 1.5K |
|
9 | + |
media/video/video-player/video-player.md
... | ... | @@ -0,0 +1,9 @@ |
1 | + |
|
2 | +# video-player |
|
3 | + |
|
4 | +- MPC |
|
5 | +- [VLC](https://www.videolan.org/vlc/download-windows.html) |
|
6 | + |
|
7 | + |
|
8 | + |
|
9 | + |
media/video/video-source/douyin/douyin.md
... | ... | @@ -0,0 +1,6 @@ |
1 | + |
|
2 | +# douyin |
|
3 | + |
|
4 | +Tik Tok concurrent batch automatic video upload |
|
5 | + |
|
6 | +https://github.com/withwz/douyin_upload |
|
... | ... | \ No newline at end of file |
net/cloudflare-tools/2025-01-10-00-21-43.png
... | ... | Binary files /dev/null and b/net/cloudflare-tools/2025-01-10-00-21-43.png differ |
net/cloudflare-tools/cf-storage/2025-01-13-12-43-16.png
... | ... | Binary files /dev/null and b/net/cloudflare-tools/cf-storage/2025-01-13-12-43-16.png differ |
net/cloudflare-tools/cf-storage/2025-01-13-12-46-31.png
... | ... | Binary files /dev/null and b/net/cloudflare-tools/cf-storage/2025-01-13-12-46-31.png differ |
net/cloudflare-tools/cf-storage/2025-01-13-12-48-18.png
... | ... | Binary files /dev/null and b/net/cloudflare-tools/cf-storage/2025-01-13-12-48-18.png differ |
net/cloudflare-tools/cf-storage/2025-01-13-17-12-42.png
... | ... | Binary files /dev/null and b/net/cloudflare-tools/cf-storage/2025-01-13-17-12-42.png differ |
net/cloudflare-tools/cf-storage/cf-storage.md
... | ... | @@ -0,0 +1,81 @@ |
1 | + |
|
2 | +# cf-storage |
|
3 | + |
|
4 | +## cost |
|
5 | + |
|
6 | +https://developers.cloudflare.com/r2/pricing/ |
|
7 | + |
|
8 | + |
|
9 | + |
|
10 | +10GB / month free |
|
11 | + |
|
12 | ++ $0.015 per additional GB / month |
|
13 | + |
|
14 | + |
|
15 | +## turn on |
|
16 | + |
|
17 | + |
|
18 | + |
|
19 | + |
|
20 | + |
|
21 | + |
|
22 | + |
|
23 | +## 创建 Bucket |
|
24 | + |
|
25 | +Click [Create Bucket] in the upper right corner and enter |
|
26 | + |
|
27 | +- Bucket name: You can customize it. It can be related to your application, business, and storage content for easy distinction |
|
28 | +- Location: Automatically assigned |
|
29 | +- Click the [Create] button to complete the creation |
|
30 | + |
|
31 | + |
|
32 | + |
|
33 | + |
|
34 | +## turn on R2 subdomain |
|
35 | + |
|
36 | + |
|
37 | + |
|
38 | + |
|
39 | +## Use R2 with APIs |
|
40 | + |
|
41 | +Use the curl command below to create a new bucket. Visit documentation to access the full list of API endpoints. |
|
42 | + |
|
43 | + curl https://api.cloudflare.com/client/v4/\ |
|
44 | + accounts/1234/r2/buckets \ |
|
45 | + -H 'Content-Type: application/json' \ |
|
46 | + -H "Authorization: Bearer $CLOUDFLARE_TOKEN" \ |
|
47 | + -d '{ \ |
|
48 | + "name": "my-bucket", \ |
|
49 | + "locationHint": "enam" \ |
|
50 | + }' |
|
51 | + |
|
52 | + |
|
53 | +## errors log |
|
54 | + |
|
55 | +### Personal problem record |
|
56 | + |
|
57 | +After I successfully uploaded to PicGo, the returned address is as follows |
|
58 | + |
|
59 | + |
|
60 | + |
|
61 | +However, I cannot access this address directly after entering it into the browser, and the prompt is as follows: |
|
62 | + |
|
63 | + <Error> |
|
64 | + |
|
65 | + <Code>InvalidArgument</Code> |
|
66 | + |
|
67 | + <Message>Authorization</Message> |
|
68 | + |
|
69 | + </Error> |
|
70 | + |
|
71 | +The URL generated by the R2.dev subdomain can be accessed normally after splicing |
|
72 | + |
|
73 | + R2.dev subdomain/Obsidian/ShotEasy%20%2810%29.png |
|
74 | + |
|
75 | +Problem solution |
|
76 | + |
|
77 | +I modified the custom output URL in PicGo settings The template sets the returned link format: |
|
78 | + |
|
79 | + custom domain name/{path} |
|
80 | + |
|
81 | +After setting, the default link returned is: custom domain name/Obsidian/ShotEasy%20%2810%29.png |
|
... | ... | \ No newline at end of file |
net/cloudflare-tools/cloudflare-tools.md
... | ... | @@ -0,0 +1,24 @@ |
1 | + |
|
2 | +# cloudflare-tools |
|
3 | + |
|
4 | +## https://github.com/zhuima/awesome-cloudflare |
|
5 | + |
|
6 | +I found a collection of awesome Cloudflare open source tools, and looked at what interesting things I could do based on Cyber Bodhisattva's Cloudflare, such as image hosting, email, blogs, short links, website analysis, etc. At that time, I bought some of their stock when it was over 70 as a support, and now it seems quite interesting. |
|
7 | + |
|
8 | + |
|
9 | + |
|
10 | + |
|
11 | + |
|
12 | +## images |
|
13 | + |
|
14 | +🌐Use Cloudflare R2 + PicGo to realize free image hosting |
|
15 | + |
|
16 | +Cloudflare R2: file storage |
|
17 | +PicGo: file upload + file compression |
|
18 | +Obsidian: Blog record + plug-in automatic upload |
|
19 | + |
|
20 | +Solved my document multi-platform publishing, file, image problems, convenient for daily blog writing and publishing👇 |
|
21 | + |
|
22 | +https://www.indiehackertool.com/blog/cloudflare-r2-picgo |
|
23 | + |
|
24 | +- [[CF-storage]] |
net/cloudflare/cloudflare.md
... | ... | @@ -0,0 +1,9 @@ |
1 | + |
|
2 | +# cloudflare |
|
3 | + |
|
4 | + |
|
5 | +## bypass protection |
|
6 | + |
|
7 | +[FlareSolverr](https://github.com/FlareSolverr/FlareSolverr) |
|
8 | + |
|
9 | +FlareSolverr is a proxy server to bypass Cloudflare and DDoS-GUARD protection. |
|
... | ... | \ No newline at end of file |
net/paywall/bypass-paywalls-chrome-clean-master.zip
... | ... | Binary files /dev/null and b/net/paywall/bypass-paywalls-chrome-clean-master.zip differ |
net/paywall/bypass-paywalls-chrome-master.zip
... | ... | Binary files /dev/null and b/net/paywall/bypass-paywalls-chrome-master.zip differ |
net/paywall/paywall.md
... | ... | @@ -0,0 +1,23 @@ |
1 | + |
|
2 | +# paywall |
|
3 | + |
|
4 | + |
|
5 | +A browser plug-in worth collecting and using: Bypass Paywalls Clean. |
|
6 | + |
|
7 | +It can help us bypass the paywalls of some websites, allowing us to read articles that originally required payment for free. |
|
8 | + |
|
9 | +GitHub: https://github.com/bpc-clone/bypass-paywalls-firefox-clean |
|
10 | + |
|
11 | +https://gitflic.ru/project/magnolia1234/bpc_uploads |
|
12 | + |
|
13 | +It supports a lot of websites, but mainly information-based, and supports installation and use in Chrome and Firefox browsers. |
|
14 | + |
|
15 | +Remove Paywall Now https://paywallbuster.com |
|
16 | + |
|
17 | + |
|
18 | +freedium.cfd |
|
19 | +This website is very powerful. It can directly crack the paywall in Medium. It is a great experience to directly view the full text. |
|
20 | + |
|
21 | +- [[bypass-paywalls-chrome-master.zip]] |
|
22 | + |
|
23 | +- [[bypass-paywalls-chrome-clean-master.zip]] |
|
... | ... | \ No newline at end of file |
net/proxy/nekobox/nekobox.md
... | ... | @@ -0,0 +1,8 @@ |
1 | + |
|
2 | +# nekobox |
|
3 | + |
|
4 | +- don't use the one from google play store, it is fake one |
|
5 | + |
|
6 | +- [nekobox](https://github.com/MatsuriDayo/NekoBoxForAndroid) |
|
7 | + |
|
8 | +- install version arm64 for piexel 6 / 7 etc |
|
... | ... | \ No newline at end of file |
net/proxy/phone-proxy/phone-proxy.md
... | ... | @@ -0,0 +1,4 @@ |
1 | + |
|
2 | +# phone-proxy |
|
3 | + |
|
4 | +- [[nekobox]] |
|
... | ... | \ No newline at end of file |
net/proxy/proxy.md
... | ... | @@ -0,0 +1,45 @@ |
1 | + |
|
2 | +# proxy.md |
|
3 | + |
|
4 | + |
|
5 | +https://github.com/Cenmrev/V2RayW |
|
6 | + |
|
7 | +https://github.com/v2fly/v2ray-core |
|
8 | + |
|
9 | + |
|
10 | + |
|
11 | + |
|
12 | +## IPV6 proxy |
|
13 | + |
|
14 | +📖 Who doesn't want a proxy pool of 2^64 IPs? #article |
|
15 | + |
|
16 | +https://zu1k.com/posts/tutorials/http-proxy-ipv6-pool/ |
|
17 | + |
|
18 | + |
|
19 | +## paid proxy |
|
20 | + |
|
21 | +S01 #Nexitally #奶昔 (https://t.me/airport_cn/173) |
|
22 | +S02 #Kuromis #库洛米 (https://t.me/airport_cn/179) |
|
23 | +S03 #AmyTelecom #按摩院 (https://t.me/airport_cn/185) |
|
24 | +S05 #YToo #歪兔 (https://t.me/airport_cn/203)(优惠码) |
|
25 | +S06 #FlowerCloud #花云 (https://t.me/airport_cn/209)(优惠码) |
|
26 | +二线(四星)机场直达电梯: |
|
27 | +S07 #MESL (https://t.me/airport_cn/233) |
|
28 | +S08 #守候网络 (https://t.me/airport_cn/239) |
|
29 | +S09 #CTC #金龙鱼 (https://t.me/airport_cn/245) |
|
30 | +S10 #V2Tun (https://t.me/airport_cn/251)(优惠码|10元性价比) |
|
31 | +S11 #InfiniteTitan #泰坦 (https://t.me/airport_cn/263) |
|
32 | +S12 #白月光 (https://t.me/airport_cn/269)(优惠码) |
|
33 | +按量/不限时机场直达电梯: |
|
34 | +S09 #CTC #金龙鱼 (https://t.me/airport_cn/245)(一年有效) |
|
35 | +S12 #白月光 (https://t.me/airport_cn/269)(两年有效) |
|
36 | +S22 #EdNovas (https://t.me/airport_cn/317)(一年有效) |
|
37 | +防失联(大佬请忽略): |
|
38 | +S23 #魔戒 (https://t.me/airport_cn/347)(巨便宜不限时) |
|
39 | + |
|
40 | + |
|
41 | +## guatizi |
|
42 | + |
|
43 | +内容预览:guatizi.com |
|
44 | +不是我的,Google偶然发现的 |
|
45 | +还蛮多,就是不知道哪些有按流量计费的便宜泰国越南家宽 ,想搬搬视频 |
|
... | ... | \ No newline at end of file |
net/proxy/v2ray/v2ray.md
... | ... | @@ -0,0 +1,66 @@ |
1 | + |
|
2 | +# v2ray |
|
3 | + |
|
4 | +https://github.com/2dust/v2rayN |
|
5 | + |
|
6 | + |
|
7 | +## How to Use V2rayN on Windows 7 |
|
8 | + |
|
9 | +- install runtime 8.0 = https://dotnet.microsoft.com/zh-cn/download/dotnet/thank-you/runtime-desktop-8.0.12-windows-x64-installer?cid=getdotnetcore |
|
10 | + |
|
11 | + |
|
12 | +### 1. System Preparation |
|
13 | +- **Ensure Windows 7 is updated**: Install the latest updates and Service Pack 1 (SP1) to ensure compatibility. |
|
14 | +- **Install .NET Framework**: V2rayN requires **.NET Framework 4.6.2 or higher**. Download it from [Microsoft's website](https://dotnet.microsoft.com/). |
|
15 | + |
|
16 | +--- |
|
17 | + |
|
18 | +### 2. Download V2rayN |
|
19 | +1. Go to the official **V2rayN GitHub repository**: |
|
20 | + [https://github.com/2dust/v2rayN](https://github.com/2dust/v2rayN). |
|
21 | +2. Download the latest release: |
|
22 | + - Look for a ZIP file like `v2rayN-Core.zip`. |
|
23 | + - Ensure you download a version that includes **V2Ray core**. |
|
24 | + |
|
25 | +--- |
|
26 | + |
|
27 | +### 3. Extract and Configure V2rayN |
|
28 | +1. Extract the ZIP file to a folder using software like **WinRAR** or **7-Zip**. |
|
29 | +2. Inside the folder, locate the `v2rayN.exe` file and run it. |
|
30 | + |
|
31 | +--- |
|
32 | + |
|
33 | +### 4. Add Server Configuration |
|
34 | +#### **Subscription Link** |
|
35 | +1. Go to `Subscription -> Settings` in the menu. |
|
36 | +2. Add your subscription URL (provided by your V2Ray server provider). |
|
37 | +3. Click **Update Subscription** to load the servers. |
|
38 | + |
|
39 | +#### **Manual Configuration** |
|
40 | +1. Go to `Server -> Add Vmess Server`. |
|
41 | +2. Input the server details: |
|
42 | + - **Address**: Server's domain or IP address. |
|
43 | + - **Port**: The port number (e.g., `443` for TLS). |
|
44 | + - **UUID**: Unique user ID (provided by your provider). |
|
45 | + - **Security**: Typically set to `aes-128-gcm` or `auto`. |
|
46 | + - **AlterID**: Set as per server configuration (often `0` for V2Ray V4+). |
|
47 | + |
|
48 | +--- |
|
49 | + |
|
50 | +### 5. Configure System Proxy (Optional) |
|
51 | +1. Go to `System Proxy` in the V2rayN menu. |
|
52 | +2. Enable `Set System Proxy` to route all traffic through V2Ray. |
|
53 | + |
|
54 | +--- |
|
55 | + |
|
56 | +### 6. Test the Connection |
|
57 | +1. Click on the server you want to use to enable it. |
|
58 | +2. Check the **log tab** to verify the connection. If successful, it will show a "started" or "connected" message. |
|
59 | + |
|
60 | +--- |
|
61 | + |
|
62 | +### 7. Additional Tips |
|
63 | +- **Update V2Ray Core**: |
|
64 | + - Go to `Help -> Update V2ray core`. |
|
65 | + - This ensures you have the latest core version for better compatibility and security. |
|
66 | +- **Use DNS Settings**: Configure DNS in V2rayN to enhance connection stability (e.g., `8.8.8.8` or `1.1.1.1`). |
social-media/gongzhonghao/gongzhonghao.md
... | ... | @@ -1,6 +1,11 @@ |
1 | 1 | |
2 | 2 | # gongzhonghao |
3 | 3 | |
4 | +- [gongzhonghao](https://mp.weixin.qq.com/) |
|
5 | + |
|
6 | +## read |
|
7 | + |
|
8 | +- http://laoduwu.xyz/dash/feeds |
|
4 | 9 | |
5 | 10 | |
6 | 11 | ## buy account |
test.md
... | ... | @@ -1,56 +0,0 @@ |
1 | -**印度:“Timepass”是“躺平”方式** |
|
2 | - |
|
3 | -抱歉,我需要您提供要翻译的英文内容才能帮助您将其转换为中文的两个简短副标题。请您提供相关的英文文本,谢谢! |
|
4 | - |
|
5 | -在印度英语那古怪的世界里,“timepass”是相对较新的词汇。它首次出现是在**1982**年的一篇报纸文章中。但就像“prepone”——“postpone”的反义词——这个词因其高效而获得了广泛使用。 |
|
6 | - |
|
7 | -“你最近在做什么?”朋友询问道。“timepass,”便是回答。填满一天的东西其实并不重要;它只是帮忙消磨时间。朋友们会更了解,不会再进一步追问。 |
|
8 | - |
|
9 | -在印度较小的城市和城镇中,**timepass**名词正在成为一种社会和文化现象。它类似于中国的“躺平”运动,后者告诉年轻人选择退出经济竞争,满足于平庸的职场成功和适度的消费满足。 |
|
10 | - |
|
11 | -**Craig Jeffrey**,**墨尔本大学**地理学教授,在其著作《Timepass: Youth, Class, and the Politics of Waiting in India》(2010年)中,将这一概念定位于社会学领域:一代年轻人有未来的愿景,但缺乏实现目标的能力。因此,他们通过一种自觉的“闲逛”策略来宣传其无果的等待。 |
|
12 | - |
|
13 | -作者在**Meerut**——一个靠近**新德里**的曾经繁荣的制造业中心——进行田野调查时所捕捉到的失业青年倦怠感已经恶化。那些他们等待的体面、中产阶级的职业变得遥不可及;人工智能的普及将使这些职业变得更加稀少。根据**国际劳工组织****2024**年的报告,即使在后疫情经济中,印度年轻大学毕业生的失业率也是**29%**,是那些无法识字者**3%**以上失业率的九倍。女性毕业生的失业率甚至高达**34%**。 |
|
14 | - |
|
15 | -智能手机已取代大学食堂成为长时间等待的首选地点。近来,印度人平均每天在移动设备上花费**四小时**,高于**2023**年的**3.3小时**。其中五分之一的时间用于观看短视频——不仅仅是**Instagram Reels**、**Facebook Watch**和**YouTube Shorts**,还有像**Josh**和**Moj**这样的应用程序。根据**RedSeer Strategy Consultants**的说法,本地平台更受欢迎,尤其是在大城市之外,因为内容更贴近家乡,更容易引起共鸣。 |
|
16 | - |
|
17 | -此外,本地平台上的虚拟打赏费用为**1到2美分**(比一杯茶还便宜),这也是为什么在线小费市场预计到**2029年**将激增十倍,超过**7亿美元**,咨询公司估计。加上来自营销和广告的更大收入流,所谓的创作者经济基本上是**timepass**的商业化——并得到了国家的积极鼓励。今年三月,**总理 Narendra Modi**颁发了首届**National Creator Awards**。 |
|
18 | - |
|
19 | -西方在这里并不是典范。文化转变的真正灵感来自中国,中国现在有**21,000**家专门为希望不受父母和现实世界朋友干扰地玩**League of Legends**的玩家设立的酒店。印度将会跟上,凭借其本土的幻想体育应用如**Dream11**。中国的“躺平”一代,拒绝努力工作,选择尽可能少做以维持生计,“在我同事**Shuli Ren**最近的文章中解释道,“他们在网上和奶茶店里不仅抱怨工作前景黯淡;他们还将消费主义转向自我关怀和丰富精神的活动,如露营、旅行和看音乐会。” |
|
20 | - |
|
21 | -由于印度没有中国的独生子女政策,也没有持续的两位数经济增长步伐,伴随着物质财富丰富成长起来的群体在印度仍然很小。对于大多数青年而言,躺平尚未成为一种持久的解决方案。为了逃离国内的绝望,绝望的求职者正采取危险的步骤,从冒险走“驴”路线非法进入**美国**,到被欺骗加入**俄罗斯军队**赴**乌克兰**作战。**北方印度**地区贫困程度超过**撒哈拉以南非洲**的**Yogi Adityanath**,**北方邦**首席部长,最近吹嘘有**5,600**名青年从该州前往**以色列**参与建筑项目。 |
|
22 | - |
|
23 | -尽管如此,躺平的技术已经到来,同时也带来了相关的可能性和陷阱。最近,警方突袭并抓获了**全国首都**附近的**73名呼叫中心员工**(**其中33名是女性**,根据**Times of India**),他们涉嫌在美国人的电话上留下语音邮件,假扮成**美国法警**,声称被盗的**社会保障号码**,以此迫使对方付款。这就是组织化数字犯罪的“出口”过剩。在本土市场,诈骗行为已经大幅增加。 |
|
24 | - |
|
25 | -即使数码化的副产品并非犯罪,而只是道德上令人怀疑——比如一个拥有超过**一百万**社交媒体追随者的**10岁“灵性演说家”**——它们也在削弱理性信念,松动社区纽带,并孕育对传统成功标志的幻灭感。《The Mint》的记者**Devina Sengupta**,她告诉我**Jeffrey**的书,最近写到无聊是**Bengaluru**和**Mumbai**等城市工作流失率上升的隐形原因。 |
|
26 | - |
|
27 | -治疗师收到的抱怨通常是饮食和睡眠障碍、抑郁和焦虑。“没有人进来说‘我很无聊’,”一位临床心理学家告诉**Sengupta**,尽管真正的问题是“虚无”。 |
|
28 | - |
|
29 | -再过**十年**。随着家庭规模缩小,政府可能不得不面对既想从社会中退隐,又拥有足够父母财富以做到这一点的虚无主义年轻人。在富裕、态度和缺乏努力方面,印度的**timepass**一代可能与其中国的躺平同类并无太大区别。 |
|
30 | - |
|
31 | -#### **关键词** |
|
32 | -- [timepass](https://diaomao.cc/?tag=timepass) |
|
33 | -- [创作者经济](https://diaomao.cc/?tag=创作者经济) |
|
34 | -- [Narendra-Modi](https://diaomao.cc/?tag=Narendra-Modi) |
|
35 | -- [Dream11](https://diaomao.cc/?tag=Dream11) |
|
36 | -- [国际劳工组织](https://diaomao.cc/?tag=国际劳工组织) |
|
37 | - |
|
38 | -#### **预测** |
|
39 | -印度的**timepass**现象预计将随着年轻人对传统职业的失望和数字经济的发展持续增长,类似于中国的“躺平”运动。 |
|
40 | - |
|
41 | -#### **数据摘要** |
|
42 | -- **1982年**:timepass首次出现在报纸文章中。 |
|
43 | -- **2024年**:国际劳工组织报告显示,印度年轻大学毕业生失业率为29%,女性毕业生高达34%。 |
|
44 | -- **2023年**:印度人平均每天在移动设备上花费3.3小时,预期增加到4小时。 |
|
45 | -- **2029年**:在线小费市场预计将超过7亿美元,增长十倍。 |
|
46 | -- **2023年**:拥有超过一百万社交媒体追随者的10岁“灵性演说家”引发道德质疑。 |
|
47 | - |
|
48 | -#### **投资分析** |
|
49 | -**投资机会:** |
|
50 | -- **本地短视频平台**和**创作者经济**相关产业有巨大的增长潜力,特别是在大城市之外的市场。 |
|
51 | -- **移动设备和内容消费**领域,尤其是提供本地化内容的应用程序,如**Josh**和**Moj**,值得关注。 |
|
52 | - |
|
53 | -**需要避免:** |
|
54 | -- **高失业率相关领域**可能面临较大风险,投资者应谨慎选择。 |
|
55 | -- **数字犯罪**相关行业存在法律和道德风险,应避免涉足。 |
|
56 | - |
tools/cloudflare-tools/2025-01-10-00-21-43.png
... | ... | Binary files a/tools/cloudflare-tools/2025-01-10-00-21-43.png and /dev/null differ |
tools/cloudflare-tools/cloudflare-tools.md
... | ... | @@ -1,24 +0,0 @@ |
1 | - |
|
2 | -# cloudflare-tools |
|
3 | - |
|
4 | -## https://github.com/zhuima/awesome-cloudflare |
|
5 | - |
|
6 | -I found a collection of awesome Cloudflare open source tools, and looked at what interesting things I could do based on Cyber Bodhisattva's Cloudflare, such as image hosting, email, blogs, short links, website analysis, etc. At that time, I bought some of their stock when it was over 70 as a support, and now it seems quite interesting. |
|
7 | - |
|
8 | - |
|
9 | - |
|
10 | - |
|
11 | - |
|
12 | -## images |
|
13 | - |
|
14 | -🌐Use Cloudflare R2 + PicGo to realize free image hosting |
|
15 | - |
|
16 | -Cloudflare R2: file storage |
|
17 | -PicGo: file upload + file compression |
|
18 | -Obsidian: Blog record + plug-in automatic upload |
|
19 | - |
|
20 | -Solved my document multi-platform publishing, file, image problems, convenient for daily blog writing and publishing👇 |
|
21 | - |
|
22 | -https://www.indiehackertool.com/blog/cloudflare-r2-picgo |
|
23 | - |
|
24 | - |
tools/cn-soft/cn-soft.md
... | ... | @@ -0,0 +1,13 @@ |
1 | + |
|
2 | +# cn-soft |
|
3 | + |
|
4 | +[微信PC v4.0.2.20 绿色版 - 果核剥壳](https://www.ghxi.com/weixingreen.html) |
|
5 | + |
|
6 | + |
|
7 | +[微信电脑版 v3.9.12.17 绿色修改版 - 果核剥壳](https://www.ghxi.com/pcwechat.html) |
|
8 | + |
|
9 | +[QQ v9.7.23.29392 绿色优化版 - 果核剥壳](https://www.ghxi.com/qq9.html) |
|
10 | + |
|
11 | +search |
|
12 | + |
|
13 | +https://www.ghxi.com/?s=QQ+%E7%BB%BF%E8%89%B2 |
tools/google-maps/google-maps.md
... | ... | @@ -0,0 +1,4 @@ |
1 | + |
|
2 | +# google-maps |
|
3 | + |
|
4 | +- [mymap-google](https://www.google.com/maps/d/u/0/) |
|
... | ... | \ No newline at end of file |
tools/proxy/nekobox/nekobox.md
... | ... | @@ -1,8 +0,0 @@ |
1 | - |
|
2 | -# nekobox |
|
3 | - |
|
4 | -- don't use the one from google play store, it is fake one |
|
5 | - |
|
6 | -- [nekobox](https://github.com/MatsuriDayo/NekoBoxForAndroid) |
|
7 | - |
|
8 | -- install version arm64 for piexel 6 / 7 etc |
|
... | ... | \ No newline at end of file |
tools/proxy/phone-proxy/phone-proxy.md
... | ... | @@ -1,4 +0,0 @@ |
1 | - |
|
2 | -# phone-proxy |
|
3 | - |
|
4 | -- [[nekobox]] |
|
... | ... | \ No newline at end of file |
tools/proxy/proxy.md
... | ... | @@ -1,37 +0,0 @@ |
1 | - |
|
2 | -# proxy.md |
|
3 | - |
|
4 | -## IPV6 proxy |
|
5 | - |
|
6 | -📖 Who doesn't want a proxy pool of 2^64 IPs? #article |
|
7 | - |
|
8 | -https://zu1k.com/posts/tutorials/http-proxy-ipv6-pool/ |
|
9 | - |
|
10 | - |
|
11 | -## paid proxy |
|
12 | - |
|
13 | -S01 #Nexitally #奶昔 (https://t.me/airport_cn/173) |
|
14 | -S02 #Kuromis #库洛米 (https://t.me/airport_cn/179) |
|
15 | -S03 #AmyTelecom #按摩院 (https://t.me/airport_cn/185) |
|
16 | -S05 #YToo #歪兔 (https://t.me/airport_cn/203)(优惠码) |
|
17 | -S06 #FlowerCloud #花云 (https://t.me/airport_cn/209)(优惠码) |
|
18 | -二线(四星)机场直达电梯: |
|
19 | -S07 #MESL (https://t.me/airport_cn/233) |
|
20 | -S08 #守候网络 (https://t.me/airport_cn/239) |
|
21 | -S09 #CTC #金龙鱼 (https://t.me/airport_cn/245) |
|
22 | -S10 #V2Tun (https://t.me/airport_cn/251)(优惠码|10元性价比) |
|
23 | -S11 #InfiniteTitan #泰坦 (https://t.me/airport_cn/263) |
|
24 | -S12 #白月光 (https://t.me/airport_cn/269)(优惠码) |
|
25 | -按量/不限时机场直达电梯: |
|
26 | -S09 #CTC #金龙鱼 (https://t.me/airport_cn/245)(一年有效) |
|
27 | -S12 #白月光 (https://t.me/airport_cn/269)(两年有效) |
|
28 | -S22 #EdNovas (https://t.me/airport_cn/317)(一年有效) |
|
29 | -防失联(大佬请忽略): |
|
30 | -S23 #魔戒 (https://t.me/airport_cn/347)(巨便宜不限时) |
|
31 | - |
|
32 | - |
|
33 | -## guatizi |
|
34 | - |
|
35 | -内容预览:guatizi.com |
|
36 | -不是我的,Google偶然发现的 |
|
37 | -还蛮多,就是不知道哪些有按流量计费的便宜泰国越南家宽 ,想搬搬视频 |
|
... | ... | \ No newline at end of file |
tools/wangpan/wangpan.md
... | ... | @@ -0,0 +1,4 @@ |
1 | + |
|
2 | +# wangpan.md |
|
3 | + |
|
4 | +https://www.ctfile.com/p/giftcard?uid=53693014&type=1&key=54dbee |
|
... | ... | \ No newline at end of file |