
工具使用
文章平均质量分 53
harryhare
这个作者很懒,什么都没留下…
展开
-
需要sudo 运行的程序的IDE设置
很多这样的情况,一个经典的例子是,开80端口的http server,在IDE中的调试。以python pyCharm 为例,解决方法大致有三种 * 用sudo 打开 IDE * 新建脚本sudo python,然后在pycharm 中用此脚本作为解释器 * 设置net-cap 使程序在bind lower port 时,不再需要root权限参考: 这篇三种方法都有提: http...原创 2018-06-09 09:49:34 · 920 阅读 · 0 评论 -
sublime
视频 https://www.imooc.com/learn/40博客(这篇博客和上的视频的节奏是可以对应上的) https://www.cnblogs.com/figure9/p/sublime-text-complete-guide.htmlcheat sheet win: https://sublime-text-unofficial-documentation.readthe...原创 2018-08-22 21:13:40 · 194 阅读 · 0 评论 -
jenkins 连 github
webhook 可以让 jenkins 自动创建,只需要在 manage jenkins -> configure system -> github -> manage hooks 打勾在创建Credentials 时, 把 github 的 personal access token 通过 secret text 方式创建,可以验证通过的。但是 在pipeli...原创 2019-08-29 10:51:28 · 533 阅读 · 0 评论 -
mac terminal 配置
下面三个blog 差不多:reference 1reference 2reference 3总结:iTerm2 替代 mac 默认terminalzsh 替代 bash# 改成zshchsh -s /bin/zsh# 回到bashchsh -s /bin/bashoh-my-zsh# curl 方式安装:sh -c "$(curl -fsSL https://raw...原创 2019-09-02 10:11:30 · 586 阅读 · 0 评论 -
tmux
参考:https://www.cnblogs.com/kevingrace/p/6496899.html安装sudo apt-get install tmux使用进入$ tmux操作ctrl + b +keyfunctionc新panelx关闭当前panel%panel左右布局"panel上学布局space原创 2018-09-28 21:31:46 · 665 阅读 · 0 评论 -
vim常用设置
一个例子编辑文件 ~/.vimrc如果没有这个文件,创建一个set numberset tabspace=4set shiftwidth=4set autoindentset pasteset wrapset laststatus=2set rulerset showmatchset hlsearchset ignorecaseset nobackupset nosw...原创 2019-10-01 11:14:37 · 213 阅读 · 0 评论 -
windows录制本机发出的声音
https://www.howtogeek.com/217348/how-to-record-the-sound-coming-from-your-pc-even-without-stereo-mix/默认录音是没有本地机器发出的声音的,方法一:开启Stereo Mix(混合立体声)方法二:使用audiocity 的 WSSAPI+loopbackwin 10录音软件推荐audioc...原创 2019-10-11 07:07:53 · 633 阅读 · 0 评论