Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
0xdade
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
0xdade
7mo ago
Tons of services have terms of service that include a minimum age requirement. That doesn't mean they are _verifying_ those ages. Just that if you are not the minimum age, then you're in breach of the service terms and can be term
2.
▲
by
0xdade
1y ago
The share button I have uses the navigator.share API if it's available, or tries to fall back to navigator.clipboard. Unfortunately I think I didn't do adequate testing to make sure the clipboard feature works in whatever edge cas
3.
▲
by
0xdade
1y ago
This is absolutely an option! It gets a little tricky to avoid shifting content around, since it's pretty typical to load styles in the head but load javascript either at the end of the DOM or with the defer tag, so the javascript woul
4.
▲
by
0xdade
1y ago
Damn I didn't know this. I don't know how my search failed to turn this up, because I was literally googling how to accomplish it with media queries lol.
5.
▲
by
0xdade
2y ago
Yeah based on the linked document, it's missing about 1000 apex domains based on the .gov zone export from today. Even the current-full.csv on the latest commit in github is short about 1000 apex domains. $ cat 2025-02-21-gov.txt | cut
6.
▲
by
0xdade
2y ago
I updated the post late last night to address the security bits of the host header. Based on my understanding of nginx documentation and some brief testing, I don't think path traversal in the host header is possible -- nginx throws a
7.
▲
by
0xdade
2y ago
Ohh so I just gave this a shot and I think that the trap runs when `.ssh/rc` exits, which is immediately when my bash prompt shows up. But if I want to make it non-interactive (in a really hacky way) then I can have my .ssh/rc fil
8.
▲
by
0xdade
2y ago
I link to awesome-tunneling in my post :) I didn't know about that particular list until after I spent my night doing this. I didn't know about headscale, that does seem pretty cool but I think MagicDNS also specifically would int
9.
▲
by
0xdade
2y ago
Sounds pretty cool, I have done some similar things in the past with using a vpn to proxy backwards into my home network (hello fellow k8s at home user). I think in this case I wanted to basically set up my one nginx config and never have t
10.
▲
by
0xdade
2y ago
Oooh, I hadn't considered HUP. I tried to use a cleanup script with a bash trap on I think INT and KILL but it didn't seem to work correctly. I had also never tried to use a trap command, though, so there was a good chance I was d
11.
▲
Can You Grok It – Hacking together my own dev tunnel service
(0xda.de)
97 points
by
0xdade
2y ago
|
19 comments
12.
▲
by
0xdade
2y ago
I hacked together nginx, ssh, and a little bit of bash to make a simple dev tunnel service on my own domain. I thought HN readers could appreciate (and probably roast) it.