I’m staying with Java as long as bedrock has micro transactions and Java has a better modding scene.
- 1 Post
- 1.08K Comments
The monitor stand and wheels for the Mac are targeted towards businesses. The same kinds of businesses that will spend $1000 per chair on ugly and uncomfortable office chairs.
WolfLink@sh.itjust.worksto
Games@lemmy.world•What's a recent game you've tried playing that isn't worth the hype?English
2·3 days agoInteresting. Optimizing the factory for your immediate current needs sounds very tedious, because those needs change all the time. I instead optimize for expandability and adaptability. The factory game genre isn’t for everyone, but if you are interested in some tips:
My solution is usually something like:
- really long line of basic resources (usually a belt of smelted copper and a belt of smelted iron, eventually adding more stuff and adding more belts of iron and copper as supplies are needed)
- when I need thing 1, I make a little package that builds it, drawing resources from the line with splitters so the excess can continue down the line
- thing 2 is an independent little package farther down the line
- When it’s time for thing 3, I build copies of the packages for building thing 1 and thing 2 as necessary to feed the construction of thing 3, again as separate feeds splitting off the main resource line
- when it’s time for thing 4, its again independent of the production of things 1-3, except they are splitting off the same main resource belt
- If the resources on the main belt are insufficient to feed all of those machines, one of three things needs to happen: 1. Add more raw resource processing until your belt is full and backed up at the beginning 2. If that’s not enough, upgrade the belt 3. If you don’t have a belt upgrade available, build another main resource line and use splitters to rebalance it onto the main line
This construction allows for easy expansion without having to destroy anything. I typically don’t disassemble anything unless it’s actually a problem for some reason or I need the space. This is especially important because you often need some basic components like the level 1 belts even into the late game.
Also, once you unlock robots, you can literally copy-paste, just select an area to upgrade all belts/arms/etc. in, and a lot of other neat tricks that drastically speed things up.
And one last peace of advice: Overproduce everything and let belts backing up balance out the resource distribution. Then if you discover that belts that previously were backed up are now sparse, figure out why and optimize it, usually by adding more production of whatever the missing resource is.
Ultimately throughput is all that matters. Loss of throughput because you don’t need something isn’t wasteful. Loss of throughput because you aren’t producing enough of something is a problem to solve. Things that don’t affect throughput don’t matter and aren’t wasteful.
WolfLink@sh.itjust.worksto
Lifehacks@sh.itjust.works•You can use Fibonacci numbers to approximately convert miles to kmEnglish
0·3 days agoClosed form means it can be written out as a specific, finite set of instructions that work the same regardless of what the input to your function is.
For Fibonacci, it is most commonly defined in its recursive form:
f(0) = 0 f(1) = 1 f(x) = f(x-1) + f(x-2) for integer x > 1But using this form, computing a very large Fibonacci number requires computing all the numbers before it, so it’s not the same finite set of instructions for every number, it takes more computation to generate larger numbers.
However, there is a closed form formula for generating Fibonacci numbers. Using this formula, you can directly compute any large Fibonacci number without having to compute all those intermediate steps. It takes the same amount of work to compute any Fibonacci number.
f(x) = (a^x - b^x)/√5 a = (1+√5)/2 b = (1-√5)/2(Note that a and b here are constants; I only wrote them separately to avoid a mess of nested parenthesis)
For an example of something that doesn’t have a closed form, we do not know of a closed form for generating prime numbers. There are several known algorithms for generating the nth prime number, but they all depend on computing all the previous prime numbers, making it very difficult to compute very large prime numbers (in fact, how generating large primes is actually done is by making an educated guess and then checking that it’s actually prime). Discovering a closed form formula for prime numbers would have a huge impact on mathematics and cryptography.
WolfLink@sh.itjust.worksto
Games@lemmy.world•What's a recent game you've tried playing that isn't worth the hype?English
2·3 days agoThat’s funny, I love Slay the Spire, but I have mixed feeling about Balatro.
Balatro is addicting in that once I start playing I don’t want to stop, and yet after playing for a few hours I couldn’t say for sure I had fun at any point the whole time.
Playing Balatro feels like exploring the backrooms to me - just infinite bland nothingness.
WolfLink@sh.itjust.worksto
Games@lemmy.world•What's a recent game you've tried playing that isn't worth the hype?English
1·3 days agoYeah I’ve seen people try to balance things perfectly in factorio, but my strat is always to overproduce and let belts getting backed up balance out the throughput.
WolfLink@sh.itjust.worksto
Games@lemmy.world•What's a recent game you've tried playing that isn't worth the hype?English
4·3 days agoDeus Ex Human Revolution and Mankind Divided do a similar cyberpunk vibe to Cyberpunk 2077 but with better gameplay and plot IMO.
WolfLink@sh.itjust.worksto
Games@lemmy.world•What's a recent game you've tried playing that isn't worth the hype?English
2·3 days agoI’m curious how you play factorio because when I played there was very little refactoring, just adding more and more onto the assembly line.
That being said, that genre of game is absolutely not for everyone.
Bruh this might be one my new default search engine link
WolfLink@sh.itjust.worksto
Ask Lemmy@lemmy.world•Whats your hot take on something that doesnt matter at all?
19·7 days agoIt means you have to learn a lot very quickly, which is hard.
WolfLink@sh.itjust.worksto
Steam@lemmy.ml•72% of devs believe Steam has a monopoly on PC games, according to study
0·7 days agoNot all Steam games use it as DRM. Many Steam games you can simply launch the executable without Steam installed and it will work.
Still, GOG is much better on that front.
But even games I buy on GOG, I often launch through Steam to take advantage of tools like Proton and Steam Input. Steam’s dominance stems from unwavering commitment to building a good user experience, and I’m not ashamed to reward that with my wallet vote.
WolfLink@sh.itjust.workstoData is Beautiful@lemmy.world•The most male and female reasons to be admitted to the hospitalEnglish
0·8 days agoMaybe a trans woman who was AMAB but had bottom surgery?
Wouldn’t be capable of pregnancy but might need a gynecologist?
This is all my guess - I don’t know much about these topics.
WolfLink@sh.itjust.worksto
No Stupid Questions@lemmy.world•How did we go from being against fake pictures of the moon to accepting things like changing out the entire sky?
2·10 days agoThere’s a huge difference between adjusting the color mapping of the RAW data and using Photoshop or AI. It’s really hard to get an “objective truth” color mapping, and that certainly doesn’t come by default.
When I take a photo, I want to see the photo I took. If I decide to photoshop something with it, that’s my decision, and it’s no longer a real photo, and I would be a liar if I were to present it as such.
We should not start accepting manipulated images as a replacement for real images, and it’s unacceptable that Samsung didn’t give its users a choice in whether to use the real image or a manipulated one.
WolfLink@sh.itjust.worksto
Programmer Humor@programming.dev•99% of Windows usability issues would be fixed if Windows had the guts to add this button
21·12 days ago99% of the time the “other program” is a minimized file browser window open to the drive.
That’s part of the job as a DM. I would often have new enemies show up to the fight if it was going too well, or secretly nerf the enemies stats if it was going too poorly.
WolfLink@sh.itjust.worksto
Tech@programming.dev•Nearly 90% of Windows Games now run on Linux, latest data shows — as Windows 10 dies, gaming on Linux is more viable than ever
0·15 days agoDoesn’t seem to be a bug.
here’s an issue on GitHub for GE-Proton about this problem, where they blame it on Valve.
As I understand it, PROTON_ENABLE_WAYLAND is needed for HDR, at least on gnome, which is what I am using.
I think KDE might have somewhat better HDR support right now, but I much prefer gnome and am trying to use Bazzite as a daily driver besides just games.
SSH in and forcibly uninstall all Nvidia packages, then reinstall them fresh following Nvidia’s website.
At least this has worked for me on Ubuntu on several occasions.
I would just sit for a minute
I find achievement hunting to be fun, although it’s better if the achievements are interesting





It’s kinda scary that Europe is so willing to let all of their private messages go through an American data broker company that is well known for doing sneaky things to get data they aren’t supposed to have.