Skip Navigation
Great, thanks tobacco sponsors, F1TV will no longer provide replays in France
  • We Germans had this a few years ago. Sky Ticket was more expensive than Sky Q and offered less. I went with an IPTV Sky Box in year 2, because Sky Ticket was cheaper in the first year. The IPTV Box does kinda suck though. I get Free TV in HD for free but no ability to record and no 4K and HDR option, though it even got announced a while back.

    To be fair, Sky has some exclusive series or at least exclusive for a year or so, so its not a total waste. And you still get ads (I don't speak about the sponsors on track). At least not during a race but right after the race during the inlap.

  • Soldered-on RTC batteries (with type covered as a bonus)
  • Its not about knowing everything. You can know a lot but don't have the skills. Cisco doesn't make cheap products and screwing it up, it not good. Especially it can be easily done at the factory. Its not like it would cost them much more. I can get a holder for like 0.50 to 1€ per piece. There you must subtract 19% VAT and think in bigger quantities. On a per device basis, its not adding much.

    They do this, because it adds up and they can save a lot of money. They make more money when a customer pays for a replacement or when a customer screw things up and needs to buy a new device. Its not something companies should be allowed to do. Also it would be even better if we don't need to tell companies what they should do and they do it themselves. In fact a lot do this, because it doesn't add much to the total cost of one device, but it makes the product better.

  • CDU stimmt für schrittweise Rückkehr zur Wehrpflicht
  • Wehrpflicht ist halt so Rückständig. Zu irgendwas gezwungen werden, ist einfach nicht mehr Zeitgemäß. Wenn man Volljährig ist, ist man die zwänge los. Gut die Berufsschulpflicht endet nicht zum 18., sondern erst zum Ende des Schuljahres, wenn ich noch richtig informiert bin. Erst wenn ich was will, muss ich auch was geben. Will ich kein Geld vom Amt, muss ich mir auch keine Arbeit suchen usw. Das Militär ist halt auch echt nicht gerade populär. So auf Krieg hat nicht jeder Bock und auch mit dem Unterordnen nicht. Und dann als Ersatz irgendwelche Arbeiten verrichten, auf die man kein Bock hat?

    Wenn man wieder Leute braucht, sollte man einfach ein attraktiveres Angebot machen. In den USA wird ja einem durchaus die Schulbildung bezahlt. Man könnte hier auch was ähnliches machen. Wohnung, Führerschein, irgendwas lässt sich bestimmt finden, was die jungen Leute hinterm Ofen her holt.

  • Anon learns about cars
  • When you know how rockets and jet engines work, because someone explained it to you but nobody explained how car works, people might just apply that knowledge to cars.

    People expect that others are born with knowledge or that it magically appears in their brains. Its not that op is retarded, its his parents that forgot to teach his son some basic stuff. When I see memes with how bad the current generation is, they forget its not the fault of the generation, its the fault of the parents. When they don't teach their children that, how should they do it?

  • What's the deal with Docker?
  • Docker is amazing but not needed. You can compare it to a simpler VM. You can take a docker and run it on any machine. You have an environment that is separate from your host and you and the container can only access it via defined points (volumes and ports).

    Imagine you need to run a 2nd Mumble Server. I never set on up but its often that a 2nd instance is not that easy. With docker its easy. The only difference is that you need to use different ports, when you have only one network access or you use a reverse proxy. You can create a 2nd instance to test stuff, without interrupting your productive system. Its a security benefit, because its isolated to some degree and you can remove one easily.

    I started using it with MSSQL Server, because I hated how invasive it is on a windows machine, especially I just needed it temporarily to do stuff with it. I'm not a microsoft admin and I know that Servers from Microsoft are a different level. Docker allowed me to start and stop it and remove it very easily. After that I started using it for a lot of and brought my NAS on the next level.

    Also one thing worth mentioning are Linux Containerx (LXC). They are in Proxmox but I have less knowledge. It feels more like a full VM than docker but uses less resources. This is the reason why containers in general are more popular. They are less resource hungry than a full VM but have some benefits than running everything on one machine. LXC feels more like a full system, than docker. With docker you rarely get into the system. You may execute some commands, like a create user command or a one time job but don't access it via a shell from the inside (its possible). LXC on the other hand, you use the shell.

  • Recommendations for a bug tracker/forum?
  • Then use a dummy public repo. You don't get the nice integration. We used Mantis Bugtracker at work for quite some time but switched to Gitea (a selfhosted Github clone) and are trying to get our testers to use it more.

    Also you should keep one thing in mind: needing an additional account, might stop people to use it. With Github I contribute for even smaller ideas. When I need to make an account first, I wont do it. Or when they want to use Discord. I do have Discord but come on...

  • Script kiddies
  • Making an installation script that will work for all, or even most, OSs and processor architectures can be a lot of work. Are you paying the devs to do it?

    I do pay for my software, even when its free, when I like the software and the devs. But if the devs/community think they are something better, then no. I had some where they refused a install script and said something along the lines that if you can't get it running with the docs, you shouldn't host the software. Yeah I don't like such devs. Also when they have enough time to write a documentation, they have enough time to write a script. I even had one project, where the dev refused a correction in the docs, even though it was faulty.

    Also you don't need to write a script for every system. You start with the most used ones. I mean just for testing I would get insane, when I have to repeat some steps over and over. At our company I do write scripts for some things that drive me insane. First I got told, it works this way, this costs too much time to do and it doesn't sell more software. I just did it and now they thank me for that. Even just an internal tool that I wrote for myself, after I drove insane doing stuff manually, now also customers get.

    I don't speak about software where you pull via git, install some prerequisites and run a script. Not shipping prerequisites can have a legal reason and git pull is just a different way of downloading. It also works to download the tagged source code, instead of cloning but this requires more explanation to less skilled users.

    Also with docker I came across some projects where they really butchered it. A docker compose file is my preferred way. I have my file + .env and it works for most containers I come across. It looks clean and feels clean. Running one command for creating a user is a understandable step, to avoid default users.

    When you like to hammer in a lot of commands into a shell to install something, do it. I prefer my clean, simple and straight forward install scripts. I don't need a installation doc that goes over every customization that you can make. I want a setup that works for most users and after that, I can dig around every customization there is, to optimize a software how I want it. Not everything is needed right at start and a default value that most users will use, is enough for the start.

    Good thing that there is a ton of software and I can pick the ones where I like their philosophy and support them. That is what I do.

  • Script kiddies
  • Do you kiss your mother with that mouth? I'm not speaking of this project but in general. Other projects where they does this, not this one.

  • Script kiddies
  • I hate when the installation takes like 20 steps. Never heard of an installation script and a interactive installation? I've installed far more complex software, that gets this but your shitty programm can't do it?

    And they wonder why nearly nobody uses Linux. In Windows nearly all software comes as an executable. Imagine offering a software under windows, where you need to do the setup manually in a shell.

  • It seems like all packaged foods do this now
  • Except no. First issue it's messured wrong. You messure a full package and then an empty one in the factory. Losses during shipping and so on is the problem of the customer. Especially meat looses a lot of water. People don't weigh the water in the cloth.

    Also the little e (estimated sign, 76/211/EEC) besides the package does specially allow variations. Only the entire batch must be correct on average. But there is a limit on how much variations is allowed. And big companies are closely watched.

  • Do any of you program on non-US keyboard layouts?
  • Except that there exist multiple physical layouts and then keys can be missing and some keys are shaped different.

  • Do any of you program on non-US keyboard layouts?
  • I program like I learned it? I use my German QWERTZ layout. A lot of keys are different, yes, but I grew up with this layout and I'm used to it. Imagine giving me a US QWERTY layout and I would misstype every time. I even hate it when Windows swtiches my keyboard layout, even though I removed the shortcuts to it and I misstype constantly. Heck even Visual Studio switched my shortcuts and it sucked.

    After some time I realized that (Game) Devs suck, because they forget that other layouts exist. Its not a big deal, but at some point I realized that the Chats on T, Y, U makes much more sense on a QWERTY Layout. Also Markdown with ` kinda sucks. For a codeblock, I need to hold shift and press the key that is left of backspace 3 times and then one space, because when I press it once, nothing happens but pressing it a second time, 2 appear. Pressing space let it appear directly. Or I type 4 and remove one.

    But this it what I'm used to. And if I ever would work outside Germany, I will bring my own QWERTZ keyboard and require them to install the German Keyboard. I don't need a German UI. I have all programming related software in English, because its easier to google stuff.

  • Reverse-proxy for linuxserver/jellyfin docker image
  • So far so good. The URL is correct, because its the external address. You also don't need to publish both http and https ports. I only map external https to internal http but you can do https to https. No serious modern browser tries http first and because I always force https anyways, it doesn't need to be public. Only the reverse proxy may need it, for Let's Encrypt.

    Both UDP aren't needed for public access. I only have mapped 8096 to my reverse proxy and it works.

  • How can it be so bad?
  • I find the video from LTT kinda hilarious with the 96 core threadripper. Breaking records in cinebench but Cities Skylines 2 still runs like shit (in a 1mio pop city).

  • What is your prefered way to get audiobooks/podcasts/ebooks for your audiobookshelf?
  • Audible + OpenAudible. OpenAudible does "stuff" and you end up with audio files, that you can listen on most devices. Don't know and care how they do this. Its not free but so is Audible.

    When you have an active Audible subscription, you also have access to free Audiobooks. You can download and convert them too. But be aware, that Audible is rate limited. Had downloaded a ton of free audiobooks and after a short limit (maybe 1 hour), I got a long limit for around 24 hours. But I still use Audible. I just have it as a backup and this way I can give my family access to the books I have. But so far my mother only listen to the ones I got for free. I like Science Fiction a lot but my mother not.

    A college who I recommended Audiobookshelf, has a subscription from a German only site (Thalia), where apparently the Audiobooks can be downloaded as MP3s. So far I prefer Audible, even with DRM, just because the availability. Not all books I listen to, are available on that site or much later.

  • ZeldaFreak ZeldaFreak @lemmy.world

    Goodbye Reddit, Hello Lemmy

    Posts 0
    Comments 15