How are you accessing it without Cloudflare? How do you know that Lemmy is actually listening?
- 3 Posts
- 420 Comments
What’s the URL you using to access it without Cloudflare?
Edit: Also that curl tells me it’s not listening on that IP/port.
Can you access it without Cloudflare?
Does
curl http://localhost:8536/
work?You are using cloudflared right? Because normal (non-cloudflared) Cloudflare doesn’t support port 8536.
SteveTech@programming.devto Selfhosted@lemmy.world•Let’s Encrypt Begins Supporting IP Address CertificatesEnglish12·4 days agoWith dynamic DNS? Yeah it always has, as long as you can host a http server.
With a dynamic IP? It should do, the certs are only valid for 6 days for that reason.
SteveTech@programming.devto homeassistant@lemmy.world•Home Assistant as security camera PVR??English3·4 days agoI know this seems pretty much solved, but I just wanted to point out:
Frigate doesn’t need a TPU, OpenVINO is quite performant even on decade old Haswells, or if you’ve got a GTX 750 or higher you might be able to use that as well.
Oh okay, I had assumed compiling would be a bit more I/O bound, while gaming would be a bit more CPU bound, but I guess you’re right about the benchmarks!
If it helps, I wrote a KDE widget to switch between the modes: https://github.com/Steve-Tech/KDE-AMD-X3D-Selector
My understanding is
amd_x3d_mode
basically prioritises what cores the scheduler will assign tasks to. I usually keep it on cache since I do a lot of code compilation, but I will usually switch it to frequency for gaming and stuff.
No it’s real! I can’t verify the exact rating since it OL’s my meter, but with some circuitry it can power my Pi for a few minutes. I got them from element14, so it’s unlikely to be a fake product.
SteveTech@programming.devto Selfhosted@lemmy.world•Hosting services on GitHub pages URLEnglish7·14 days agoYou can host a page with an iframe, but you can’t directly change the DNS record to point to something that isn’t GitHub.
Guys you’re not gonna believe this:
SteveTech@programming.devto Linux@programming.dev•Disabling Intel Graphics Security Mitigations Can Boost GPU Compute Performance By 20%English4·18 days agoThe common sketchy performance advice is to disable mitigations in the kernel, this post is about disabling mitigations in Intel’s userspace graphics stack because it’s already checked in the kernel.
Assuming you meant disabling kernel mitigations, since AFAIK audio stuff doesn’t usually use OpenCL:
Has anyone else here disabled it?
Nah, my understanding is it’s not worth it on newer CPUs, and in some cases, the microcode expects things to be mitigated for best performance. Older CPUs (pre-2019ish) it does make a difference though.
But you’re welcome to benchmark it, and see if it makes a worthwhile difference on your CPU. Kernel mitigations are easy enough to turn on and off.
I think they were trying to say that the cage in front with the AP behind, acts as a directional antenna. Similar to how Yagi antennas have metal elements that aren’t connected in front of the actual antenna.
But I don’t know enough antenna theory to know if that’s correct.
SteveTech@programming.devto Linux@programming.dev•I need some high level guidance on UDEV rule for an HIDAPI driverEnglish3·24 days agoI’ve previously found OpenRGB’s udev rules to be a really good example since there’s a bit of everything in there: https://openrgb.org/releases/release_0.9/60-openrgb.rules
But I think you’d want something like:
SUBSYSTEMS=="usb|hidraw", ATTRS{idVendor}=="REPLACE WITH USB VENDOR", ATTRS{idProduct}=="REPLACE WITH USB PRODUCT", TAG+="uaccess"
It’s not strictly Linux anymore, but I wrote a library (or userspace driver?) in Python that interacts with a ChromeOS Embedded Controller found in Framework Laptops and Chromebooks. The driver part of it interacts with the EC directly over the IO ports, which was originally written for Linux but later ported to FreeBSD and Windows since IO ports aren’t at all OS specific. It can also talk to the
cros_ec_dev
driver on Linux if it’s loaded.https://github.com/Steve-Tech/CrOS_EC_Python
I wrote a GUI utility for Framework Laptops too, which also serves as the example for CrOS_EC_Python: https://github.com/Steve-Tech/YAFI
SteveTech@programming.devto Programmer Humor@programming.dev•On this deserted island I could use some help()English9·1 month agohelp
now actually opens the help utility on Python 3.13!
SteveTech@programming.devto homeassistant@lemmy.world•Devices continuously dropping off my ZigBee networkEnglish3·1 month agoThanks TIL! Although I prefer this diagram that has all the wifi channels on it, instead of just the 3 common ones.
SteveTech@programming.devto Selfhosted@lemmy.world•Good experience with neko remote browserEnglish79·1 month agoPerhaps there was an easier lighter-weight way of doing this?
Yeah, SSH tunneling. What I would do (and have done in the past) is something like:
ssh -L 8080:192.168.0.1:80 myserver
That will forward port 8080 on your host to port 80 on 192.168.0.1, so you can access your router’s web UI with
http://localhost:8080/
in your own web browser.You can also setup full tunneling with SSH, but that requires messing around with SOCKS and I usually can’t be bothered.
SteveTech@programming.devto Linux@programming.dev•I make all my videos using Linux. Here's how. | Veronica ExplainsEnglish5·1 month agoIf we’re suggesting a GUI for basic trimming and splicing, I prefer Avidemux, it supports cutting without transcoding the whole video (as long as you cut on an I-frame), saving time and reducing artefacts.
My understanding is previously the kernel would crash on systems with more RAM than the address space, so there’s now a patch to ignore the anything above the max address supported (e.g. 32bit without PAE, 36bit with PAE). More RAM was never supported, so I think the author of the article has misunderstood or oversimplified what’s been done.
Yeah, YunoHost explains why
http://localhost:8536/
wouldn’t be working. If cloudflared and Lemmy are in separate containers you have to put an actual IP in, since localhost points to the container itself.