Skip to content

Instantly share code, notes, and snippets.

View geekjourneyx's full-sized avatar
🎯
Focusing

geekjourney geekjourneyx

🎯
Focusing
View GitHub Profile
@geekjourneyx
geekjourneyx / x-article-to-md.user.js
Created January 13, 2026 17:04
X Article to Markdown
// ==UserScript==
// @name X Article to Markdown
// @namespace http://tampermonkey.net/
// @version 1.0.0
// @description Copy X (Twitter) long articles as Markdown format
// @author geekjourney
// @match https://x.com/*/status/*
// @match https://x.com/*/article/*
// @icon https://x.com/favicon.ico
// @grant none
@emschwartz
emschwartz / README.md
Last active February 16, 2026 04:04
The Most Popular Blogs of Hacker News in 2025

This is an OPML version of the HN Popularity Contest results for 2025, for importing into RSS feed readers.

Plug: if you want to find content related to your interests from thousands of obscure blogs and noisy sources like HN Newest, check out Scour. It's a free, personalized content feed I work on where you define your interests in your own words and it ranks content based on how closely related it is to those topics.

@Xsir0
Xsir0 / gist:950b13e1c2d003c9209f1c965eefdef9
Created March 13, 2025 14:10
微信公众号HTML手动清理与插入剪贴板内容
// ==UserScript==
// @name 微信公众号HTML手动清理与插入剪贴板内容
// @namespace http://tampermonkey.net/
// @version 0.3
// @description 在微信公众号页面添加按钮,手动清除或插入剪贴板内容到指定路径
// @author Xsir
// @match *://mp.weixin.qq.com/cgi-bin/appmsg*
// @grant none
// ==/UserScript==
{
"meta": {
"theme": "professional",
"lastModified": "2025-04-04T06:59:24.305Z"
},
"basics": {
"name": "Thomas Davis",
"phone": "0411021021",
"label": "Web Developer",
"image": "https://avatars0.githubusercontent.com/u/416209?s=460&u=38f220a2c9c658141804f881c334c594eb1642ac&v=4",
package main
import (
"database/sql"
"strconv"
"log"
"net/http"
"fmt"
"bytes"
"gopkg.in/gin-gonic/gin.v1"
@mattetti
mattetti / multipart_upload.go
Last active October 12, 2025 05:15
Example of doing a multipart upload in Go (golang)
package main
import (
"bytes"
"fmt"
"io"
"log"
"mime/multipart"
"net/http"
"os"