Skip to content

Instantly share code, notes, and snippets.

View Neboer's full-sized avatar
🍉
Workermelon

Neboer Neboer

🍉
Workermelon
View GitHub Profile
@Neboer
Neboer / pacman-pkgbyrepo.py
Created May 15, 2025 06:36
pacman-pkgbyrepo archlinux show your installed packages and their origin repos
#!/usr/bin/python3
import configparser
import pyalpm
def get_repo_list():
c = configparser.ConfigParser(strict=False, allow_no_value=True)
c.read('/etc/pacman.conf')
@Neboer
Neboer / moegirl_image_fix_userscript.js
Created June 27, 2025 12:04
修复萌娘百科缩略图无法加载的错误,将缩略图替换成原图URL。
// ==UserScript==
// @name Moegirl 原图简洁替换器
// @namespace http://tampermonkey.net/
// @version 1.1
// @description 将萌娘百科图片中的缩略图链接简洁替换为原图链接(img.src)
// @match https://zh.moegirl.org.cn/*
// @grant none
// ==/UserScript==
(function () {