Spastic Hamburger

Forum Replies Created

Viewing 20 posts – 61 through 80 (of 1,257 total)
  • Author
    Posts
  • in reply to: Films & TV Shows #5272

    FiM is a wonderful show! Been watching it from the start and this will be my third viewing. Definitely worth it! 🙂

    And a lot of guest appearances, too! Weird Al even makes an appearance doing his polka act.

    The Super Show is a blast! It’s so goofy that you can’t help but enjoy it 😀

    And let’s not forget to do the Mario:

    And Happy MAR10 Day!

    in reply to: MWEdit #5270

    Unicode tracker item updated with more information courtesy of the OpenMW folks 🙂

    in reply to: Films & TV Shows #5269

    Can’t get any more episodes of SpongeBob past season six. But that’s okay: I wasn’t really enjoying it anyways 😛

    So I started watching Friendship is Magic again, along with the Super Mario Bros Super Show.

    in reply to: Software: On & Off the Web #5264

    Nope. I stopped using GNOME when 3.x landed and bounced around a lot before settling on a sort of hybrid install that used bits and pieces from XFCE and standalone aspects. Cinnamon wasn’t bad but had quite a few bugs in it that made it impractical for daily use.

    They also take community contributions so that definitely helps 🙂

    Terminal customization in the GUI is limited but I haven’t checked the settings files yet. Of course, you can always install a different terminal!

    Display scaling definitely works better so my eyes are much happier. 🙂

    The new version of PopOS does lean too much on Flathub for my liking (I greatly prefer the native system package manager) and it does have a nasty bug where it causes my screen to flicker after it comes back on from where the power manager shut it off, requiring a reboot to correct. Pretty annoying, that one.

    in reply to: Morrowind #5260

    Excellent! Haven’t tried it yet myself but I do recommend installing a ground cover as the barren ground looks a bit bizarre otherwise 😛

    in reply to: MWEdit #5257

    We’ll get it figured out! It is weird that TCHAR is in winnt.h instead of something more sensible like tchar.h. The latter has support functions but TCHAR itself is elsewhere. Maybe I need to clean up the Windows API as well (not happening! Too much work!)? 😛

    Yeah, Unicode will be a tad hairy due to inconsistent support. I remember that with BOSS, it took a ton of trial and error to determine what was Unicode compliant but support has improved immensely since then. The existing code doesn’t use the wide-character versions, either

    In the main standard, we have cwctype and cctype for UTF-8. As we know from prior investigation, wchar_t is implementation defined and thus not portable. There doesn’t exist equivalents for UTF-16, I don’t think, but I’ll need to do some more digging to make sure. We’ll also want to check to see what’s supported by the in-game engine for the in-game text.

    in reply to: Software: On & Off the Web #5253

    PopOS 24.04 landed yesterday for everyone. Update went without a hitch but you need to redo all of the settings since it replaced GNOME with Cosmic. Not too difficult over here as I kept things simple with this in mind (it was supposed to be released last year). Got most of them but still have a few left 🙂

    Quite nice, really. Pretty different but still user friendly. Going to need to play with things as time allows to see how I like the changes

    Probably wouldn’t have been a bad idea to wait a while but I wanted to get out of the holding pattern 😛

    in reply to: MWEdit #5251

    Great, thanks. Been forever since I had to worry about pointer arithmetic 😛

    Probably should grab my old C textbook that’s on the bookcase as a refresher 🙂

    Edit:

    `ui/ directory is done and processing. Going to update the system as a large update just landed yesterday. 🙂

    Since we’re not using windows.h, it looks like we’ll need to set the architecture manually for some reason. Shouldn’t need to but I’ll add a note that _AMD64_ needs to be set in the build script for winnt.h.

    in reply to: Films & TV Shows #5248

    SpongeBob’s splinter episode makes no sense! It was already canon that he could remove his arms and regrow them instantly without issue and does this several times throughout the series. So, instead of worrying about the splinter in his hand, just remove the limb!

    in reply to: MWEdit #5242

    Another note: the book UI is incomplete as it doesn’t set the book data. The Book class holds book data but nowhere in the code-base is the bookdata_t struct actually used. Looks like it’s an incomplete feature. We’ll probably want a separate tracker item to keep up with this stuff.

    New tracker item: https://github.com/Walrus-Tech/MWEdit/issues/46

    Feel free to add things to it as you come across them!

    in reply to: Morrowind #5237

    Any issues since or is OpenMW doing the trick?

    in reply to: Cooking #5236

    So I’ve started using the slow-cooker to roast chicken. It works great! Either a whole chicken or chicken breasts with a bunch of various vegetables and seasonings mixed in. I just turn it to high and let it run for a few hours and presto!

    Probably going to pick up some cake boxes soon to make it easier to transport them. They’ll be handy to have around!

    I also need to look at getting a knife sharpener at some point.

    in reply to: MWEdit #5224

    Had to back out some of the compatibility changes regarding iscsym(). The function is supposed to take an integer/character but is being passed a character array instead. A few other uses just checked a single character so I left those in place. I’ve added notes in the code to investigate further to see what’s going on. There’s a good chance something will break with these functions so I can back the changes out if needed. The single character changes look good but we’ll find out. We can probably fix it by just checking the character the code comments say is being checked. I’ll leave that for another commit, though, so I don’t clutter the include commit too much. I’ve already got enough unrelated changes in it as it is.

    The code also checks a single character using the pointer version. Pointers always confused me so here’s that line:
    if (!iscsym(*pID) && !(*pID == ' ')) {
    pID is defined as const TCHAR *pID. So *pID is an array of the array, if I’m reading that correctly?

    Still becoming reacquainted with these things. Coming along, though.

    For reference, they show up in ui/edit_undo.cc, ui/script_dlg.cc, and ui/utils.cc

    in reply to: Films & TV Shows #5223

    It’s not that bad. It’s really no worse than what would be a PG-13 film here in the US. Unlike others of its ilk, there’s no nudity. Just sexual jokes and references.

    Now, High School DxD is a lot worse than that. They actually censored the fourth season over here due to the content (other seasons are uncensored). That said, it’s a lot of fun but definitely not for everyone.

    I’m mostly catching up on stuff I missed over the years. 😛 Tried watching the old TMNT cartoon but found it a bit too hokey. Rewatched ALF, which is always fun, and caught up on some of the later seasons of Murder She Wrote. All good stuff but the final episode of ALF can be skipped: the series ends when he’s captured for dissection because it had just gotten cancelled.

    in reply to: MWEdit #5221

    I updated some tracker items with additional information regarding Unicode

    Still working on getting the debug build fixed up.

    in reply to: The Long Hall of Hilarity #5220

    Missed that latest update. Will need to catch up!

    Ah, Craigslist gems: https://www.craigslist.org/about/best/all/

    Pretty fun postings in there. It’s kind of buried so doesn’t get much attention.

    in reply to: Software: On & Off the Web #5218

    200 USD for a TKL mechanical….? That’s insane. You can get a really nice full layout mechanical keyboard for that price!

    Ugh. Had something similar when I was browsing Discogs yesterday on the tablet: the click area for the sidebar stretched into the list area in portrait mode and had to put it in landscape to get it to function correctly. Not a fan of landscape as it’s more difficult to hold and browse that way.

    Translation support is on the list! Haven’t used Weblate before but have certainly come across it. I can certainly add a note to the tracker to investigate it more. Once gettext has been implemented, we’d be able to apply to use the 160,000 string plan as an open source project. 🙂

    Sorry that progress has been so slow lately. The code is in pretty rough shape and I can only do so much. I was really hoping to be further along after a year of work. No matter! I’ll get it shaped up, even if it takes me two hundred years!

    Edit:

    Issue updated with more information 🙂

    in reply to: Films & TV Shows #5216

    And started watching Spongebob the other day just for fun. As bad as it is, it’s a lot of fun 😀

    in reply to: MWEdit #5210

    Going through some old stuff and re-discovered Ortham’s (previously known as WrinklyNinja, name changed while I was away from the overall community) list of links: https://blog.ortham.net/buddah/
    A lot of the tools on it are old and haven’t been updated in a decade but there may still be some useful stuff we can use for reference. Specifically, the BSA stuff as I haven’t found a good reference for the BSA format outside of UESP (Fallout and Starfield have alluded me so far).

    My preference is not to lean too heavily on existing code for reference, however. That risks us using the same algorithms when we could do things differently to get the same result. Personally, I’d prefer a breakdown of the actual formats and processes so I’ll keep investigating.

    in reply to: Hardware Relics #5209

    Fiber is only just becoming mainstream, so that may help down the road if the industry cares to revisit the format for larger screens. Of course, with the size needed, it would still be a pretty niche market. I do wish we’d have more streaming content in 4k, though, and at better compression algorithms. I can see a big difference between my 4k Blu-Rays and the 1080p streaming content.

    Looks like a nifty model. Do like the design 🙂

    I have a Panasonic workhorse myself that’s about ten years old. Unfortunately, use is limited due to the wiring in my kitchen: the circuit breaker trips up if I run any heavy load for more than ten-ish minutes (happens with other stuff, too). Oven and fridge are fine, thankfully. So much for having a do-it-all small appliance! 😛

Viewing 20 posts – 61 through 80 (of 1,257 total)