[心得]工作中好用的网站整理

所谓的好用,就是遇到问题可以快速refer解决掉问题的。

Mac快捷键
https://support.apple.com/zh-cn/HT201236
这个是最基本的。

Iterm2快捷键
http://teohm.com/blog/working-effectively-with-iterm2/

开发工具
查时间的:https://currentmillis.com/
进制转换的:https://devel.tools/#!dec2hex%20255
该网站其他工具也可以看看:https://devel.tools/
16转10:http://www.binaryhexconverter.com/hex-to-decimal-converter

命令行格式化json:http://www.compciv.org/recipes/cli/jq-for-parsing-json/
网络格式化json:
http://pro.jsonlint.com/
http://codebeautify.org/jsonviewer
http://json.cn/ 这个的优势是全彩色并且报错较清楚
http://json.parser.online.fr/ 这个的特点是可以显示多少个元素,折叠方便

css格式化:http://codebeautify.org/css-beautify-minify
js格式化:http://codebeautify.org/jsviewer

json比较:http://jsondiff.com/
url编解码:http://www.url-encode-decode.com/
url字段解析:http://www.freeformatter.com/url-parser-query-string-splitter.html

c++在线参考:http://www.cplusplus.com/reference/
javascript在线运行环境:http://jsrun.net/square?page=4

google play不登陆下包神器:https://apps.evozi.com/apk-downloader/?id=com.tencent.mm

草料二维码:http://cli.im/ 碰到一串大小写各种奇形怪状的字符,把它贴到里面,然后生成二维码,手机一扫就到手机上了。

让进程在后台可靠运行:https://www.ibm.com/developerworks/cn/linux/l-cn-nohup/
thrift范例:http://thrift-tutorial.readthedocs.io/en/latest/usage-example.html
rpc原理:http://www.cnblogs.com/LBSer/p/4853234.html

python
谷歌:绝对是解决问题的首选,我一般从谷歌跳python的官方网站。
日志模块示例:https://docs.python.org/3/howto/logging-cookbook.html
子进程调用:https://docs.python.org/2/library/subprocess.html
json比较模块:https://github.com/ChannelIQ/jsoncompare
读写unicode问题:http://stackoverflow.com/questions/147741/character-reading-from-file-in-python

Bash
切割字符串:http://stackoverflow.com/questions/19482123/extract-part-of-a-string-using-bash-cut-split
改变文件属性chattr:http://www.ahlinux.com/start/base/15713.html 我们之前有个文件被修改,root都没删掉,最后用这个方法解决的。
curl用法:http://stackoverflow.com/questions/356705/how-to-send-a-header-using-a-http-request-through-a-curl-call
http://stackoverflow.com/questions/14978411/http-post-and-get-using-curl-in-linux

Airdroid
在手机和电脑之间传数据的神器:

测试论坛
性能测试:http://www.51testing.com/html/93/category-catid-93.html

Docker
http://www.heblug.org/chinese_docker/userguide/usingdocker.html

Zookeeper和kafka配置
https://mos.meituan.com/library/32/how-to-install-kafka-on-centos7/

openresty使用
https://www.gitbook.com/book/moonbingbing/openresty-best-practices/details

你可能感兴趣的:(辅助工具)