工具网站

json格式美化器:
https://jsonformatter.org/

将curl命令转化为python requests库的请求:
https://curlconverter.com/

dify云平台:
https://cloud.dify.ai/apps

学习ai相关知识的网站:
https://www.deeplearning.ai/

上传一个pdf就可与ai基于pdf内容进行问答:
https://pdf.ai/

jina ai,提供将网页转化成markdown格式的内容的api
https://jina.ai/

一个练习正则表达式的网站
https://regex101.com

用于测试API的网站,还没花时间研究
https://apifox.com/

在线编辑及运行python代码的网站
https://lwebapp.com/zh/python-playground

王铭东的网站,有很多不错的python教程,还有很多嵌入式相关的教程。
https://www.itprojects.cn/

  1. Linux Journey
    网站地址: https://linuxjourney.com
    特色: 这是一个免费的学习网站,提供了从基础到高级的 Linux 教程,内容生动有趣。你可以根据自己的水平选择不同的课程路线。
  2. The Linux Command Line
    网站地址: https://linuxcommand.org
    特色: 专注于 Linux 命令行,涵盖常用的命令和技巧。它也有一本免费的电子书《The Linux Command Line》可以帮助学习者全面掌握命令行操作。
  3. ExplainShell
    网站地址: https://explainshell.com
    特色: 这个工具允许你输入 Linux 命令,它会将每个部分分解并解释其功能,是理解复杂命令的好帮手。
  4. Linux Handbook
    网站地址: https://linuxhandbook.com
    特色: 提供实用的 Linux 教程,适合从初学者到高级用户。你可以找到很多命令和相关的详细教程。
  5. Linuxize
    网站地址: https://linuxize.com
    特色: 提供简洁易懂的 Linux 教程,涵盖系统管理、网络、编程等各个方面,常用命令的讲解也非常全面。
  6. Cheatography
    网站地址: https://cheatography.com
    特色: 这里有大量的 Linux 速查表(cheat sheets),方便你快速查找常用命令的用法。
  7. Ubuntu Documentation
    网站地址: https://help.ubuntu.com
    特色: Ubuntu 官方的文档是学习 Linux 命令的好资源,虽然它专注于 Ubuntu 发行版,但很多内容在其他发行版上也通用。
  8. Linux Commands - Cheat Sheet
    网站地址: https://www.commandlinefu.com
    特色: 这是一个社区驱动的网站,用户分享各种有用的命令,可以从中学到很多有趣且实用的技巧。
  9. GitHub - Awesome Linux Resources
    GitHub 仓库地址: https://github.com/aleksandar-todorovic/awesome-linux
    特色: 这是一个精心维护的 GitHub 仓库,包含了 Linux 的各种资源,包括命令、工具和教程。
    你可以根据自己学习的进度和需求选择合适的资源,结合实战操作不断提高。

马哥python全能工程师2022
https://www.magedu.com/
B站学习自用,视频源于网络,如有版权问题联系删除
这个教程老师讲的不错,里面有很多高级的python知识。讲的也比较细致。讲师名称: 许伟 Wayne Python金牌讲师

图片,PDF转矢量图
https://svgconverter.com/zh/pdf-to-svg
https://www.alltoall.net/pdf_svg/
https://pdftosvg.com/zh/

用于模拟假接口:
https://jsonplaceholder.typicode.com/

>>> import requests
>>> api_url = "https://jsonplaceholder.typicode.com/todos/1"
>>> response = requests.get(api_url)
>>> response.json()
{'userId': 1, 'id': 1, 'title': 'delectus aut autem', 'completed': False}

requests库作者创建的测试假接口的网站:https://httpbin.org/

HTTP Messgaes相关内容介绍:
https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/Messages

NASA APIs: One of the coolest collections of publicly available APIs is the one provided by NASA. You can find APIs to fetch the astronomy picture of the day or pictures taken by the Earth Polychromatic Imaging Camera (EPIC), among others.

一些公网api集合
https://public-apis.io/
https://apilayer.com/marketplace?utm_source=any-api&utm_medium=any-api-redirection&utm_campaign=any-api-redirection

https://www.w3schools.com/tags/ref_httpmethods.asp

posted @ 2024-05-16 17:45  RolandHe  阅读(113)  评论(0)    收藏  举报