This is definitely a big blocker for my move to Linux as well, I’m heavily dependent on my Elgato HD60 X
nek0d3r
- 0 Posts
- 22 Comments
nek0d3r@lemmy.worldto
Selfhosted@lemmy.world•PinchFlat: Youtube download manager and library, integrates with Jellyfin and KodiEnglish
5·1 year agoI definitely struggled to wrap my head around it at first, but I got used to using it when I got into DevOps, and once you understand it, it becomes so easy and helpful that it’s easy to overuse it. I can certainly answer any questions to the best of my ability if you do look into it!
nek0d3r@lemmy.worldto
Selfhosted@lemmy.world•PinchFlat: Youtube download manager and library, integrates with Jellyfin and KodiEnglish
6·1 year agoI’ve had all my servers running on my personal Windows machine, and I’ve been planning to move them to a dedicated Linux machine, as well as move to Linux on my PC. Part of that involved containerizing my whole setup to make the move easier. There’s a script listed in Jellyfin docs that helps you migrate your setup. Itzs a bit involved if you’re coming from Windows but very doable. Very easy if you’re already on Linux though.
nek0d3r@lemmy.worldto
Games@lemmy.world•Skyrim Is 13 Years Old, But Elder Scrolls 6 Is Nowhere in Sight While Bethesda’s First Four Games Took Only 12 YearsEnglish
81·2 years agoJoin the dark side – stop taking your pills and enjoy Elder Scrolls 6 and Titanfall 3 with the rest of us
Same here! I’m happy to see the UBports fork is still active as Lomiri, I haven’t checked it out in a while.
KDE, because despite my bitterness for the loss of Unity 8, I know it’s merely nostalgia for me. I want something I feel like I can make my own without too much difficulty.
nek0d3r@lemmy.worldto
Steam Hardware@sopuli.xyz•Nintendo shuts down Switch emulator Ryujinx
2·2 years agoNow that Citra isn’t available, Nintendo knows I have no choice but to buy Samus Returns on my Switch!
This has been a dream of mine and one of my friend’s as well. There’s a small handful of blockers that I’ve slowly been transitioning but the upcoming windows pain points you mentioned are definitely recent motivators for me. I’m glad you made it and I hope the rest of us can too! I look forward to reading more about your experience.
nek0d3r@lemmy.worldto
Open Source@lemmy.ml•This AI Startup "Copied" an Open-Source Project and Got Half a Million Dollar Funding by Y Combinator
4·2 years agoThe source is literally just VSCode with a different label. What benefit does that have?
nek0d3r@lemmy.worldto
Open Source@lemmy.ml•This AI Startup "Copied" an Open-Source Project and Got Half a Million Dollar Funding by Y Combinator
6·2 years agoRight, exactly, which is why they launched with a FOSS license. Oh, wait–
Imagine the money going to VSCode which actually is the one getting contributions
nek0d3r@lemmy.worldto
Open Source@lemmy.ml•This AI Startup "Copied" an Open-Source Project and Got Half a Million Dollar Funding by Y Combinator
8·2 years agoExcept this isn’t money going to a FOSS project, it’s money to some guys whose only keyboard is StackOverflow’s The Key.
nek0d3r@lemmy.worldto
Steam Hardware@sopuli.xyz•Nintendo shuts down Switch emulator Ryujinx
4·2 years agoIn general I’d agree, although Citra feels like an exception. I’m not quite sure why they targeted that one so hard.
nek0d3r@lemmy.worldto
Gaming@lemmy.zip•God of War Ragnarok PC port suffers review bombing on Steam due to PlayStation Network account requirementEnglish
48·2 years agoI hate that the term “review bombing” completely generalized to just “a lot of negatively reviewing something”. Review bombing is supposed to be negative reviewing that’s not relevant to the game, like when it was originally used to speak out against publishers, because, you know, that’s the only thing that seemed to get their attention. Now we just have the tools and excuses to just kill genuine criticism.
That’s basically it. Some Arch users are genuinely just picky about what they want on their system and desire to make their setup as minimal as possible. However, a lot of people who make it their personality just get a superiority complex over having something that’s less accessible to the average user.
nek0d3r@lemmy.worldto
Linux@lemmy.ml•The least happy computer users: Those running Arch Linux & Firefox
5·2 years agoThere’s not a lot of data to work with, and the kind of test used to determine significance is not the same across the board, but in this case you can do an analysis of variance. Start with a null hypothesis that the happiness level between distros are insignificant, and the alternative hypothesis is that they’re not. Here are the assumptions we have to make:
- An alpha value of 0.05. This is somewhat arbitrary, but 5% is the go-to threshold for statistical significance.
- A reasonable sample size of users tested for happiness, we’ll go with 100 for each distro.
- A standard deviation between users in distro groups. This is really hard to know without seeing more data, but as long as the sample size was large enough and in a normal distribution, we can reasonably assume s = 0.5 for this.
We can start with the total mean, this is pretty simple:
(6.51 + 6.71 + 6.74 + 6.76 + 6.83 + 6.9 + 6.93 + 7 + 7.11 + 7.12 + 7.26) / 11 = 6.897Now we need the total sum of squares, the squared differences between each individual value and the overall mean:
Arch: (6.51 - 6.897)^2 = 0.150 Fedora: (6.71 - 6.897)^2 = 0.035 Mint: (6.74 - 6.897)^2 = 0.025 openSUSE: (6.76 - 6.897)^2 = 0.019 Manjaro: (6.83 - 6.897)^2 = 0.005 Ubuntu: (6.9 - 6.897)^2 = 0.00001 Debian: (6.93 - 6.897)^2 = 0.001 MX Linux: (7 - 6.897)^2 = 0.011 Gentoo: (7.11 - 6.897)^2 = 0.045 Pop!_OS: (7.12 - 6.897)^2 = 0.050 Slackware: (7.26 - 6.897)^2 = 0.132This makes a total sum of squares of 0.471. With our sample size of 100, this makes for a sum of squares between groups of 47.1. The degrees of freedom for between groups is one less than the number of groups (
df1 = 10).The sum of squares within groups is where it gets tricky, but using our assumptions, it would be:
number of groups * (sample size - 1) * (standard deviation)^2Which calculates as:
11 * (100 - 1) * (0.5)^2 = 272.25The degrees of freedom for this would be the number of groups subtracted from the sum of sample sizes for every group (
df2 = 1089)Now we can calculate the mean squares, which is generally the quotient of the sum of squares and the degrees of freedom:
# MS (between) 47.1 / 10 = 4.71 // Doesn't end up making a difference, but just for clarity # MS (within) 272.25 / 1089 = 0.25Now the F-statistic value is determined as the quotient between these:
F = 4.71 / 0.25 = 18.84To not bog this down even further, we can use an F-distribution table with the following calculated values:
- df1 = 10
- df2 = 1089
- F = 18.84
- alpha = 0.05
According to the linked table, the F-critical value is between 1.9105 and 1.8307. The calculated F-statistic value is higher than the critical value, which is our indication to reject the null hypothesis and conclude that there is a statistical significance between these values.
However, again you can see above just how many assumptions we had to make, that the distribution of the data within each group was great in number and normally varied. There’s just not enough data to really be sure of any of what I just did above, so the only thing we have to rely on is the representation of the data we do have. Regardless of the intentions of whoever created this graph, the graph itself is in fact misrepresent the data by excluding the commonality between groups to affect our perception of scale. There’s a clip I made of a great example of this:

