• 0 Posts
  • 44 Comments
Joined 1 year ago
cake
Cake day: August 8th, 2023

help-circle
  • Interesting how experiences can be so different. To me Jedi Survivor was an improvement over the first game, which I already enjoyed a lot. As far as I can remember you keep most (if not all) of your abilities. In the first game Cal has almost nothing after he essentially cut himself off from the force after the trauma of order 66. It’s and entirely reasonable explanation of Cal not having most normal Jedi abilities.

    Survivor also has better combat, because of the new abilities and weapons, better graphics, and better traversal (looking at you, Zeffo). While I really like the story in Fallen Order as well, I also think that Survivor is better overall. It’s not as clear cut as good vs evil. There’s many different factions and people with different goals. In the end, it’s about everyone just trying to survive the tyranny of the Empire, whatever it takes.

    The games definitely does feel very “gamey” though. There’s a lot of places where it’s clear that things are only the way they are because this is a video game. But to me that’s okay. A game doesn’t always need to be the most realistic and life-like experience. I don’t mind that a specific puzzle is totally unrealistic and clearly only there to force you to solve it. I can imagine that some people will not enjoy that though, and that’s okay.



  • Good meme. However I do think that most people starting out will not really have to deal with any of those issues in the first few years apart from maybe the pip/venv/poetry/etc choice. But whatever they’ll pick it’ll probably work well enough for whatever they’re doing. When I started out I didn’t use any external libraries apart from pygame (which probably came pre-installed). I programmed in the IDLE editor that came with Python. I have no idea how I functioned that way, but I learnt a lot and hat plenty of fun.


  • At the moment Assetto Corsa and Wreckfest.

    Assetto Corsa because it’s a simracing sandbox. I’ve modded it to hell with Content Manager and CSP. I also have a lot of paid mods for mainly formula cars like the RSS Formula 1/2/3/4 cars and the VRC Formula E cars. The AI is the perfect level of silly to cause absolute mayhem with the right settings, but also pretty interesting races when you want them to behave.

    Wreckfest is a joy on the Steam deck and for casual mayhem. It still has a nice driving model imo, while remaining casual. The maps are optimized for crashing into others which means you’re never safe.




  • My Thinkpad almost turns 10 this year and I still use it. It’s still quite snappy for normal browsing and programming work on the go. Because I had 2 batteries for it that were easily switchable, the battery that I’m using now is not yet completely dead and will take me 1-2 hours of programming.

    It has had its screen replaced due to someone kicking my bag and breaking the screen, and I’ve had to replace the keyboard at one point after showering the laptop in tea. But the ease with which you can replace stuff like the keyboard is awesome. The thing is definitely built to last



  • Machine learning and compression have always been closely tied together. It’s trying to learn the “rules” that describe the data rather than memorizing all the data.

    I remember implementing a paper older than me in our “Information Theory” course at university that treated the creation of a decision tree as compression. Their algorithm considered sending the decisions tree and all the exceptions to the decision tree and the tree itself. If a node in the tree increased the overall message size, it would simply be pruned. This way they ensured that you wouldn’t make conclusions while having very little data and would only add the big patterns in the data.

    Fundamentally it is just compression, it’s just a way better method of compression than all the models that we had before.

    EDIT: The paper I’m talking about is “Inferring decision trees using the minimum description length principle” - L. Ross Quinlan & Ronald L. Rivest



  • I might misunderstand what you mean with “implementing” an LLM, but unless you have a good understanding of deep learning and math I wouldn’t recommend to implement one from scratch. There’s a lot of complex math involved in these kind of topics. If you mean implementing an application around an existing LLM, for example writing a chat website that interfaces with ChatGPT or a local LLM, then it’s doable (depending on you current skills).



  • My first experience with the Sims was jumping behind a random computer at some kind of event that was running the Sims 1. Most of the family had just died because the previous person behind the PC had let the house burn down. Needless to say, I was a bit confused. I’ve played the Sims quite a bit after that, and I honestly like messing around with it.

    I don’t think I’ve ever played a game without cheating a lot of money. I don’t like that the Sims that I made have to go off to work or school, so usually I just build a big fence around the property to keep them all there. From there on it used to devolve into chaos when I was younger. Building huge mazes to access basic necessities, launching fireworks indoors, etc. Nowadays im a bit more behaved though.

    Imo the Sims 4 is the best nowadays. The older ones are showing their age. That being said, the Sims 4 is definitely in need of some competition. It’s inexcusably buggy sometimes, and I personally think there’s a lot more that can be done with a game like this. Hopefully the upcoming competitors can spark some fire into this genre.



  • gerryflap@feddit.nltoAndroid@lemdro.idSyncthing saved my ass
    link
    fedilink
    English
    arrow-up
    13
    ·
    5 months ago

    I wouldn’t be so sure if I were you. Everyone, and I mean everyone, uses WhatsApp here. Friends, family, work, doctors, landlords, etc. Not using WhatsApp will make you miss get togethers with friends, make it way harder to communicate with colleagues, take away a lot of convenience when talking to your doctor or landlord or something.

    I have Signal groups with friends, but you’re never going to be able to fully lose WhatsApp here unless you’re prepared to be “that person” everywhere and miss a lot of convenience.



  • I’m not a hundred percent sure, but afaik it has to do with how random the output of the GPT model will be. At 0 it will always pick the most probable next continuation of a piece of text according to its own prediction. The higher the temperature, the more chance there is for less probable outputs to get picked. So it’s most likely to pick 42, but as the temperature increases you see the chance of (according to the model) less likely numbers increase.

    This is how temperature works in the softmax function, which is often used in deep learning.