Skip to content

Instantly share code, notes, and snippets.

<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>eBay User: ohiogamesandcollectables</title>
<link>https://www.ebay.com/usr/ohiogamesandcollectables</link>
<atom:link href="http://127.0.0.1:1200/ebay/user/ohiogamesandcollectables" rel="self" type="application/rss+xml"/>
<description>eBay User: ohiogamesandcollectables - Powered by RSSHub</description>
<generator>RSSHub</generator>
<webMaster>contact@rsshub.app (RSSHub)</webMaster>
<language>en</language>
<lastBuildDate>Mon, 02 Mar 2026 03:09:33 GMT</lastBuildDate>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>eBay Search: wyse</title>
<link>https://www.ebay.com/sch/i.html?_nkw=wyse&_sop=10&_ipg=240</link>
<atom:link href="http://127.0.0.1:1200/ebay/search/wyse" rel="self" type="application/rss+xml"/>
<description>eBay Search: wyse - Powered by RSSHub</description>
<generator>RSSHub</generator>
<webMaster>contact@rsshub.app (RSSHub)</webMaster>
<language>en</language>
<lastBuildDate>Mon, 02 Mar 2026 03:08:08 GMT</lastBuildDate>
@phoeagon
phoeagon / config.yaml
Created November 24, 2025 00:23
config.yaml for RectangleWinPlus
keybindings:
- modifier:
- Ctrl
- Alt
key: UP_ARROW
bindfeature: moveToTop
- modifier:
- Ctrl
- Alt
blueprint:
name: ZG-101ZS Tuya 4-Button Scene Switch (context-id trigger)
description: >
Reliable trigger for Tuya ZG-101ZS event.* entities.
Uses context.id (always changes) to detect presses.
domain: automation
input:
event_entity:
name: Scene event entity
blueprint:
name: ZHA - Tuya 4-Button Scene Switch
description: Automate your Tuya 4-Button Scene Switch using ZHA events.
domain: automation
input:
tuya_4button_scene_switch:
name: Tuya 4-Button Scene Switch
description: Tuya 4-Button Scene Switch to use
selector:
device:
@phoeagon
phoeagon / number_tower_solver.py
Created February 18, 2025 04:01
Solver for number towers for "YEAH! YOU WANT "THOSE GAMES," RIGHT? SO HERE YOU GO! NOW, LET'S SEE YOU CLEAR THEM!"
from itertools import permutations
def ev(start, it):
x = start
for i in it:
if i[0] in ('/', '*', '-', '+'):
y = int(i[1:])
x = int(eval(str(x) + i))
if x < 0:
@phoeagon
phoeagon / input
Last active November 17, 2015 03:09
wordacademy
(5,6,5,8,5,7)
oenioa
nahpnc
ecgcen
nradrr
rtrosh
ohdbur
(4,5)
rah
@phoeagon
phoeagon / hangbot.log
Last active October 1, 2015 13:17
A log of the words provided by HangBot @ Telegram
chemokyne
raking
dirge
tobacconist
ageist
betacarotene
neuraminidase
phrenalgia
hereditarianism
irredentism
@phoeagon
phoeagon / gist:2b9076475f63157d67d4
Created June 26, 2015 04:10
Domain List of supposedly hijacked sites
001d.com
007.mx
02011.com
03.com
0991dj.com
1000kan.cc
100pd.cc
100pd.com
101yy.net
107cine.com
@phoeagon
phoeagon / test_access.c
Last active December 17, 2015 08:26
Test whether memory can be accessed
#define _GNU_SOURCE
#include <stdio.h>
#include <udis86.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <ucontext.h>
#include <execinfo.h>
#include <setjmp.h>