• 0 Posts
  • 553 Comments
Joined 2 years ago
cake
Cake day: June 10th, 2023

help-circle

  • Ok, so you said put together your own keyboard, that involves soldering. However it’s very likely you don’t need to.

    Finding which switches you like is a good first step, as a general rule I think there’s only 3 types of switches you should worry about, let’s call them Red, Brown and Blue since that’s the colors Cherry MX uses for them so they’re sort of the standard. Red are fully linear, i.e. they feel the same from start to bottom. Browns have a small bump midway through (when the switch activates). Blues are like Browns but they also make a click sound. Only choose colicky switches if you have a room for yourself, they can be VERY annoying to other people, be considerate. That being said it’s personal preference, I personally like Browns although I have used Reds and honestly I don’t feel that much of a difference.

    Next important is figuring out the size you want, do you plan on moving it a lot? If so a smaller form size might be better.

    Then there are some ergonomics, personally I love Split ortholinear keyboards, you can buy premade ones but for me it was cheaper to build one for myself, but I’m okay with soldering. That being said if you’re going to solder, I STRONGLY recommend you get a nice modern USB-C pen style soldering iron, I bought a cheap one from Amazon and it was very difficult to use, didn’t heated up properly and had a very large tip (the small one never got hot enough to melt the solder).



  • AMD Drivers: if your GPU is new enough (which it probably is since you’re playing Star citizen) it should be just magic here since they come together with the kernel.

    Chrome: it’s available for Linux, no need to switch. Although Firefox is very nice too.

    Gmail: not sure what you mean, Gmail is a website, those are available on any platform. If you meant a desktop email client (which honestly I have never in my life used) there’s Thunderbird.

    Office 360: Are you talking about Microsoft 365? Is that not a website too? In any case Libre office is a nice alternative to the classical Office desktop app too in case you want that.

    I-Tunes: A quick search online reveals people use wine to run the Windows version of iTunes, although I would probably consider migrating. Spotify has a native client and there are some places where you can buy music and have it locally for playback.

    JBL: not sure what this is other than a brand for speakers.

    Anti-virus: You almost assuredly don’t need an anti-virus on Linux, as long as you install software through the proper channels (i.e. using the package manager) chances of virus are so small it’s not something to worry about. Most Linux anti-virus serve to check windows binaries in the system to avoid someone using the Linux machine to send virus to Windows users.

    PyCharm: it’s available for Linux

    Remote desktop to iOS: Not sure this is possible even on Windows, I use remmina for remote desktop, it supports several ways of connecting to the other device so maybe see if it works for you.

    Star citizen: Never played it but it seems to be playable with Wine.

    Steam: While steam is available not all games are compatible, check out https://www.protondb.com/ to see the status of any specific Steam game.

    VPN: should be native on Linux, there’s a protocol caller OpenVPN which most VPN providers will give you a Config file for that you can use directly on the network applet on Linux.

    PS: Next time share the list in text, it makes it easier to reply




  • I write a planet generator. All of the planets are the same to begin with, so realistically I can only generate “1” planet. Then I add one toggle which is random, if it’s on the planet will be completely water. I now have “2” planets. Now I add another toggle for one huge mountain, I can now generate “4” planets (dry,water,dry-mountain,water-mountain). Keep adding toggles, sliders and parameters until you have “trillions” of possible planets and you’re done.

    The funny thing is that the changes are cumulative, so if I release a game that can generate X planets and I add a binary toggle I can now claim I added X planets to the game. If I add a slider from 0-9 then I added 10X planets. So since No Man’s Sky already had a giant number of planets, adding trillions of them could mean something as stupid as they added a new resource to the game so now every planet can have that resource in different amounts.


  • And you’re not alone, in fact I would guess you’re part of the majority. But we tend to live in bubbles surrounded by tech savvy people so we forget about it sometimes. And the problem with not knowing something is possible is not realizing its limitations, someone who’s eaten hot dogs every day of their life has no idea what a burguer is, is one intrinsically better than the other? Nope, but they’re different, and different people might like different things.

    In any case, just like the other comment, if you have any questions feel free to ask, there’s a thriving community of people who use Linux and some of us were like you so we know where you’re coming from.




  • Just don’t let it go too stale, I recommend updating it a few days or a week after a release gets made, since sometimes there are patches for important stuff released the next day or so after a minor one. That being said what I do is I have an RSS feed for their releases so I get a notification when a new release has been made and can check the changelog for important information, most of the times it’s just bumping the version on the .env file.


  • Realistically the best option here is to not have the data in the laptop. So they would remote into a machine you control to access the data, or something of the sort. Regardless the laptop should have full disk encryption so if it gets stolen no data is accidentally leaked.

    Other than that the best way I can think of is giving the user a non-root account and have the laptop connect to tailscale automatically so you can always ssh into it and control it if needed. But this is not ideal, because a malicious person could just not connect to the internet and completely block you from doing anything. This is true for almost any sort of remote management tool you would be able to find.


  • They do the same with all games that I have from them. Crusader Kings, Stellaris, etc. The base game is always great on its own, then you have very cheap cosmetic DLC and more expensive content DLCs which add new mechanics and expand the game (they also always release a free update for everyone who owns the base game when a new DLC gets released. Oh, and all of their games are moldable, which means you could just implement the cosmetics (and even lots of the other parts of the DLCs via mods).

    Paradox gets shit for their DLC model by people who either don’t play their games, or by people who are so obsessed by them that they think you NEED a given DLC to play it (just because they know of a strategy with it).




  • Nibodhika@lemmy.worldtoLinux@lemmy.mlBalenca vs Ventoy?
    link
    fedilink
    arrow-up
    18
    arrow-down
    1
    ·
    8 months ago

    This thread made me look at this issue. Realistically it’s not a big issue, the VAST majority of the binary blobs are accounted for and have a script or a readme file that shows where they’re downloaded from.

    That being said I will take a serious look at alternatives.




  • There’s nothing like it, nor will it ever be, for a couple of reasons.

    Programming is a long running task

    Distros like Kali are meant to be used for quick tasks where you don’t need data preservation (or when data preservation is a bad thing). Programming is the opposite of this, it’s only about data (the program) preservation. Programming something that will get erased on the next boot is pointless on the long run if you need to program that again, and if you don’t then what you’re doing is not programming but something else that requires some programming.

    Programming is a wide term

    There are multiple languages/IDEs/Workflows/etc, ranging from fully free and open source to paid closed source, whichever you will use depends entirely on you, having all of that pre installed would be 99% garbage since you will only care about 1 or 2 of them.

    Programming requires setup

    Even if you had whatever workflow you use pre installed, to work on something you would need to setup git keys, install dependencies, compile the first version, etc… and that’s all before you can start doing stuff. And you would have to do this again and again since distros like Kali are not meant to be installed (if they were they wouldn’t need to come with all those packages pre-installed because you could just install the ones you cared about)


  • Even considering your edits, it’s still a stupid argument. By that same logic nothing should be preserved. Watching LotR now is not the same as watching it when it first came out, which should have never been made according to you because by that time the book should have already been destroyed since you wouldn’t want to preserve it for 50 years, but Tolkien shouldn’t have even written it, since they were based on ideas and drafts he did during the first world war exploring how war changes men and power corrupts, which obviously is only valid in that context and nowhere else so it should be destroyed since preserving it would be invasive and destructive, no?.

    Preserving something can never be destructive, it’s the opposite of it. If the Mona Lisa was destroyed you wouldn’t even know it existed, so how can having preserved it be destructive when the alternative is oblivion?

    And I agree that the Mona Lisa is no big deal, you know who else agrees? People from that time. It’s widely known that the Mona Lisa was one of Da Vinci’s less famous works, and until Napoleon made a big deal out of it it was just a random painting in a random museum. So I get part of your point, that people who make a big deal out of the Mona Lisa are only there to see the famous painting, but that doesn’t mean that there’s no reason to preserve it, or that there are no people who go there to see the actual Mona Lisa.