扫一扫
关注 HG 公众号
发现更多开源乐趣

第 72 期

兴趣是最好的老师,HelloGitHub 就是帮你找到编程的兴趣。

C 项目

1. reptyr

Star 4.3k Watch 92 Fork 190
能够把旧终端运行中的程序,迁移到新终端窗口的实用工具
reptyr

2. hashcat

Star 12.3k Watch 447 Fork 2.1k
一款强大的密码恢复工具。破解速度超快支持多种算法,适用于 Linux、macOS 和 Windows 操作系统

安装:brew install hashcat
常用参数:
-a  指定破解模式:“-a 0”字典攻击,“-a 1” 组合攻击;“-a 3”掩码攻击
-m  指定要破解的 hash 类型:默认为 MD5
--force 忽略破解过程中的警告

常用破解模式:
0:Straight(字典破解)
1:Combination(组合破解)
3:Brute-force(掩码暴力破解)
6:Hybrid Wordlist + Mask(字典+掩码破解)
7:Hybrid Mask + Wordlist(掩码+字典破解)

常用掩码设置:
l:纯小写字母 abcdefghijklmnopqrstuvwxyz
u:纯大写字母 ABCDEFGHIJKLMNOPQRSTUVWXYZ
d:纯数字 0123456789

举例:破解 8 位数字密码
hashcat -a 3 -m 0 --force 0D7002A70CCDE8BF4BA2A4A5572A85E9(密码md5字符串) ?l?l?l?l?l?l?l?l?l?l?l(11 位密码的掩码)

hashcat

C# 项目

3. PluginCore

Star 103 Watch 1 Fork 21 中文
适用于 ASP.NET Core 的轻量级插件框架。开箱即用自带插件管理 Web 界面

public void ConfigureServices(IServiceCollection services)
{
    // ...
    // 1. Add PluginCore
    services.AddPluginCore();
}

public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
    // ...
    // 2. Use PluginCore
    app.UsePluginCore();
}

PluginCore

4. Monitorian

Star 1.4k Watch 19 Fork 93
轻松调节多个显示器亮度的 Windows 桌面工具。操作界面支持中文,使用时显示器需要开启 DDC/CI
Monitorian

CSS 项目

5. log

Star 2.9k Watch 65 Fork 153
浏览器 console.log 风格的 CSS 库。查看效果
log

Go 项目

6. illustrated-tls

Star 3.1k Watch 68 Fork 193
图解 TLS 连接。用在线交互的方式讲解 TLS 的全过程,从建立 TLS 1.2 客户端发送 ping 再到接收 pong,详细到每一个字节。在线尝试
illustrated-tls

7. hh-lol-prophet

Star 487 Watch 2 Fork 68 中文
英雄联盟对局先知工具。免费合法不封号,原理是基于 LOL 客户端接口获取用户数据,实现开局前对玩家信息分析和打分
hh-lol-prophet

Java 项目

8. supertokens-core

Star 5.7k Watch 47 Fork 189
开源的身份验证方案。为你的应用轻松增加登录、会话管理等功能,支持自行搭建服务。可用作 Auth0 的开源替代品
supertokens-core

9. LSPosed

Star 4.6k Watch 109 Fork 669 中文
运行于 Android 操作系统的钩子框架。支持 Android 8 以上,能够拦截几乎所有 Java 函数的调用,从而可被用来修改 Android 系统和软件的功能
LSPosed

JavaScript 项目

10. reveal.js

Star 59.4k Watch 1.7k Fork 16.1k
一款 HTML 演示框架。让你摆脱传统死板的 PPT 制作方法,可以方便地使用 HTML、Markdown 语言制作 PPT
reveal.js

11. chameleon

Star 8.8k Watch 239 Fork 673 中文
一端所见即多端所见。适应不同环境的跨端整体解决方案,支持 Web、小程序、快应用 等平台
chameleon

12. lax.js

Star 8.8k Watch 98 Fork 452
用于滚动时创建平滑和好看动画的库。简单轻量仅 4KB 大小,但功能齐全且灵活

<!-- JS -->
<script>
  window.onload = function () {
    lax.init()

    // Add a driver that we use to control our animations
    lax.addDriver('scrollY', function () {
      return window.scrollY
    })

    // Add animation bindings to elements
    lax.addElements('.selector', {
      scrollY: {
        translateX: [
          ["elInY", "elCenterY", "elOutY"],
          [0, 'screenWidth/2', 'screenWidth'],
        ]
      }
    })
  }
</script>

<!-- HTML -->
<div class="selector">Hello</div>

lax.js

13. charts

