Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
bajins committed Oct 20, 2023
1 parent ad9c06f commit 78edfb5
Show file tree
Hide file tree
Showing 15 changed files with 69 additions and 47 deletions.
1 change: 1 addition & 0 deletions DBS/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
> ,Structured Query Language(SQL)
+ [https://github.com/SPLware/esProc](https://github.com/SPLware/esProc)
+ 数据库大全 [https://github.com/cmu-db/dbdb.io](https://github.com/cmu-db/dbdb.io)


* [https://github.com/pingcap/awesome-database-learning](https://github.com/pingcap/awesome-database-learning)
Expand Down
1 change: 1 addition & 0 deletions DBS/关系型数据库.md
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,7 @@ select 1/cast(2 as numeric)
* [SQLite3 数据类型与亲和类型](https://blog.csdn.net/feiyihexin/article/details/99728504)


- 扩展 [https://github.com/mycelial/mycelite](https://github.com/mycelial/mycelite)
- [https://github.com/sqlitebrowser/sqlitebrowser](https://github.com/sqlitebrowser/sqlitebrowser)
- 加密SQLite [https://github.com/sqlcipher](https://github.com/sqlcipher)
- [https://github.com/utelle/wxsqlite3](https://github.com/utelle/wxsqlite3)
Expand Down
2 changes: 2 additions & 0 deletions Go/Go第三方库.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,8 @@
* [https://github.com/go-cmd/cmd](https://github.com/go-cmd/cmd)
* [https://github.com/charmbracelet/bubbletea](https://github.com/charmbracelet/bubbletea)
* [https://github.com/ogier/pflag](https://github.com/ogier/pflag)
* [https://github.com/gdamore/tcell](https://github.com/gdamore/tcell)
* [https://github.com/gcla/gowid](https://github.com/gcla/gowid)
* CLI [https://github.com/blend/go-sdk](https://github.com/blend/go-sdk)
* shell [https://github.com/creack/pty](https://github.com/creack/pty)
* 生成x86程序 [https://github.com/mmcloughlin/avo](https://github.com/mmcloughlin/avo)
Expand Down
59 changes: 28 additions & 31 deletions IDE/Eclipse.md
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@

## 注释模板

+ `Help` -> `Help Contents` -> 搜索`Java Editor Template Variables`
+ `Window` -> `Preference` -> `Java` -> `Code Style` -> `Code Templates`
+ 展开`Comments` -> 点击选中子项(`files``Types`) -> `Pattern`填入注释模板
+ 勾选 `Automatically add comments for new methods and types` 自动为新方法和类型添加注释
Expand All @@ -345,34 +346,30 @@

```java
/**
* @Title: ${file_name}
* @Title ${file_name}
* @Package ${package_name}
* @Description:
* @author: bajins.com
* @date: ${date} ${time}
* @Description
* @author bajins.com
* @date ${date} ${time}
* @version V1.0
* @Copyright: ${year} bajins.com Inc. All rights reserved.
* @Copyright ${year} bajins.com Inc. All rights reserved.
*/
```

- 字段(Fields)注释标签

```java
/**
* @Fields ${field} :
* @author: bajins.com
* @date: ${date} ${time}
*/
/** ${field} */
```

- 构造函数(Constructors)标签

```java
/**
* @Title: ${enclosing_type}
* @Title ${enclosing_type}
* ${tags}
* @author: bajins.com
* @date: ${date} ${time}
* @author bajins.com
* @date ${date} ${time}
*/
```

Expand All @@ -382,21 +379,21 @@
/**
*
* ${tags} ${return_type}
* @author: bajins.com
* @date: ${date} ${time}
* @author bajins.com
* @date ${date} ${time}
*/
```

- 覆盖方法(Overriding Methods)标签

```java
/**
* <p>Title: ${enclosing_method}</p>
* <p>Description: </p>
* @Title ${enclosing_method}
* @Description
* ${tags}
* ${see_to_overridden}
* @author: bajins.com
* @date: ${date} ${time}
* @author bajins.com
* @date ${date} ${time}
*/
```

Expand All @@ -406,32 +403,32 @@
/**
* ${tags}
* ${see_to_target}
* @author: bajins.com
* @date: ${date} ${time}
* @author bajins.com
* @date ${date} ${time}
*/
```

- getter方法标签

```java
/**
* @Title: ${enclosing_method} <BR>
* @Description: please write your description <BR>
* @return: ${field_type} <BR>
* @author: bajins.com
* @date: ${date} ${time}
* @Title ${enclosing_method}
* @Description 获取字段“${bare_field_name}”的值
* @return ${field_type}
* @author bajins.com
* @date ${date} ${time}
*/
```

- setter方法标签

```java
/**
* @Title: ${enclosing_method} <BR>
* @Description: please write your description <BR>
* @return: ${field_type} <BR>
* @author: bajins.com
* @date: ${date} ${time}
* @Title ${enclosing_method}
* @Description 设置字段“${bare_field_name}”的值
* @param ${param}
* @author bajins.com
* @date ${date} ${time}
*/
```

Expand Down
4 changes: 4 additions & 0 deletions IDE/IDEA使用.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,10 @@ public class ${NAME} {

### 预定义模板变量

+ [https://www.jetbrains.com/help/idea/file-template-variables.html](https://www.jetbrains.com/help/idea/file-template-variables.html)
+ [https://www.jetbrains.com/help/idea/template-variables.html](https://www.jetbrains.com/help/idea/template-variables.html)


| 变量 | 说明 |
|--------------------- |------------------------------------------------ |
| ${DATE} | 当前系统日期 |
Expand Down
2 changes: 2 additions & 0 deletions IDE/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* JSON可视化 [https://github.com/AykutSarac/jsoncrack.com](https://github.com/AykutSarac/jsoncrack.com)
* [https://editor.herowand.com](https://editor.herowand.com)
* 网络分析 [https://github.com/gephi](https://github.com/gephi)
* Android代码编辑器 [https://github.com/massivemadness/Squircle-CE](https://github.com/massivemadness/Squircle-CE)



Expand Down Expand Up @@ -432,6 +433,7 @@
* [https://www.tcpdump.org](https://www.tcpdump.org)
* [https://gitlab.com/wireshark/wireshark](https://gitlab.com/wireshark/wireshark)
* [https://www.wireshark.org](https://www.wireshark.org)
* [https://github.com/gcla/termshark](https://github.com/gcla/termshark)
* BurpSuite [https://portswigger.net/burp/releases](https://portswigger.net/burp/releases)
* [BurpSuiteV2.1.06破解版](https://www.waitalone.cn/tools/burpsuite.html)
* [BurpSuite_Pro v2020.4 Loader_Keygen](https://www.uedbox.com/post/65547)
Expand Down
1 change: 1 addition & 0 deletions Other/书籍和博客.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@
* [https://yuanwai.github.io/archives](https://yuanwai.github.io/archives)
* [https://luxiangdong.com](https://luxiangdong.com)
* [https://jakubdziworski.github.io](https://jakubdziworski.github.io)
* [死磕Java - 一站式Java学习平台](https://www.skjava.com)



Expand Down
1 change: 0 additions & 1 deletion PL/Rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,6 @@
- [https://github.com/pyfisch/httpdate](https://github.com/pyfisch/httpdate)
- [https://github.com/bancek/rust-http-range.git](https://github.com/bancek/rust-http-range.git)
- [https://github.com/tower-rs/tower](https://github.com/tower-rs/tower)
- [https://github.com/BurntSushi/ripgrep](https://github.com/BurntSushi/ripgrep)
- [https://github.com/alexcrichton/filetime](https://github.com/alexcrichton/filetime)
- [https://gitlab.com/crates.rs/cargo_toml](https://gitlab.com/crates.rs/cargo_toml)
- [https://github.com/hyperium/hyper](https://github.com/hyperium/hyper)
Expand Down
1 change: 1 addition & 0 deletions Python/Python第三方库.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
- SSHv2协议 [https://github.com/paramiko/paramiko](https://github.com/paramiko/paramiko)
- shell [https://github.com/xonsh/xonsh](https://github.com/xonsh/xonsh)
- 终端样式 [https://github.com/willmcgugan/rich](https://github.com/willmcgugan/rich)
- [https://github.com/urwid/urwid](https://github.com/urwid/urwid)
- [https://github.com/topics/expect](https://github.com/topics/expect)
- [https://www.nist.gov/services-resources/software/expect](https://www.nist.gov/services-resources/software/expect)
- [https://github.com/clarkwang/sexpect](https://github.com/clarkwang/sexpect)
Expand Down
7 changes: 6 additions & 1 deletion Shell/Shell命令.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
> `Shell`管理你与操作系统之间的交互:等待你输入,向操作系统解释你的输入,并且处理各种各样的操作系统的输出结果。
+ [https://github.com/awesome-lists/awesome-bash](https://github.com/awesome-lists/awesome-bash)
+ 命令行沙盒 [https://github.com/binpash/try](https://github.com/binpash/try)


- [Linux常用命令汇总](https://blog.csdn.net/Mculover666/article/details/84558280)
Expand All @@ -26,7 +27,11 @@
+ [https://github.com/ajeetdsouza/zoxide](https://github.com/ajeetdsouza/zoxide)
+ 历史记录 [https://github.com/ddworken/hishtory](https://github.com/ddworken/hishtory)
+ kill [https://github.com/jkfran/killport](https://github.com/jkfran/killport)

+ ack [https://github.com/ggreer/the_silver_searcher](https://github.com/ggreer/the_silver_searcher)
+ 终端图像查看 [https://github.com/stefanhaustein/TerminalImageViewer](https://github.com/stefanhaustein/TerminalImageViewer)
+ 地图 [https://github.com/rastapasta/mapscii](https://github.com/rastapasta/mapscii)
+ 电子表格 [https://github.com/saulpw/visidata](https://github.com/saulpw/visidata)
* 逆向工程 [https://github.com/radareorg/radare2](https://github.com/radareorg/radare2)



Expand Down
3 changes: 2 additions & 1 deletion System/Android.md
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,8 @@
+ [https://github.com/topics/multiplatform](https://github.com/topics/multiplatform)


* 文件传输 [http://www.xender.com](http://www.xender.com)
* 文件传输 [https://github.com/localsend/localsend](https://github.com/localsend/localsend)
* [http://www.xender.com](http://www.xender.com)
* [https://gitlab.com/fdroid/fdroid-nearby](https://gitlab.com/fdroid/fdroid-nearby)
* [https://github.com/interfect/fenix](https://github.com/interfect/fenix)
* [https://feem.io](https://feem.io)
Expand Down
1 change: 1 addition & 0 deletions System/Linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
* [https://github.com/tchx84/Flatseal](https://github.com/tchx84/Flatseal)
* [https://github.com/openSUSE](https://github.com/openSUSE)
* [https://github.com/calamares](https://github.com/calamares)
* 打包 [https://gitlab.com/engmark/nix-start](https://gitlab.com/engmark/nix-start)


- mac [https://github.com/macports](https://github.com/macports)
Expand Down
13 changes: 0 additions & 13 deletions System/Linux网络防火墙.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,6 @@

## Flag

- `nethogs`: 按进程查看流量占用
- `ethtool`: 诊断工具
- `tcpdump`: 抓包工具
- 监控总体带宽使用:`nload``bmon``slurm``bwm-ng``cbm``speedometer``netload`
- 监控总体带宽使用(批量式输出):`vnstat``ifstat``dstat``collectl`
- 每个套接字连接的带宽使用:`iftop``iptraf``tcptrack``pktstat``netwatch``trafshow``jnettop`
- `ntopng`
- perf、sar、ksar、mpstat、uptime、vmstat、pidstat、time、cpustat、munin、glances、atop、nmon、pcp-gui、nfsstat、netstat、iostat
- [https://github.com/htop-dev/htop](https://github.com/htop-dev/htop)
- 视图监视器 [https://github.com/paradoxxxzero/gnome-shell-system-monitor-applet](https://github.com/paradoxxxzero/gnome-shell-system-monitor-applet)
- [https://github.com/aristocratos](https://github.com/aristocratos)



* [局域网怎么实现内外网隔离?](https://www.zhihu.com/question/489849459)

Expand Down
19 changes: 19 additions & 0 deletions System/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,12 @@
* [https://github.com/BotoX/ServerStatus](https://github.com/BotoX/ServerStatus)
* [https://github.com/nokyan/resources](https://github.com/nokyan/resources)
* [https://github.com/chaos-zhu/easynode](https://github.com/chaos-zhu/easynode)
* [https://github.com/ClementTsang/bottom](https://github.com/ClementTsang/bottom)
* [https://github.com/aksakalli/gtop](https://github.com/aksakalli/gtop)
* [https://github.com/xxxserxxx/gotop](https://github.com/xxxserxxx/gotop)
* [https://github.com/aristocratos/btop](https://github.com/aristocratos/btop)
* [https://github.com/htop-dev/htop](https://github.com/htop-dev/htop)
* [https://github.com/nicolargo/glances](https://github.com/nicolargo/glances)
* [https://github.com/netdata/netdata](https://github.com/netdata/netdata)
* [https://github.com/newrelic](https://github.com/newrelic)
* [https://opensource.newrelic.com](https://opensource.newrelic.com)
Expand All @@ -290,6 +296,17 @@
- [https://github.com/bigbully/Dapper-translation](https://github.com/bigbully/Dapper-translation)
- [https://bigbully.github.io/Dapper-translation](https://bigbully.github.io/Dapper-translation)
- [Linux工程师必备的88个监控工具](https://learn-linux.readthedocs.io/zh_CN/latest/maintenance/monitor/tools/80-linux-monitoring-tools.html)
- `nethogs`: 按进程查看流量占用
- `ethtool`: 诊断工具
- `tcpdump`: 抓包工具
- 监控总体带宽使用:`nload`、`bmon`、`slurm`、`bwm-ng`、`cbm`、`speedometer`、`netload`
- 监控总体带宽使用(批量式输出):`vnstat`、`ifstat`、`dstat`、`collectl`
- 每个套接字连接的带宽使用:`iftop`、`iptraf`、`tcptrack`、`pktstat`、`netwatch`、`trafshow`、`jnettop`
- `ntopng`
- perf、sar、ksar、mpstat、uptime、vmstat、pidstat、time、cpustat、munin、glances、atop、nmon、pcp-gui、nfsstat、netstat、iostat
- 视图监视器 [https://github.com/paradoxxxzero/gnome-shell-system-monitor-applet](https://github.com/paradoxxxzero/gnome-shell-system-monitor-applet)
- [https://github.com/aristocratos](https://github.com/aristocratos)
Expand Down Expand Up @@ -433,6 +450,8 @@
* [https://coda.io](https://coda.io)
* [https://github.com/kuaifan/dootask](https://github.com/kuaifan/dootask)
* [https://www.cornerstone365.cn](https://www.cornerstone365.cn)
* 画板 [https://github.com/JessYan0913/pictode](https://github.com/JessYan0913/pictode)
* 处理音频和视频 [https://github.com/xiguaxigua/ffmpeg-online](https://github.com/xiguaxigua/ffmpeg-online)
Expand Down
1 change: 1 addition & 0 deletions System/Windows软件.md
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,7 @@ THUV2-32HH7-6NMHN-PTX7Y-QQCTH(该序列号来自昔阳县政府)
* W10Privacy [https://www.winprivacy.de/deutsch-start/download](https://www.winprivacy.de/deutsch-start/download)
* Windows 10 Manager [https://www.yamicsoft.com](https://www.yamicsoft.com)
* `WMXD7-RG8FP-OYKS3-KHTN6`
* [https://uninstalr.com](https://uninstalr.com)
* Uninstall Tool [https://crystalidea.com/uninstall-tool](https://crystalidea.com/uninstall-tool)
* [https://github.com/Klocman/Bulk-Crap-Uninstaller](https://github.com/Klocman/Bulk-Crap-Uninstaller)
* Total Uninstall [https://www.martau.com](https://www.martau.com)
Expand Down

0 comments on commit 78edfb5

Please sign in to comment.