Skip to content

Instantly share code, notes, and snippets.

View peeweep's full-sized avatar

jinqiang zhang peeweep

View GitHub Profile
#!/usr/bin/env python3
import json
import requests
gerrit = "https://codereview.qt-project.org"
project = "pyside/pyside-setup"
branch = "dev"
params = (
('q', 'project:{} status:open branch:{}'.format(project, branch)),
('o', 'CURRENT_REVISION'),
)
@peeweep
peeweep / download-freedesktop-mailing-list-archive.sh
Last active August 2, 2020 11:59
download freedesktop mailing list archive
#!/bin/bash
if [[ -f mbox ]]; then
rm mbox
echo delete mbox
fi
months="January February March April May June July August September October November December"
for year in {2010..2020}; do
for month in $months; do
#include <X11/XKBlib.h>
#include <X11/Xlib.h>
#include <X11/keysym.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
class Numlock {
public:
Numlock(Display* dpy) { this->dpy = dpy; }
2020-02-09
ipv666
desc:'Golang IPv6 address enumeration'
Upstream:'https://github.com/lavalamp-/ipv666'
AUR:'https://aur.archlinux.org/packages/ipv666'
2020-01-27
neovide-git
desc:'No Nonsense Neovim Client in Rust'
Upstream:'https://github.com/Kethku/neovide'