摘要: https://www.manning.com/books/learn-powershell-in-a-month-of-lunches https://livebook.manning.com/book/learn-powershell-in-a-month-of-lunches/chapter- 阅读全文
posted @ 2025-05-23 02:25 profesor 阅读(8) 评论(0) 推荐(0)
摘要: FROM chatGPT: The best and most reliable way to install PowerShell on Ubuntu is by using the Microsoft-provided package repositories, which ensure you 阅读全文
posted @ 2025-05-23 02:23 profesor 阅读(32) 评论(0) 推荐(0)
摘要: from ChatGPT If your goal is to become a Windows power user—someone who uses Windows with maximal efficiency, fluency, and technical control—then you 阅读全文
posted @ 2025-05-23 01:26 profesor 阅读(25) 评论(0) 推荐(0)
摘要: #include <unistd.h> int main() { write(1, "Hello, World\n", 13); return 0;} #include <stdio.h> int main() { printf("Hello, World\n"); return 0;} which 阅读全文
posted @ 2025-05-23 00:35 profesor 阅读(20) 评论(0) 推荐(0)
摘要: To disable the beep in bash you need to uncomment (or add if not already there) the line set bell-style none in your /etc/inputrc file. Note: Since it 阅读全文
posted @ 2025-05-23 00:16 profesor 阅读(23) 评论(0) 推荐(0)
摘要: # 后台运行: # 来源:https://www.rickmakes.com/running-ffmpeg-as-a-background-process/# ffmpeg -nostdin -hide_banner -nostats -loglevel panic -i input.mp4 -y 阅读全文
posted @ 2025-05-23 00:12 profesor 阅读(90) 评论(0) 推荐(0)