# sources **Repository Path**: baoanyu/sources ## Basic Information - **Project Name**: sources - **Description**: 个人在工作中整理的知识点或工作记录 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 3 - **Created**: 2023-06-08 - **Last Updated**: 2023-06-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README https://fwgl.asiacom.net.cn/home/index ## Windows 端口占用 ``` netstat -aon | findstr 8080 taskkill -f -pid "进程号" ``` ## Linux安装微信、QQ、钉钉、PAC [微信、QQ、钉钉](https://gitee.com/tomhat/deepin-wine-wechat) [PAC Manager](https://gitee.com/tomhat/asbru-cm) [深度软件](http://packages.deepin.com/deepin/pool/main/) ## docker 相关业务 [docker-gitlab](https://gitee.com/tomhat/docker-gitlab) [docker-redmine](https://gitee.com/tomhat/docker-redmine) ## Java 诊断 [Arthas](https://gitee.com/tomhat/Arthas) [学习文档](https://www.docs4dev.com/docs/zh) ## 系统相关 [window优化](https://gitee.com/tomhat/sources/blob/master/%E4%BC%98%E5%8C%96Window.md) [无密钥配置](https://gitee.com/tomhat/sources/blob/master/Linux/%E6%97%A0%E5%AF%86%E9%92%A5%E9%85%8D%E7%BD%AE.md) [扩容根磁盘](https://gitee.com/tomhat/sources/blob/master/Linux/CentOS/%E6%89%A9%E5%AE%B9%E6%A0%B9%E7%A3%81%E7%9B%98.md) [FPM制作RPM安装包](https://gitee.com/tomhat/sources/blob/master/Linux/CentOS/FPM%E5%88%B6%E4%BD%9CRPM%E5%AE%89%E8%A3%85%E5%8C%85.md) [dpkg 常用命令及解释](https://gitee.com/tomhat/sources/blob/master/Linux/Ubuntu/dpkg.md) [apt 常用命令及解释](https://gitee.com/tomhat/sources/blob/master/Linux/Ubuntu/apt.md) [创建交互式shell脚本对话框](https://gitee.com/tomhat/sources/blob/master/Linux/%E5%88%9B%E5%BB%BA%E4%BA%A4%E4%BA%92%E5%BC%8Fshell%E8%84%9A%E6%9C%AC%E5%AF%B9%E8%AF%9D%E6%A1%86.md) ## sources [私服下载地址](https://www.sonatype.com/oss-thank-you-zip) [依赖包下载 https://pkgs.org](https://pkgs.org/) [正则书写https://jex.im/regulex/](https://jex.im/regulex/#!flags=&re=%5E(a%7Cb)*%3F%24) Linux用软件 ``` 日历 rainlendar2 截图 shutter 云盘 seafile 远程控制 teamviewer12,向日葵 编辑SVG Inkscape(Linux、Window均有此软件) 远程桌面 Remmina 数据库客户端 DBeaver ``` 官方下载地址: http://www.sublimetext.com/3 http://www.sublimetext.com/2 Ubuntu安装sublime并且支持搜狗输入法 1. git clone https://github.com/lyfeyaj/sublime-text-imfix.git 2. cd sublime-text-imfix && ./sublime-imfix sublime安装插件 * 使用Package Control组件安装(sublime3),按`Ctrl + ~` ``` import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read()) ``` * Emmet(原名 Zen Coding) 一种快速编写html/css的方法 *注意:安装Emmet的同时,也会自动安装其依赖PyV8 binary库,安装PyV8库会用较长时间,可以在Sublime左下角看到安装进程状态* * html5 支持hmtl5规范的插件包 *注意:与Emmet插件配合使用,效果更好* *使用方法:新建html文档>输入html5>敲击Tab键>自动补全html5规范文档 * * jQuery 支持JQuery规范的插件包 * javascript-API-Completions 支持Javascript、JQuery、Twitter Bootstrap框架、HTML5标签属性提示的插件,是少数支持sublime text 3的后缀提示的插件,HTML5标签提示sublime text 3自带,不过JQuery提示还是很有用处的,也可设置要提示的语言。 * JSFormat JS代码格式化插件。 *使用方法:使用快捷键`ctrl+alt+f`* * SublimeLinter 一个支持lint语法的插件,可以高亮linter认为有错误的代码行,也支持高亮一些特别的注释,比如“TODO”,这样就可以被快速定位。(IntelliJ IDEA的TODO功能很赞,这个插件虽然比不上,但是也够用了吧) * BracketHighlighter 类似于代码匹配,可以匹配括号,引号等符号内的范围。 * Alignment 代码对齐,如写几个变量,选中这几行,`Ctrl+Alt+A`,哇,齐了。 * Ctags 函数跳转,我的电脑上是Alt+点击 函数名称,会跳转到相应的函数 * Doc​Blockr 注释插件,生成幽美的注释。标准的注释,包括函数名、参数、返回值等,并以多行显示,省去手动编写。 使用方法(参考链接内容):http://www.cnblogs.com/huangtailang/p/4499988.html 配置信息 ``` { "jsdocs_extra_tags":["@AuthorHTL","@DateTime {{datetime}}"] } ``` * SideBarEnhancements 侧栏右键功能增强,非常实用 使用方法(参考链接内容):http://www.w3cfuns.com/notes/13810/d9b9ed2fb80785dae88a5344ef0f30d4.html * Terminal 配置快捷键 ctrl+shift+t 打开文件所在文件夹, ctrl+shift+alt+t 打开文件所在项目的根目录文件夹 ``` [ { "keys": ["ctrl+shift+t"], "command": "open_terminal" }, { "keys": ["ctrl+shift+alt+t"], "command": "open_terminal_project_folder" } ] ``` 自定义快捷键 ``` [ { "keys": ["ctrl+shift+t"], "command": "open_terminal_project_folder", "args": { "parameters": ["-T", "Working in directory %CWD%"] } }, { "keys": ["ctrl+alt+t"], "command": "open_terminal", "args": { "parameters": ["-T", "Working in directory %CWD%"] } } ] ``` Visual Studio Code自动识别编码格式 ``` file -> preferences -> setting -> text editor -> files -> Auto Guess Encoding 把此项勾上 ``` [文翼GitHub 个人开源项目](http://repos.wenzhixin.net.cn) [jQuery side menu (测边菜单)](https://github.com/wenzhixin/side-menu.git) [x-editable](https://github.com/wenzhixin/x-editable.git) [图片查看弹出框](https://github.com/wenzhixin/imagebox.git) [JSONRpc for jQuery plugin ](https://github.com/wenzhixin/jsonrpc.git) [BootStrap-menu](http://wenzhixin.net.cn/p/bootstrap-menu/) [jquery-i18n-properties](https://github.com/jquery-i18n-properties/jquery-i18n-properties.git) [阿里webfont平台](http://www.iconfont.cn/?spm=a313x.7781069.1998698872.1.iX1AKY) [BootStrap CDN](http://www.bootcdn.cn/) [fontawesome webfont](http://fontawesome.dashgame.com/) [DNS配置](https://github.com/benxiaohai1212/sources/blob/master/DNS%E9%85%8D%E7%BD%AE.md) [apt 学习](https://github.com/benxiaohai1212/sources/blob/master/atp%20%E5%AD%A6%E4%B9%A0.md) [Linux Ubuntu 下格式化盘并挂载](https://github.com/benxiaohai1212/sources/blob/master/linux_mount.md) [GIT常用命令](https://github.com/benxiaohai1212/sources/blob/master/GIT%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4.md) [Linux命令大全](http://man.linuxde.net/) [安装docker] * [ubuntu](https://github.com/benxiaohai1212/sources/blob/master/ubuntu/install-docker.md) * [centos](https://github.com/benxiaohai1212/sources/blob/master/CentOS/install-docker.md)