I need Podcast app recommendations for Android/PC
  • Nyanix Nyanix Now 100%

    I haven't had a whole lot of luck on internet radio, but I also haven't dug too deep. I hope someone here has a good answer for that, I'd love to know too

    1
  • Any Discord fediverse alternative???
  • Nyanix Nyanix Now 100%

    This interaction made my day, love this place

    6
  • I need Podcast app recommendations for Android/PC
  • Nyanix Nyanix Now 100%

    I moved from Google Podcasts (which is pretty good) to AntennaPod, which is FOSS and honestly, pretty damn solid

    10
  • Linux gamers, what distro are you currently on?
  • Nyanix Nyanix Now 100%

    She certainly is <3 celebrating 10 years this year

    4
  • Linux gamers, what distro are you currently on?
  • Nyanix Nyanix Now 100%

    It's funny, she's become more of a Linux evangelist than me, she really went all in.

    3
  • Linux gamers, what distro are you currently on?
  • Nyanix Nyanix Now 100%

    I've been on Manjaro for 3 years, honestly love it, it's treated me great for gaming and given me so little to have to fix that my wife has also been running it for 2 years.

    9
  • Moving away from RHEL based distros, whats good ?
  • Nyanix Nyanix Now 100%

    Realistically, it doesn't make sense for folks to be using bleeding edge distros like Arch for a server anyway. LTS of Debian or even Ubuntu are definitely the right answer

    16
  • Lemmy v0.18.0 Release
  • Nyanix Nyanix Now 100%

    By Odin's beard!!! That's an absolute LIST of impressive and impactful enhancements!
    I feel like I owe you several drinks after reading all of that!

    12
  • Does anyone else sometimes feel overwhelmed by (big) games?
  • Nyanix Nyanix Now 100%

    I feel a bit of both ways, on one hand, I love having a familiar universe that I can throws hours into and making it my sort of gaming home base (FFXIV). But when I play something else, I get nervous about them being huge or time demanding. I've been enjoying finding and binging through shorter games that I can knock out in a couple days, experiencing other worlds and stories, but not having to commit substantial life to them.

    There's an amazing amount of trying to make games "worth it" by adding tons of side content, and my ADHD ass can't ignore it...So when a game doesn't do that, like Singularity, Remember Me, or even Alan Wake, I love it. A nice, linear, intentional story with none of the "help my farm from the rats" bs.

    5
  • In your opinion, which FOSS software is by many considered "old" or "obsolete", but are in fact, in your opinion, in many ways better than the newer alternatives?
  • Nyanix Nyanix Now 100%

    One issue is that Microsoft makes so much on data collection, that they actually pay manufacturers to put Windows on there, it's one of the methods used to try to keep stock computer prices low. While this is scummy and anticompetitive, it helps the consumer and gives me a chuckle that installing Windows inherently decreased the worth of a computer.

    8
  • I am working on a new lemmy app for iOS and Android, here's my current progress
  • Nyanix Nyanix Now 100%

    Infinity was my absolute favorite, I shall watch this app with great interest 😁 lemme (Lemmy?) know if you need any additional testers

    12
  • Lemmy is in serious need of more devs
  • Nyanix Nyanix Now 100%

    Thank you so much for your thought out response! I've been encouraged to give Rust another shot, and I'll certainly be taking this advice to heart.
    One thing that I've noticed in many careers is that the ability to break things down is a mark of expertise, to know what things can be broken down to, and I'm hoping going through something as granular as Rust will help expose what many of those things are. It's what made Javascript oddly frustrating, is that granularity felt less like providing me with options, and more like riddling me with extra hurdles.
    I'm excited to take another crack at it (as if I need another time sink, lol), and hopefully some day I can help contribute something of worth.

    1
  • Lemmy is in serious need of more devs
  • Nyanix Nyanix Now 100%

    Likewise, you gave an amazing response and I want to dedicate some time to properly reading and responding to it, so I'll be responding when I have a good opportunity to commit :) Thank you so much for such a thoughtful and thorough response, I really look forward to going over it

    2
  • Lemmy is in serious need of more devs
  • Nyanix Nyanix Now 100%

    That's so kind of you!
    I started by aiming for front-end web dev. I learned HTML & CSS (I know, we're not PROGRAMMING yet). At the time, that's all I was hearing it'd take to get into the role. Then it was "you should probably know some Javascript," and I wasn't ready for how big of a jump that was. By the time I started understanding it, it became "learn jQuery," which I learned and used for a couple of small websites, then came the libraries...
    "AngularJS is the future" well now I need to learn Git, compiling, CMD...
    ReactJS starts becoming a thing and I say "seriously? I've learned enough of these things, quit moving the goalpost, React isn't going to stick around"
    Yeah...it definitely stuck around...but as an Open Source nerd, I got super excited by VueJS and started learning that. No jobs in that apparently, aaaand I no longer want to do web dev, especially since I never reached the point of enjoying coding, it was always a means to an end.

    So there were two major issues for me: \

    1. I never focused on one language enough to truly LEARN to code, it was a constant sense of "I'm not keeping up". I may be able to write the syntax, I might know the basics about functions, vars, and looping, but never really got using it in a super practical sense other than to try a couple of personal challenging projects that my ADHD arse couldn't ever stick with. \
    2. Me and coding speak and think very differently. Stick with me here, I know, it's a language, but the way something should be written and formatted are different from how I think it should be, and this is a very hard one to explain to folks. The best example I can give is that I might say like (and this is a poor example because remember, I don't code and I'm not doing any active coding projects) \

    var person = { userInput }
    var num;
    
    function findNumberOfLetters (person) {
        num = length(person);
    }
    function response(person, num) {
        findNumberOfLetters(person);
        console.log("Hello " + person + "! Did you know that your name has " + num + " letters in it? Numbers are rad!");
    }
    


    I'm sure I did things wrong, but again, this is just for the sake of example. So, I write something like this thinking that it's nicely structured and easy to read, and inevitably won't work. I pass this to a friend, and the answer seems to always be a less structured, more nested code. So for this example, something like \


    (function response(userInput) {
        console.log("Hello " + userInput + "! Did you know that your name has " + length(userInput) + " letters in it? Numbers are rad!");
    })
    


    Obviously their answer is shorter and this isn't exactly a complicated program, but for some reason, making the thing that provides a response to the user to do any of the logic feels wrong and messy to me. It's a really hard thing to explain, I hope this makes some amount of sense, but I just process things very differently than code does, and it just ends up really incompatible. I'll beat my head for weeks over-complicating something because I want it to "be clean" only for someone I know to come up with something that actually works within seconds.
    This isn't to compare my skills against them, it's to say that I'm thinking about it wrong, I'm organizing it wrong.
    That said, knowing how code functions has helped me to know enough to be dangerous and apply it in other ways, such as building Azure Logic Apps to manage ticket intake, or building alert monitoring. So it's come in very handy in its own way, I just don't have to competency to actually make any contributions to Open Source projects, especially since I don't write in two of the coolest languages that I wish I could learn: Python and Rust.

    No pity party here, I love what I do and I don't intend to change careers to coding, but I do end up feeling helpless in the face of instances like this where I wish so badly to contribute to a project that I care so strongly about and want to see thrive. I know there's other ways to contribute, such as providing graphics, UI, documentation, financial, hosting, etc. but coding always seems to be the most in need to keep up with demand, and with more and more projects coming out all the time, the more programmers are in need to see them through.

    1
  • Lemmy is in serious need of more devs
  • Nyanix Nyanix Now 100%

    Yessss, honestly, it really helps to have that knowledge, I've been surprised at how often it comes in handy

    2
  • Lemmy is in serious need of more devs
  • Nyanix Nyanix Now 100%

    I wish so badly I could code, I spent 8 years trying to understand it and get into the industry, but it never quite clicked in my brain. Soooo I do IT infrastructure. I wish so badly to contribute code

    16
  • The best open-source games you know
  • Nyanix Nyanix Now 100%

    Aaaah, I love that idea, I wonder if there are any good controller configs for it that might help for that

    1
  • TIFU: Wielding a bag of sex toys next to a family
  • Nyanix Nyanix Now 100%

    Hahahaha, that's freaking brilliant, mate. Bonus points, I'm going and saying it's a birthday gift for the wife 😉

    1
  • My partner and I spent an evening in Komra handing out chair mounts to everyone. We had a great time meeting new people and telling lame jokes ![](https://beehaw.org/pictrs/image/875fdf86-7210-48b0-911a-227686cbe5da.png)

    17
    2
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearLE
    Lemmy Support Nyanix Now 100%
    "Type: All" doesn't seem to work in the account settings

    cross-posted from: https://beehaw.org/post/437860 > I want to show All communities by default. There is an option for that, in the account settings, where one can choose between "Subscribed", "Local" and "All". Subscribed and Local seem to work as expected. However, "All" doesn't work.. I select "All", save, go to the frontpage, reload, and it is still showing "Local".

    4
    8
    Nyanix Now
    4 63

    Nyanix

    beehaw.org

    If my delusions are perceived as innovations, my asperations will be surpassed.
    Just an UwU boi living in an OwO world