Star 14.3k Watch 226 Fork 683
简单、零依赖、响应式的 SVG 图表库

const data = {
    labels: ["12am-3am", "3am-6pm", "6am-9am", "9am-12am",
        "12pm-3pm", "3pm-6pm", "6pm-9pm", "9am-12am"
    ],
    datasets: [
        {
            name: "Some Data", chartType: "bar",
            values: [25, 40, 30, 35, 8, 52, 17, -4]
        },
        ...
]}

const chart = new frappe.Chart("#chart",
{   // or a DOM element,
    // new Chart() in case of ES6 module with above usage
    title: "My Awesome Chart",
    data: data,
    type: 'axis-mixed', // or 'bar', 'line', 'scatter', 'pie', 'percentage'
    height: 250,
    colors: ['#7cd6fd', '#743ee2']
})

charts

Kotlin 项目

14. compose-tetris

Star 437 Watch 4 Fork 69
基于 Jetpack Compose 的俄罗斯方块游戏
compose-tetris

Python 项目

15. textdistance

Star 2.8k Watch 59 Fork 226
计算文本距离的常用算法库。包含计算文本相似度、多样性、编辑距离、压缩等多种算法,所有算法均采用 Python 实现,容易理解调用方便

import textdistance
textdistance.hamming.normalized_similarity('test', 'text')
# 相似度为 0.75

textdistance

16. rembg

Star 2.9k Watch 59 Fork 503
简单实用的删除图像背景/抠图工具

from rembg import remove
from PIL import Image

input_path = 'input.png'
output_path = 'output.png'

input = Image.open(input_path)
output = remove(input)
output.save(output_path)

rembg

17. tiptop

Star 947 Watch 8 Fork 38
炫酷的命令行系统监控工具

安装:pip install tiptop
运行:tiptop

tiptop

18. pokete

Star 992 Watch 9 Fork 33
运行在终端里的口袋妖怪类游戏。虽然游戏图像采用简单的 ASCII 码构建,但商店、小精灵、对战等功能一应俱全

运行方法:
# pip install scrap_engine
$ git clone https://github.com/lxgr-linux/pokete.git
$ ./pokete/pokete.py

pokete

19. saleor

Star 15.7k Watch 385 Fork 4.5k
用 Python 开发的电商平台。采用 Django+GraphQL API+React 构建,功能丰富支持移动端、订单、商品、用户管理等。在线体验
saleor

Swift 项目

20. OnlySwitch

Star 1.2k Watch 9 Fork 101
免费开源的 macOS 状态栏一键设置工具。可以轻松对系统功能进行设置,如隐藏桌面图标、清理 Xcode 缓存、一键隐藏刘海儿、进入夜览模式等数十种功能
OnlySwitch

其它

21. ElectronBot

Star 4.4k Watch 139 Fork 1.1k 中文
自制桌面级小机器人。它具备 USB 通信显示画面功能以及 6 个自由度,支持手势识别和人体关键点检测。这里有配套的全部开发资料和 SDK,让你也可以制作出一个这样有趣的机器人
ElectronBot

22. electerm

Star 6.1k Watch 81 Fork 628
一款支持 SSH/SFTP 的终端工具。支持中文和 Windows、Linux、macOS 操作系统
electerm

23. design-patterns-for-humans

Star 33.6k Watch 1.2k Fork 4.2k
人人都能看懂的设计模式教程。中文
design-patterns-for-humans

开源书籍

24. Deep-Learning-with-TensorFlow-book

Star 12.5k Watch 487 Fork 4.0k 中文
《TensorFlow 深度学习》
Deep-Learning-with-TensorFlow-book

机器学习

25. jina

Star 14.3k Watch 182 Fork 1.8k
一款易用的神经搜索框架。神经搜索是指用非结构化数据,搜索非结构化数据。Jina 简化了神经搜索系统的搭建流程,使开发者可以快速构建以图搜图、以文字搜图、问答机器人、照片去重、海量标签分类等应用

from docarray import Document, DocumentArray
from jina import Executor, Flow, requests
class PreprocImg(Executor):
    @requests
    async def foo(self, docs: DocumentArray, **kwargs):
        for d in docs:
            (
                d.load_uri_to_image_tensor(200, 200)  # load
                .set_image_tensor_normalization()  # normalize color
                .set_image_tensor_channel_axis(
                    -1, 0
                )  # switch color axis for the PyTorch model later
            )

jina

26. awesome-automl-papers

Star 3.4k Watch 220 Fork 648
汇集了自动机器学习(AutoML)相关的论文、文章、教程等资源的项目
awesome-automl-papers