There’s a pile of reasons this graph is terrible, awful, no good. However, it’s that scale of the y-axis I want to focus on.

This is an egregious example of this kind of statistical manipulation for the point of demonstration. In another comment I ended up recreating this bar graph with a more proper scale, which has a lower bound of 0 as it should. It’s suggested that these are values out of 10, so that should be the upper bound as well. That results in something that looks like this:

In fact, if you wanted you could go the other way and manipulate data in favor of making something look more insignificant by choosing a ridiculously high upper bound, like this:

But using the proper scale, it’s still quite difficult to tell. If these numbers were something like average reviews of products, it would be easy in that perspective to imagine these as insignificant, like people are mostly just rating 7/10 across the board. However, it’s the fact that these are Linux users that makes you imagine that the threshold for the differences are much lower, because there just aren’t that many Linux users, and opinions wildly vary between them. This also calls into question how that data was collected, which would require knowing how the question was asked, and how users were polled or tested to eliminate the possibility of confounding variables. At the end of the day I just really could not tell visually if it’s significant or not, but that graph is not a helpful way to represent it. In fact, I think Excel might be to blame for this kind of mistake happening more commonly, when I created the graph it defaulted the lower bound to 6. I hope this was helpful, it took me way too much time to write 😂
nek0d3r@lemmy.worldto
Linux@lemmy.ml•The least happy computer users: Those running Arch Linux & Firefox
3·2 years agoJust to kind of demonstrate that idea, I’ve recreated the graph in Excel with the axis starting at 0. I think Excel might actually be to blame for this happening so much, its auto selection actually wanted to pick 6, gross.

nek0d3r@lemmy.worldto
Linux@lemmy.ml•The least happy computer users: Those running Arch Linux & Firefox
1·2 years agoSometimes it’s hard to tell the difference between arch and some gentoo users
nek0d3r@lemmy.worldto
Linux@lemmy.ml•The least happy computer users: Those running Arch Linux & Firefox
2·2 years agoFair enough, it’s just one of those distros you find a lot of those elitists in. Even had a “friend” tell me I wasn’t really a Linux user because I don’t use arch, then gentoo, then openbsd
nek0d3r@lemmy.worldto
Linux@lemmy.ml•The least happy computer users: Those running Arch Linux & Firefox
26·2 years agoI know the differences between these metrics are inconsequential because the happiness view doesn’t start at 0, but it still makes me want to shout “what the fuck are gentoo users so happy about” lol
I had this kind of moment with Prey.