I don’t know what it is, but those cleaning tablets will cause my machine to suds up so much that bubbles/water start pouring out of the exhaust and all over my floor. One of the first times it happened, all of the bubbles were screwing up a sensor and I couldn’t get the machine to work for a week. I thought it was broken, and was just about to buy a new one when I got the idea to try sucking everything dry with a shop vac.
- 3 Posts
- 113 Comments
Zarxrax@lemmy.worldto Ask Lemmy@lemmy.world•What is your opinion on ray/path tracing and real time upscaling (DLSS/FSR/XeSS) in video games?5·13 days agoI like upscaling when it’s done well (some older iterations of dlss and fsr were not great compared to the current versions). If I have to lower my resolution to get a good frame rate then the image will already look blurry. Using upscaling to hit my monitors native resolution will generally look better. I could care less about raytracing because I don’t have a GPU strong enough to handle it.
The Internet of the 90s was such a simpler place. Better in many ways, worse in some. For instance, the Internet wasn’t so commercialized back then. Instead of a bunch of services, it was a bunch of nerds sharing information and having conversations. If you liked a tv show, you would search for websites about that show. Anyone could make their own website, so you would find tons of fan sites dedicated to each thing. Search engines didn’t provide you with information or answer questions, they just helped you sort through all the different websites, then you could look on those sites to find whatever information you were looking for. There was almost no video, it was all text and (small) images.
Zarxrax@lemmy.worldto Ask Lemmy@lemmy.world•What is an example of the JC Penny's effect ?131·20 days agoIs there any actual proof of that? Because I see plenty of restaurants advertise 1/3 lb burgers these days.
Absolutely. I still don’t have a pet because I don’t necessarily want the responsibility, but i generally love them.
Absolutely nothing about children has ever been appealing to me.
Zarxrax@lemmy.worldto Ask Lemmy@lemmy.world•When and why did the US switch to these voting machines that are the subject of ongoing lawsuits and reports of unlawful "updates"?9·22 days agoI guess it varies by jurisdiction. In my state we fill out paper ballots, then you just insert the ballot into a machine which records your votes and prints you a receipt.
Zarxrax@lemmy.worldto Ask Lemmy@lemmy.world•A genie grants you a wish at random: you're guaranteed to win your next argument. Who do you argue with?2·25 days agoI think you would have to argue with quite a few people to even get access to trump.
Zarxrax@lemmy.worldto Ask Lemmy@lemmy.world•Is moderately severe back pain really normal at 30?5·26 days agoCould be posture, especially if you work an office job or something. I used to have pretty bad back and neck pain, then when they sent us home during the pandemic, all my pain just went away.
Zarxrax@lemmy.worldto Ask Lemmy@lemmy.world•What is the best way to learn a new language as an adult?2·29 days ago- Learn the basics. This is the easy part and you should be able to make good progress. Find a textbook or good online resource that covers things like the alphabet, pronunciation, basic Grammer, etc.
- Practice and accumulate vocabulary. You can do this basically however you want, but I would recommend the tool Anki (https://apps.ankiweb.net/), but you can use Duolingo or whatever. Learning vocabulary is key to being able to understand anything. Practice and repetition is key to gaining speed and fluency.
- Use the language. Talk to people. Talk to yourself. Watch videos. Read. Play games. You figure it out, but actually using the language is how you grow and get better at it.
Zarxrax@lemmy.worldto Explain Like I'm Five@lemmy.world•Explain to me like I am a literal 5 year old. What is the hate towards Trans people? Is it just because they a different? Did they do something to garner the hate? I was raised different and change...English521·1 month agoA lot of people don’t personally know any trans people. A lot of right wing media says that trans people are bad and that they want to make a lot of changes to society that might effect you too. So it’s easy to hate people when you don’t actually know them, and your “news” is telling you that they are bad.
Zarxrax@lemmy.worldto Ask Lemmy@lemmy.world•Why do, relatively, so few of you set an avatar for your profile?12·1 month agoFor something like Lemmy or Reddit, any posts or conversations that I have are generally going out to random people who also happen to want to engage in a particular discussion. I don’t even look at usernames. The next conversation that I have will likely be with completely different people. In other words, there is no sense of community (unless I were to become heavily invested in a single community for some reason), and therefore I have no reason to want to make myself stand out in any way or make it easier for people to recognize me.
On the other hand, for something like an old school forum that I would frequently post on, or a discord server or something, I might actually get to know people and develop a sense of community. In that type of situation, I feel like an avatar can be appropriate.
You could use it to read Lemmy.
Zarxrax@lemmy.worldto Ask Lemmy@lemmy.world•Those of you that back your vehicle into parking spots, why do you do it?5·1 month agoI guess it depends on the kind of places where you are parking. Where I am, we usually have big open parking lots with lots of space. I rarely ever back into a space, because backing in is more difficult than backing out. However if you are in more of a congested city or something, and the spots are narrow and you have a lot of cars moving around, then the situation flips and it can be more difficult to back out of the space than to back in.
Zarxrax@lemmy.worldto Ask Lemmy@lemmy.world•What is really meant by "programming" when people say they like to use linux for it?6·1 month agoI do some programming as a hobby. I’m far from being an expert or even competent at it. You work on whatever you WANT to work on. Sometimes this can be born from necessity, you need your computer to do something, but you can’t find any existing application that does the specific thing that you need. Sometimes maybe you just want to create something, just because it seems interesting to you, or just because.
So just for example, one of my hobbies involves working with video. Years ago, I was frustrated with the options available for encoding my videos into h264, so I ended up creating my own GUI around FFMPEG. It was easy enough and effective for what I needed, that the tool became quite popular among others in my hobby.
Recently, machine learning has made it possible to do cool stuff like remove the background from a video clip. A lot of this stuff is really difficult to even get working, let alone to use effectively. So a current project I’m working on is a GUI for such a tool to make it really easy to use.
So yeah… First I would say you need to figure out what you want to do. Why do you want to write a program? What do you want to accomplish?
Then you need to learn the basics of programming in whatever language you intend to use. And just gain a basic understanding of how programming works in general. Once you know enough to be dangerous, you can start working on something. Getting started is the hardest part, and involves really thinking about your problem, breaking it down into smaller parts, and considering how to solve each of those small parts. This can involve lots of research, lots of googling, and finding frameworks or libraries that might help you accomplish what you need.
LLMs like chatgpt have also been amazing in helping people like me to create something much more quickly than before. I can ask it for thoughts on how to accomplish a specific thing, or even have it write entire sections of code for me. Just yesterday, I had it create a script for me which I estimate would have taken me 10-20 hours to write on my own. However, they don’t always give right answers, so it’s really important to have a basic level of understanding of programming so that you can understand the code that it gives you. I don’t use any code until I understand how it works. The LLM can also help explain the code to you!
So how does the 10% get chosen? Like if the first 10% were all the people desperately in need of it, that’s an easy finger. But if there is a potential that only wealthy people could be effected by that, then the loss of the finger would be meaningless. If it’s totally random each time, it’s a harder choice since you really aren’t helping 10% of the population each time, given that many will already have basic needs met.
I’ve always loved sweets but I’m eating them much less in recent years than I did when I was younger. I don’t drink anything sweet, and I’ll have 1 or 2 sweet snacks a day.
Probably every couple of weeks. Just washed them yesterday.
Zarxrax@lemmy.worldto Ask Lemmy@lemmy.world•Alternatives to Skype for international calling?4·2 months agoGoogle voice works fine for me. Requires a payment but the rates are very cheap.
I never really have more than one game at a time. Right now it’s Pokemon TCG Pocket.