常用工具整理

在整个工作生活中,我们都扮演着各种角色,亦因此需要用到各种工具,比如需求分析、架构设计、技术方案讲解等等,这里记录了本人用到的一些常用工具

日常工具

商业源码购买&出售

教学讲解

游戏开发

OCR识别

分布式存储技术&应用

  • ipfs-docs
  • libp2p-webrtc

    基于这套技术,我们可以在浏览器中构建一个P2P网络,实现文件的共享和传输或者游戏联网

  • 御宅室

美术资产

影视后期

开发环境搭建

Golang
1
2
3
# windows
# winget search golang
winget install GoLang.Go
Miniconda3
1
2
3
curl https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -o miniconda.exe
start /wait "" .\miniconda.exe /S
del miniconda.exe
Python
1
2
conda create -n python_env python=3.9
conda activate python_env
NoeJs
1
2
conda create -c conda-forge --name nodejs_env nodejs
conda activate nodejs_env
0%