Scrath

joined 2 years ago
[–] Scrath@lemmy.dbzer0.com 7 points 3 days ago (1 children)

Depending on the specific model it is either an SSD or eMMC storage but you won't be able to get to it without major disassembly of the device which includes removing the glued-on screen.

This surface is an absolute bitch to repair

[–] Scrath@lemmy.dbzer0.com 2 points 2 weeks ago

Same. I still use the original Proteus Core labeled version. They have since re-released the mouse 3 times I think but my original is still going strong

[–] Scrath@lemmy.dbzer0.com 3 points 3 weeks ago

Stop calling me out

[–] Scrath@lemmy.dbzer0.com 2 points 1 month ago (6 children)

Did you manage to set up port forwarding with this setup? I believe there was an issue with the forwarded port from the VPN connection being random and qbit not knowing which port that is

[–] Scrath@lemmy.dbzer0.com 3 points 1 month ago

Oooh those are stomping boots. I thought they looked like inline skates and was wondering about using those with an axe

[–] Scrath@lemmy.dbzer0.com 14 points 1 month ago (1 children)

I didn't know what a widows peak was so I googled it and figured out that's just what you call that type of hairline in english.

Personally I really like the german word for it which is "Geheimratsecken". It literally translates to "secret council corners".

[–] Scrath@lemmy.dbzer0.com 15 points 1 month ago

To be fair, I would also be upset if someone consolidated their toolbox with mine. I am single though so that would make that a whole lot weirder

[–] Scrath@lemmy.dbzer0.com 2 points 1 month ago

That's why I put my phone on my desk over night instead of next to my bed. When the alarm goes, I have to get up to turn it off and at that point I might as well get dressed. Oooor hit snooze and literally fall back into my bed

[–] Scrath@lemmy.dbzer0.com 2 points 1 month ago

This might be a bit overkill for what you want but you could try using a selfhosted music server like navidrome and streaming to your phone. I use symfonium on on phone which can be configured to request the streamed music to be transcoded to a smaller size for streaming from mobile network or for caching it on your phones storage for offline listening.

Given that symfonium supports a lot of self hosted media providers from which to pull, you could also try sharing your music locally using samba. I'm not sure if the transcoding still works in that case though (it would obviously have to be done on your phone)

[–] Scrath@lemmy.dbzer0.com 3 points 1 month ago

Works great for me on my pixel 7 but you have to be aware that you loose some stuff too unfortunately.

Not all banking apps work and payment using your phone is completely out.

If you care about it, the health stuff also isn't available

[–] Scrath@lemmy.dbzer0.com 1 points 1 month ago

Maybe you could configure KRunner to work for what you want? I'm not sure though. Haven't used it enough myself

[–] Scrath@lemmy.dbzer0.com 4 points 2 months ago (3 children)

Also you don't download the youtube app in the usual sense but rather a patcher application

 

Hello everyone, I am currently looking for a software solution to use my home server as a DLNA renderer which can output audio to my stereo amplifier.

The only solution I found was called gmrender-resurrect which seems like it would do exactly what I want but I was unable to get a docker container of it working. While I was able to find and connect to the DLNA Renderer, playback would fail every time and I was unable to get any information from the logs regarding why.

Do any of you know another solution to stream audio from my phone to my server (I am using Symfonium on the phone side)? Ideally it would be something I can deploy as a docker container on my server.

Thanks.

 

Hello everyone, I am currently trying to set up a kmonad config file to replace the autohotkey script I used on windows. My goal is simply to use the right alt key in combination with a,o,u and so on to type german umlaut characters like ä,ö,ü, etc.

So far I am having trouble even getting kmonad to run the config. I guess I probably misunderstand how this is supposed to work significantly. My initial config file was generated by ChatGPT since I had no idea where to even start.

This is my current config file

(defcfg
  input  (device-file "/dev/input/by-path/platform-i8042-serio-0-event-kbd")
  output (uinput-sink "kmonad_keyboard")
  fallthrough true
  allow-cmd true
)

(defsrc
  ralt a o u s lsft
)

(deflayer german
  ralt-a "ä"
  ralt-o "ö"
  ralt-u "ü"
  ralt-s "ß"
  ralt-shift-a "Ä"
  ralt-shift-o "Ö"
  ralt-shift-u "Ü"
)

Any help would be appreciated.

45
submitted 9 months ago* (last edited 9 months ago) by Scrath@lemmy.dbzer0.com to c/electronics@discuss.tchncs.de
 

Hello everyone, I recently built a small distribution board to distribute 5V to multiple components for use in a robotics project. I made each output switchable with an individual switch and an LED to indicate the current state. When I went to test it using a lab power supply I noticed that the LEDs would start flickering weirdly when I turned them off and on again.

https://imgur.com/a/zaSCUby

As it turns out, the LEDs, which I found in my dads old parts in a bag labeled TLBO 5410, are apparently blinking LEDs. I found a datasheet for TLBR5410 LEDs which seem pretty much identical to what I have accidentally used.

Apparently these LEDs are made to operate directly from a 5V supply without an additional current limiting resistor (it is already built in) and are made to continuously blink at a frequency of 3Hz.

Because I thought I was using standard LEDs I added a series resistor causing them to behave weirdly due to low voltage. For comparison, this is how they are supposed to act: https://imgur.com/a/fXlcEDs

 

Hello everyone, I have another question regarding reverse-proxying again, specifically for the linuxserver.io jellyfin image.

On the dockerhub page for this image there are 4 ports listed which should be exposed:

  • 8096 for the HTTP Web UI
  • 8920 for the HTTPS Web UI
  • 7359/udp for autodiscovery of jellyfin from clients
  • 1900/udp for service discovery from DLNA and clients

Additionally there is also an environment variable JELLYFIN_PublishedServerUrl which is for "Setting the autodiscovery response domain or IP address". I currently have that set to my subdomain https://jellyfin.mydomain.com though I am not sure if that is correct.

I already have a reverse-proxy set up allowing me to access my servers webinterface under https://jellyfin.mydomain.com without exposing the https port on the container. What I am unsure about now however, is what to do with the two ports for UDP traffic.

By my understanding, a reverse-proxy will only forward traffic which comes to the ports 80 for http and 443 for https. Those are also the only ports my reverse-proxy container has exposed alongside the management interface. As such the 2 udp ports will not be reachable under my jellyfin domain.

How can I change this or is this even an issue?

10
submitted 2 years ago* (last edited 2 years ago) by Scrath@lemmy.dbzer0.com to c/selfhosted@lemmy.world
 

Hello, I have a question regarding the usage of a reverse-proxy which is part of a docker network.

I currently use Nginx Proxy Manager as a reverse-proxy for all my services hosted in docker. This works great since I can simply forward using each containers name. I have some services however (e.g. homeassistant) which are hosted separately in a VM or using docker on another device.

Is it possible to use the same reverse-proxy for those services as well? I haven't found a way to forward to hosts outside of the proxies docker network (except for using the host network setting which I would like to avoid)

view more: next ›