Skip to content

Instantly share code, notes, and snippets.

View journey-ad's full-sized avatar
🍭
关注嘉然,顿顿解馋

Jad journey-ad

🍭
关注嘉然,顿顿解馋
View GitHub Profile
Vue.js 🕓 14h40m ██████████████▌░░░░░░░░░░░ 55.8%
TypeScript 🕓 3h59m ███▉░░░░░░░░░░░░░░░░░░░░░░ 15.2%
JavaScript 🕓 2h48m ██▊░░░░░░░░░░░░░░░░░░░░░░░ 10.7%
Other 🕓 2h23m ██▎░░░░░░░░░░░░░░░░░░░░░░░ 9.1%
HTML 🕓 54m ▉░░░░░░░░░░░░░░░░░░░░░░░░░ 3.5%
@journey-ad
journey-ad / linkedin-learning.zh.js
Last active June 26, 2022 13:30
LinkedIn Learning 字幕中文翻译脚本
// ==UserScript==
// @name LinkedIn Learning 字幕中文翻译
// @description LinkedIn Learning 字幕中文翻译脚本
// @namespace https://github.com/journey-ad
// @version 0.2.1
// @icon https://static.licdn.cn/sc/h/2c0s1jfqrqv9hg4v0a7zm89oa
// @author journey-ad
// @match *://www.linkedin.com/learning/*
// @require https://greasyfork.org/scripts/411512-gm-createmenu/code/GM_createMenu.js?version=864854
// @require https://cdn.jsdelivr.net/npm/fingerprintjs2@2.1.0/fingerprint2.min.js
@journey-ad
journey-ad / giwifi.py
Last active September 1, 2021 12:32
GiWiFi认证登录脚本
import os
import re
import time
import json
import argparse
import requests
import netifaces
from getpass import getpass
from urllib.parse import urlparse, parse_qs
@journey-ad
journey-ad / 2233.zenra.js
Last active May 7, 2024 13:36
哔站直播间的2233娘挂件替换为全裸版本
// ==UserScript==
// @name 哔站直播全裸2233娘
// @description 哔站直播间的2233娘挂件替换为全裸版本
// @description:zh-TW 嗶站直播間的2233娘掛件替換為全裸版本
// @namespace https://github.com/journey-ad
// @author journey-ad
// @include *://live.bilibili.com/*
// @require https://cdn.jsdelivr.net/jquery/1.12.4/jquery.min.js
@journey-ad
journey-ad / PixivSortHelper.py
Last active May 4, 2019 06:22
对下载好的P站作品进行分类
import os
import sys
import time
import argparse
import math
import json
import threading
import requests
import sqlite3
@journey-ad
journey-ad / PixivDownloadHelper.py
Last active February 26, 2024 07:29
P站批量下载脚本
'''
需管理员权限以创建软连接
需将ffmpeg加入环境变量PATH
仅在windows平台进行了测试
'''
import os
import argparse
import math
import json
import threading
@journey-ad
journey-ad / gitstars.json
Created February 6, 2018 05:27
github stars manager for production
{"tags":[],"lastModified":1517894846867}
@journey-ad
journey-ad / SMBDIS.ASM
Created January 23, 2018 11:59 — forked from 1wErt3r/SMBDIS.ASM
A Comprehensive Super Mario Bros. Disassembly
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY
;by doppelganger (doppelheathen@gmail.com)
;This file is provided for your own use as-is. It will require the character rom data
;and an iNES file header to get it to work.
;There are so many people I have to thank for this, that taking all the credit for
;myself would be an unforgivable act of arrogance. Without their help this would
;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into
;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no
@journey-ad
journey-ad / fetchPixivFavIds.js
Last active February 26, 2024 07:29
抓取P站收藏ID
var ids = [];
function logcat(data, level){
level = level.toUpperCase();
if(level === 'I'){
console.info('Info:', data);
}else if(level === 'W'){
console.warn('Warning:', data);
}else if(level === 'E'){
console.error('Error:', data);
}else{
@journey-ad
journey-ad / ImageVector.cs
Created October 26, 2017 05:32 — forked from ksasao/ImageVector.cs
C#による高速画像一致検索クラス。フル版は https://github.com/ksasao/Gochiusearch にあります。
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;