Why settle on cammel case (“saveGame
”) or upper cammel case (“SaveGame
”) when you can have one of each?
Why settle on cammel case (“saveGame
”) or upper cammel case (“SaveGame
”) when you can have one of each?
Yeah the way I got out was a bit cryptic, although I think there are multiple ways. I’m shameless enough to use a walkthrough when I’ve been stuck for a while, otherwise I’d be having an even harder time.
Planescape: Torment
I haven’t played a lot infinity engine games and I’ve struggled with understanding what the game expects of me in terms of gameplay. Hopefully I’ll internalize that eventually but I’ve been enjoying the writing and vibes so far even if the gameplay feel a bit frustrating and a bit like a chore at the moment.
Well he speaks english so in that sense he’s english speaking
There’s a difference between the author being mad that github is switching to react and the author being mad that github is misusing react. It is possible to use react without breaking browsers find in page functionality, which is ultimately what the author is frustrated about.
Yeah the title of the post makes it sound much worse than what it seems to be in practice? Maybe I’m just naive
Well right now most people develop apps supporting x86 and leaves everything else behind. If they’re supporting x86 + arm, maybe adding riscv as a third option would be a smaller step than adding a second architecture
I think that it’s quite bad if Microsoft puts peoples family photos on their servers without the user realizing it. That’s not a niche privacy nerd sentiment, I think that a lot of people would find that creepy. Having the option easily available can be really good for a lot of non-techy people but it should be very clear what stays on your computer and what doesn’t, and how to keep something private if you want to, which I’m not sure that it is if Microsoft quietly backs up Documents, Pictures etc.
Your scientists were so preoccupied with whether or not they could, they didn’t stop to think if they should
Looking at the example
Why does the generated bash look like that? Is this more safe somehow than a more straighforward bash if or does it just generate needlessly complicated bash?
I think he was still on the board after he closed his account, him leaving the board might be much more recent
I heart vanilla is a good modlist which has some basic bugfixes and minor but faithful graphical improvements. If you wanna make the game look even better, then Volumetric Clouds, Remiros Groundcover (or some other groundcover mod) and Normal Maps for Everything are some of my top recommendations. If you wanna go crazy then there is also a modlist on the same site called graphical overhaul, but I think that it’s worth sticking to a more vanilla aesthetic for a bit just so you have that as a frame of reference.
OpenMW (or, alternatively MGE XE if you want to use the original engine for whatever reason) already have some nice graphical improvements baked into them though.
I don’t think that the driving the empire from Morrowind ever happens in game, but maybe it technically comes true as a concequence of the Red Year which in turn is a concequence of the Tribunal losing their power because of the ending of the main quest. It’s interesting that Uriel Septim sets the prophecy in motion knowing that this is part of it.
The Tribunal where losing their power anyway, but I suppose that Dagoth Ur could have kept Bar Dau in its place if he’d won, but then everyone would have been transformed into a corpus zombie instead.
The Red Year isn’t part of Morrowind lore, but “what is going to happen with Bar Dau now?” is kind of an open question at the end of the game so it is an event that absolutely builds on things set up in Morrowind
It’s weird to have something that verbose for using in the shell. I don’t want to use verbose commands when just doing stuff interactively, so I never learn how to really use its features as a concequence. Bash, while it has more footguns, is more readable to me because I’m more familiar with the individual commands. For most programing you spend more time reading it than writing it, but that’s not the case for the shell so there it’s the wrong tradeoff imo.
Don’t know anything about this particular case so while “social engineering to create a backdoor” is certainly a possibility, so is the more straightforward explanation that it is drama about real or perceived problems in the nix community. I think that it’s dangerous to dismiss this altogether because of the recent xz debacle.
I thought fo4 was underwhelming, but I’m exited to play the fallout 4: london mod which is supposed to drop as soon as possible after the patch, depending on how quickly the script extender gets updated to work with the new version.
It’s set before fallout 1 I think and it won’t have a lot of fallout staples like the pip boy, super mutants or the brotherhood of steel which I think will be a nice change since it feels like Bethesda have overused them a lot. A lot of the promotional material looks fantastic and they seem to have a lot of cool ideas and a professional approach to modding.
The new vegas modding community has kind of a bad track record when it comes to large modding projects but I feel optimistic about folon, but it might be good to temper that optimism with a little bit of caution anyway.
You should, there’s a lot of cool stuff going on in the Morrowind community and now is a really good time to get (back) into the game. Province: Cyrodiil, which has adding cyrodiil as based on Morrowind-era lore to the game as a goal, is set to release have its first major release later this year. I’ve also been getting into tes3mp lately which is a fork of OpenMW for multiplayer.
As a big fan of the neverwinter nights community,
You might appreciate this April fools joke from the OpenMW team then :D
This might not be what you mean when you say “addictive”, but since I’ve been addicted to it for the last half year or so, I’m gonna suggest it anyway: Morrowind.
While the original came out in 2002 for Windows and later Xbox, there’s been a fan remake of the engine which runs on linux (and windows and macos) called OpenMW.
It’s an open world role playing game about exploring the island of Vvardenfell, which is a strange and alien place that’s easy to lose yourself in. Most of the wildlife is made up of insect- or dinosaur like creatures. There are forests made up of giant mushrooms, and ancient wizard lords who use magic to grow mushrooms into buildings that you have to be able to fly to navigate. It’s a world with a rich history, featuring several different religions, cultures and overlapping and competing political structures.
Despite its age, it is to this day a game with a very active modding community which can extend and improve the games mechanics and visuals. It also features what is probably the longest running active modding project, Tamriel rebuilt which seeks to add the rest of the province of Morrowind to the game. It’s about half way done and has basically another game worth of content in it at this point.
This reminds me of a trick to get multiline strings in javascript before they where formally introduced. If you coerce a function in to a string you get the source code for that function, comments and all. This meant that you could write a function with multiline comments and then pick out the middle part. Haven’t tested it so it’s probably sligthly wrong but it was something like:
var multiLine = ('' + function () {/* line 1 line 2 */}); multiLine = multiLine.substring(16, multiLine.length-4);