I have a bunch of things I have cooking, kinda on and off.

  • Working with @Burger@burggit.moe on Burggit, obviously.

  • Have a minecraft modding project I work on occasionally. Not something I think I’ll ever share publicly (might share some screenshots at some point though.).

  • There’s a super secret super cool project I’ve been working on for Shota Services, which I hope people will enjoy when it comes out.

  • As well as a bunch of smaller things like tweaking various sites and some other things which are too early for me to reveal.

What have you been doing to express your creativity recently?

  • @Lucia
    link
    71 year ago

    Recently I’ve been trying to draw more and improve my art, so far it’s going well though some days I struggle to find what to draw. 😮‍💨

    • DisaOPMA
      link
      41 year ago

      That sounds fun! My wife also practices her drawing to improve her art! What sort of things do you usually like to draw?

      • @Lucia
        link
        51 year ago

        I mainly draw very busty women/futa and recently I’ve also been trying to draw more petite characters.

        • DisaOPMA
          link
          21 year ago

          I’d love to see some of it, if ever you feel comfortable sharing. I am a big fan of busty women. disa drooling

          • @Lucia
            link
            31 year ago

            Sure, I don’t have a place where I upload art so I’ll just dm you some stuff if thats fine with you.

            • DisaOPMA
              link
              21 year ago

              Yep, feel free. :3 You can also use something like: https://upload.shota.services/ if you’re worried about them being permanently stored on Burggit servers.

  • @PinkBow
    link
    6
    edit-2
    9 months ago

    deleted by creator

    • DisaOPMA
      link
      4
      edit-2
      1 year ago

      I’m happy that I could motivate you a little bit. This is something I often fall into the trap of, where I’ll just end up not doing anything creative and just veg around, which is absolutely not good. So, I try to push myself to do projects which help me express myself creatively.

      I don’t do much with AI, except occasionally make my shota-sona in different poses for icons and what not, simply cause it’s not the sort of thing I think is worth commissioning a person for. I’m terrible at doing anything else, lol.

      I love fiddling around with programming, I used to do some game development stuff in my freetime, but I think I lost all the projects, which has discouraged me from that, not to mention my AMD card being a huge hindrance in that department, at least with the Game Engine I was using. I’ve been mainly working on websites as of late.

    • @Somdudewillson
      link
      21 year ago

      If you want to muck around with AI, I’d recommend taking a look at Kaggle. They’ll just give you a bunch of boxes to run machine learning & stuff on, completely free. They also give everyone an allocation of 30 hours/week of access to an Nvidia P100 GPU.

      • @PinkBow
        link
        2
        edit-2
        9 months ago

        deleted by creator

  • @Nazrin
    link
    51 year ago

    I work on coding a genshin impact private server. It take the somehow acquired from the client resources and tries to emulate the behavior of the server. Super buggy, but I’m slowly ironing out bugs and making the quests possible without using too many manual override commands.

    • DisaOPMA
      link
      41 year ago

      That’s super cool! I love reverse engineering type projects like that. How do you manage to get the client to connect to the modded server? I imagine it’d be through either a modified client or an isolated network of sorts.

      • @Nazrin
        link
        41 year ago

        It’s through a proxy redirector. The client believes it is talking directly to the official server with nearly no modification.

    • Kyou
      link
      31 year ago

      Interesting. Didn’t know something like that was possible

      • @MomoNeedsCorrection
        link
        41 year ago

        Theoretically, you can basically do this for any game (or similar software) that primarily runs on your computer, but connects up to a server for various purposes. If you know what information your game sends up, and what the server sends down, it’s entirely possible to create an alternative server that sends down the right information, along with some method of redirecting the game to your new server.

        The biggest examples would be things like wiimmfi or pokemon event distribution servers

    • @awoo
      link
      21 year ago

      Is it Grasscutter by any chance? I was looking for some decent offline single player experience but the last time I checked it’s still a bit underwhelming.

      • @Nazrin
        link
        21 year ago

        Ya, Grasscutter. Last two months I’ve helped bring the questing from nearly unplayable to there only needing to be a few commands to finish the prologue.

        • @awoo
          link
          21 year ago

          Oh boy. How healthy is the project at the moment? I think when I found it last year the community was super active. I stopped paying attention to it but always had a fear that the community may have imploded due to retarded drama or burned itself out.

          Either way I’ll give it another try when I go on vacation next month. Looking forward to it.

          • @Nazrin
            link
            31 year ago

            Unfortunately it seems I’m the main coder now. I haven’t seen the former, much more experianced, active main coder for a few weeks now. He’s probably taking a minecraft break, but there’s still a lot of low hanging fruit to cover.

            • @awoo
              link
              21 year ago

              Interesting. My Java is rusty and I have only played the game for less than 10 hours but I’ll see if there is anything I can help.

  • @SmolSlime
    link
    51 year ago

    Currently banging my head trying to understand the whole web programming. It feels so messy compared to other programming languages, and there are so many shit I have to learn just to make a modern website. I just can’t get a grasp of it. Now I’m learning javascript, and my god, it’s so weird compared to other languages. Why the hell is semicolon sometimes needed, sometimes optional? What the fuck is anonymous/arrow function? Why do I have to make a function only to be used once? I wonder if it’ss be easier once I start learning frameworks.

    Other than that, I’m also learning to draw. Though I have to muster up a lot of willpower just to do it due to negative thoughts.

    • Elyusi, Kei
      link
      3
      edit-2
      1 year ago

      I dunno that much about web dev, but from my understanding:

      Why the hell is semicolon sometimes needed, sometimes optional?

      I think that’s called ASI if you haven’t come across the term already. Semi-colons are less like “optional”, and more like the JS parser takes its best guess as to where semi-colons should go in addition to explicit ones.
      Personally, I prefer to leave code formatting decisions like that to an opinionated formatter like Prettier and just never think about it again.

      What the fuck is anonymous/arrow function? Why do I have to make a function only to be used once?

      These are trappings of functional programming. If you’re learning this stuff mostly for fun, I can recommend taking a detour to dabble in a purely(-ish) functional language for at least a little bit. It’ll probably be even more of a head-scratcher than JS, but it should quickly become obvious as to why anonymous functions are a handy convenience. More importantly it forces you to conceptualize a problem from a functional approach, which you might otherwise avoid in more popular multi-paradigm languages since it’s unfamiliar.

      As for why functional programming is handy, there’s doubtless more thorough and knowledgeable primers on the web, but as for me the two big ones that immediately come to mind are:

      • New avenues for separation of concerns. I think a typical example to point out is sorting: FP makes it trivial to separate the sorting algorithm from how you want the data sorted, you just pass a comparison function alongside the data, which the sorting algorithm then repeatedly calls.
      • Concurrency safety. Purely functional solutions are basically impossible to shoot yourself in the foot with as far as parallelism. More realistically, with unpure solutions the more you can borrow from a functional approach, the fewer avenues you have to shoot yourself in the foot with respect to parallelism.

      For JS, lifetimes and scope seem like they’d be kind of unwieldy, without knowing a bit about FP and more specifically closures.

      • @SmolSlime
        link
        31 year ago

        I think that’s called ASI if you haven’t come across the term already.

        Never heard of that. Gonna look into Prettier.

        If you’re learning this stuff mostly for fun, I can recommend taking a detour to dabble in a purely(-ish) functional language for at least a little bit.

        I just read that and while it’s still confusing, it helps me to understand that a little better. I guess it makes sense I have a hard time understanding it, since back when I started learning programming, OOP was the hot stuff.

    • DisaOPMA
      link
      31 year ago

      I’ve been working on web development myself, though I have the complete opposite approach. I try to use as little client-side JavaScript as physically possible. A lot can be done with pure HTML and CSS, and when those are too limiting, I’ve been using server-side JavaScript via EJS.

      • @SmolSlime
        link
        21 year ago

        I’ve been using server-side JavaScript via EJS.

        I’ve never heard that. Gonna see how it looks like.

  • @BurgerA
    link
    41 year ago

    I was working on the API but the way federation works here is pants on head retarded so I guess I can’t do that…

  • @Marimfisher
    link
    English
    41 year ago

    Mostly just trudging through college to get another degree. Also trying to learn Spanish to a usable level. Figured there’s no point in wasting all that highschool class time.

  • @GalvyGalvyCwanbewwy
    link
    31 year ago

    I’ve been swapping between a couple different things, but not all of them are necessarily what I would consider “creative”.

    • I’ve been trying to learn how to draw, using the book Figure It Out! Human Proportions: Draw the Head and Figure Right Every Time as my teacher, you could say. It’s slow going, and I’m still fairly early in my studies, but I’ve already noticed a little improvement! Every once in a while, if I can stomach the monotony, I try and do Draw a box, too.

    • Some fanfiction projects. In true stereotypical cringelord fashion, right now I’ve been writing… Sonic the Hedgehog fanfiction. Incredible. I don’t know if that’s better or worse than my stint writing Hollow Knight porn.

    • It isn’t really creative, but I’ve been trying to get better about taking notes as I read. I use an app called OpenReads I grabbed off F-Droid to write down my thoughts, feelings, and even passages I really like from the books I’ve been reading. I’m the sort of person who will just mindlessly consume and forget everything about something if I don’t force myself to stop and really engage with a work.

    • Nobu
      link
      English
      5
      edit-2
      1 year ago

      Check out Obsidian. Works on all platforms, and with sync (drive, github) you can sync them all together so u can work on phone, continue on PC, or vice versa.

      Checking OpenReads I realize it is less of a note taking app but a more of a book reader tracker. Pretty damn awesome. I highly recommend MediaTracker.

      • Elyusi, Kei
        link
        English
        21 year ago

        MediaTracker

        Oh shit, I recently wondered if something like this existed, but I wasn’t able to check at the time. Thanks for the info and the reminder!

        • Nobu
          link
          English
          21 year ago

          With pleasure! :D

      • @GalvyGalvyCwanbewwy
        link
        English
        21 year ago

        I’m really not a fan of tracking my shows and stuff on things that need accounts like MAL and letterboxd, so MediaTracker looks really cool!!

        I’m not all that technically savvy, so it might be a bit above my skill level, but I’ll try and give it a go when my computer is fixed.

        • Nobu
          link
          English
          2
          edit-2
          1 year ago

          You can choose to install on your main PC via docker. It just means the services are only usable when you are on your main PC (when main PC is on).

          I highly recommend you to look into selfhosting and the whole idea of privacy and you owning 100% of your digital data etc.

          • @GalvyGalvyCwanbewwy
            link
            English
            11 year ago

            Oh, hahaha, believe me, Disa’s certainly here to help - he’s my husband. He said he’d set this up for me, but I think I’ll still try and figure it out a little on my own too.

            • Nobu
              link
              English
              21 year ago

              Ah amazing, then for sure u can bug disabled whenever u need help haha

  • Elyusi, Kei
    link
    31 year ago

    I write and maintain a Twitch bot for a friend. Today I got to push a one-liner fix (hopefully), which always feels good. It’s an API call that was working fine before, so I guess I was using it in a legacy way without realizing, woops!

  • Waffle
    link
    31 year ago
    • Backend APIs for some VR apps.
    • Reverse engineering save files to write a save modder in Rust. There’s 0 documentation on the binary save files and learning Rust’s borrow checker feels like driving a backwards car.
    • Optimizing SourceEngine maps. When I get more time I want to mess around with S2 maps in S&box more.
    • This(NSFW Loli)

    Lately I’ve had the idea to make a bot for auto cunny posting from my Gelbooru or Pixiv favorites. I’ve already reversed engineered their APIs years ago.

  • Nobu
    link
    3
    edit-2
    1 year ago

    Oh wow, so many great freaking projects people are working on :D I love it! Thank you @Disabled@burggit.moe for this post.

    Revisited my config files, Docker-compose, etc. The idea is to have that stuff all saved up (.yaml, .conf, etc). In case i wanna reinstall server, it will be a literal copy paste/click 1 button. Having Docker-compose + portainer is a gift to humanity. I cannot live without portainer.

    @GalvyGalvyCwanbewwy@burggit.moe, I moved from many Note taking apps, back to Obsidian. Before this I was using Trilium Notes (which I really really love), but I decided to just go with Obsidian again.