前端analysis | What,Why,Who,When,Where,How

《python》- python入门概念总结

python
python 介绍 2.x 与 3.x 版本不兼容, 存在以下主要不同,本问介绍基于Mac下Python3.x版本: 1. 使用__future__模块2. print函数3. 整数除法4. Unicode5. xrange6. 触发异常7. 处理异常8. next()函数和.next() ...
Read more

《Linux》- shell 搜索命令

shell 脚本
linux 命令查看命令帮助 help info man or –help ,功能强度排序: help(只能内置命令) < man < info 内置命令 man help 查看内置命令列表 123456bash, :, ., [, alias, bg, b ...
Read more

投屏技术调研

投屏 调研
投屏技术 Wi-Fi无线投屏技术; 飞图 iPhone其实就内置了便捷的屏幕镜像功能,只要确定您所需投屏的设备支持AirPlay功能,两者同一局域网下,直接在iPhone控制中心,通过「屏幕镜像」就能投大屏。AirPlay是一项无线流媒体技术,而AirPlay 2是一项无线“多房间”流媒 ...
Read more

《Linux》- 别名管理

shell 脚本
别名管理 别名使用,加快输入,不同命令解析,对应不同配置 Bash – ~/.bashrc ZSH – ~/.zshrc Fish – ~/.config/fish/config.fish 查看别名1alias 临时别名 12345 ...
Read more

《serverless》- serverless能做什么?

serverless
serverless安装Mac|Linux1curl -o- -L https://slss.io/install | bash Windows12choco install serverlesschoco upgrade serverless Npm方法12345# 安装 serverle ...
Read more

《Linux》- shell for循环

shell 脚本
for 循环结构1234for i [in { }] # 范围do 循环执行logicdone 循环输出用户输入12345678# 默认去 $@,取所有位置变量值for i do echo $idone$ ./for_test.sh 1,2,3,3,000,2331,2 ...
Read more
上一页 下一页