Temp

7805 bookmarks
Custom sorting
常见java反编译工具
常见java反编译工具
常见java反编译工具 在源代码审计或者进行漏洞挖掘,有时会碰到war包,jar包,或者直接打包的class文件,需要通过反编译进行源代码审计。以下是个人常用的几种java反编译工具,个人比较推荐使用IDEA自带的反编译组件,直接调用IDEA的java-decompiler组件进行反编译,也方便进行调试分析。部分工具不仅限于反编译,其他功能请自行摸索。萝卜青菜,各有所爱,各位依据自身情况选择工具
·hksanduo.github.io·
常见java反编译工具
Go lint实践
Go lint实践
什么是lint?静态代码分析。通俗地讲,扫描源代码,在不运行代码的情况下,找出一些不规范的书写方式以修正, 例如: if foo != false {...} 这样的写法显然不如 if foo {} 好理解。 lint 程序扫描到这样的case就…
·zhuanlan.zhihu.com·
Go lint实践
Go语言爱好者周刊:第 113 期 - Go语言中文网 - Golang中文社区
Go语言爱好者周刊:第 113 期 - Go语言中文网 - Golang中文社区
这里记录每周值得分享的 Go 语言相关内容,周日发布。 本周刊开源(GitHub:[polaris1119/golangweekly](https://github.com/polaris1119/golangweekly)),欢迎投稿,推荐或自荐文章/软件/资源等,请[提交 issue](https://github.com/polaris1119/golangweekly/issues)
·studygolang.com·
Go语言爱好者周刊:第 113 期 - Go语言中文网 - Golang中文社区
发现个 pure go 的 sqlite 驱动 - V2EX
发现个 pure go 的 sqlite 驱动 - V2EX
Go 编程语言 - @iyear - 源于 tg 群群友的推荐文档: https://pkg.go.dev/modernc.org/sqlite而且还有相应的 gorm 的驱动:https://github.com/cloud
·v2ex.com·
发现个 pure go 的 sqlite 驱动 - V2EX
An Introduction to Go Tooling
An Introduction to Go Tooling
When picking a language for your next project, few things are more critical than the tooling it provides. In this article, Ayooluwa Isaiah wraps up our Go for Rubyists series with an introduction to go tooling.
·honeybadger.io·
An Introduction to Go Tooling
苏洋博客
苏洋博客
记录点滴成长,分享技术经验。
·soulteary.com·
苏洋博客
深入 Node 模块的安装和发布
深入 Node 模块的安装和发布
npm 是一个方便的 Node 模块分发、管理工具。我们平常会使用 npm install 安装模块,使用 npm publish 发布模块。事实上除了基本功能,这 2 个命令还有其他非常有用的特性。这篇文章会给大家介绍这些命令的一些“高级”用法。
·kohpoll.github.io·
深入 Node 模块的安装和发布