Also notably in that same year “The Legend of Zelda: Tears of the Kingdom” launched as well. So it was not because lack of competition.
I’m here to stay.
Also notably in that same year “The Legend of Zelda: Tears of the Kingdom” launched as well. So it was not because lack of competition.
deleted by creator
No I didn’t, until this post.
Would be nice, but at least you can give it a custom theme colors.
There is only one caveat to it. If I’m on a forum with table elements, for some reason it only shows the first one or two replies and cuts of the rest. And there are a few edge cases when it doesn’t work well, but otherwise reader mode is the best mode of converting an unpleasant or unreadable page into something readable.
As expected, nobody cares about “reader mode”. Only once in my life has it ever come in handy…
I use this from time to time, the reader mode is an important feature to me at least and helped me making many sites readable. I think most people are happy with the mode as it is, therefore it was not high in the list for any upgrades. It’s not always bad design, but just having a different taste. Lot of people like black background and white text, but to me it bleeds my eyes. If lot of people like it, that the design isn’t bad.
Option to allow browser extensions to run only on specific websites
This actually sounds pretty awesome. Now I want that feature. Good job Mozilla, now I want a feature which I may not get soon enough. ^^ Sometimes I wish to be an ignorant.
Exactly (referring to more complicated), you are right about the architecture. The PS3 is that complicated, not even Sony themselves have a working emulator for their catalog of games in Playstation monthly subscriptions. Sony emulates PS1 and 2, and PS3 is only streaming and PS4 games are directly compatible with PS5. That’s because PS4 and 5 are similar in the architecture and basically a PC (obviously there is more to it, but CPU is similar).
And that’s why the most advanced PS4 emulator, ChadPS4 … I mean ShadPS4 (the community makes jokes and calls it Chad), doesn’t actually emulate the CPU entirely! Because its similar to a PC CPU, it can use lot of instructions directly. There are other PS4 emulators who try to emulate it entirely, like a traditional emulator.
As for PS3, it is still not in a state like PS2 emulator. Some games work fine and I can play lot of them in full speed without major or any issues. It’s under heavy development still. Some games still are totally unplayable. And depending on how heavy a game is, it can be really demanding on the current modern PCs (I know its a vague statement, its hard to make exact statement for situations like these). I think its still a few years away from how the PS2 performs right now. And then the question if anyone wants to port the emulator to a different architecture… phew!
Playstation 2 is already solid, that’s for sure. Since my new PC from last year, I am also able to emulate Playstation 3 (some claim even the Steam Deck is capable of doing so, but I’m not sure how good). And PSP emulator runs on most computers nowadays. We even enter in emulating a Playstation 4, but off course this is in early stages at the moment.
So yeah, there is lot of Playstation food for the coming years for you. :D Its really exciting. I still need to figure out PS Vita, and didn’t get into it yet. The original Playstation is still my biggest Sony love I have and probably right behind my favorite console, the SNES.
Romhacks are also huge part of why I love the emulation scene. If you allow me to plug an article I wrote, with lot of Romhacks and Mods for NES as a recommendation. There is so much cool stuff out there: https://thingsiplay.game.blog/2023/02/18/nes-mods-and-romhacks-collection/
Someone even ported the original NES Super Mario Bros to SNES, and then modified that to add in a Super Mario Maker style editor; on the SNES! I can’t link it here if you are interested, unfortunately I only know a prepatched ROM source for it. And that is not something this community / place allows to link.
I do emulation since early 2000s (since I have a PC) and its one of the best things not only in gaming, but in computing and technology in general!
If you are new to emulation, then I recommend to use standalone emulators first. There are emulators for single systems, like Snes9x for SNES and others are multi-system emulators, like Mesen or Ares that can play many console systems.
Following is a bit more advanced:
Resources:
pcloud
I’m not much of a Cloud Drive user, but experimented with pcloud. It has a CLI tool and the ability to show up in the local filesystem, so you can browse through with your graphical filemanager: https://www.pcloud.com/download-free-online-cloud-file-storage.html
Free Tier
I only used the Free Tier without time limitation. Just logged in to the web client in browser to see if my files are still there, and I still have my files uploaded 2 years ago. I think Free Tier starts with 1 GB of free space and you can unlock more and more if you do some tasks like installing the CLI tool and such (I have 5 GB of space without time limtations). And the files are stored in European servers; not sure if I had a choice at account creation time or if this is tied to the location where I am.
If you want more space, you can either pay annually or a one time payment for lifetime access (500gb for 200 Euros, 2 TB for 400 Euros…).
Thanks. Is this suggestion towards this ?
script or the output from the cheat.sh
web service? Because I’m not the author of the web service itself, I just created this script to make use of it.
Ah it was intentional and now I see how it was meant. It makes perfectly sense, it was just not clear before. :-) Human language and interpreter is not as precise like programming language.^^
Oh, you was talking about resizing. I see. Yes, Btree does not allow resizing. Trying so will snap window back to position, just as you were saying. When I read “drag”, I thought you meant placing the window. The default “Tile” or “Quarter” could be used instead if window resizing is a requirement. But off course they do not function exactly like Btree.
Krohnkite
In krohnkite I can’t use btree while also keeping the tiling part. If I drag a tile while in btree in krohnkite they just snap back to their previous position.
I use a 3 different layouts, one of them Btree. And drag and drop one window over the other will swap position of both windows. So functionally, it is working (for me) and maybe another plugin or configuration in Plasma is in the way?
Polonium
Closing all windows and relaunching them is from users perspective actually not too different from logging out and in again, at least from my view. From time to time I’m looking at the source in Github to see what the recent advancements are. But it seems development is on halt at the moment, with only minor changes over longer period of time.
On KDEs side I saw some update notes specifically mentioning fixes for Polonium, which is a good sign. My hope is that development of Polonium will take off soon.
So yeah, exception as part of explicit function signature is a vast improvement, I completely agree
Hmm, I’m not sure if you are being sarcastic. In my reply I didn’t meant encoding Exceptions into Type system. Is this a type and you probably meant “Error Types as part of” instead “exception as part of”?
Honestly I don’t know how Exceptions as part of type system would even look like. Because each function call in a chain would need to have all information from previous function call, otherwise that information gets lost to the next caller. The problem is the hierarchy of function and method calls. Somewhere some objects and functions can be edited to Throw a new Exception, that is not handled through the entire chain. And for the higher function caller, there is 0% way of knowing that (through code, besides documentation off course).
Read my reply with a handful of sea salt. I just read tutorials and documentation a bit and did Hello World.
Zig is pretty cool too! It can run C code directly just like C++ does (I think), kind of drop in replacement. From my reading so far, Error Handling is kind of a marriage between Go’s and Rust’s Error handling. Actually pretty cool. It has Error Types, but is kept relatively simple and doesn’t force to do all the stuff. It has Try and Catch keywords to handle errors elegantly, but don’t be fooled, this has nothing to do with Try…Catch blocks for Exceptions. Zigs Try and Catch are more like Rusts Result type handling, at least from what I read so far.
I lean more towards Zig than Go, but it still has not reached stable 1.0 release.
Krohnkite
https://github.com/anametologin/krohnkite
https://store.kde.org/p/2144146/
I would try a few Plasma based tiling scripts before switching to anything like Sway or i3.
Agreed. I used tiling window managers for years before coming back to Plasma. Right now on Wayland I highly recommend giving Krohnkite a shot, its stable without any problems and has even multiple layouts to choose (and switch) from. I used Polonum before, but that one is not stable and was problematic. Krohnkite plugin (can be found in KWin Scripts > Get New… > then search for “krohnkite”, by anametologin) is pretty good in my opinion.
The only problem with these plugins is, that they are not well documented as a standalone tiling window manager and cannot be configured as deeply. And they might interfere with other plugins or shortcut setups and so on. I knew what I wanted and I knew how to configure stuff, that’s why its easy for me. At least it can be easily disabled without replacing entire desktop environment.
Little tip: One thing to mention, unlike Polonium, with Krohnkite one does not need to logout and login from current user session whenever settings are changed. It’s enough to disable Krohnkite in KWin Scripts, Apply, then enable and Apply again. This is basically a reload of the plugin to take any changed settings in effect.
Dota #1 for price pool and CS2 #2. BTW what is the source for these stats?