Orys's recent activity

  1. Comment on Starfield - what are your thoughts? in ~games

    Orys
    Link Parent
    Really? The AI is really basic and the shooting feedback feels weak... I don't understand how anyone can enjoy the combat in Starfield

    the combat is the best it’s been

    Really? The AI is really basic and the shooting feedback feels weak... I don't understand how anyone can enjoy the combat in Starfield

    8 votes
  2. Comment on Starfield reviews in ~games

    Orys
    Link Parent
    Gameblog is one of the biggest french gaming website, but they like everything unless it's really, really bad.

    Gameblog is one of the biggest french gaming website, but they like everything unless it's really, really bad.

    1 vote
  3. Comment on Google raising price of YouTube Premium to $13.99 per month in ~tech

    Orys
    Link Parent
    14$/month seem pretty low to me. The cost to run a video hosting website is insane, and the fact that they provide a free service where you can host and watch unlimited 4K videos for free is...

    14$/month seem pretty low to me.

    The cost to run a video hosting website is insane, and the fact that they provide a free service where you can host and watch unlimited 4K videos for free is insane.

    I don't understand why people are so upset about Youtube premium.
    A lot of people complain about ads on Youtube also. What do you expect? This is not a charity with unlimited money, it's a business...

    2 votes
  4. Comment on Good, quality YouTube channels? in ~tech

  5. Comment on What games have you been playing, and what's your opinion on them? in ~games

    Orys
    Link
    I’ve been playing Dofus again after 15 years! It’s crazy that it’s still active and lively after all this time. It’s so nostalgic, one of the best MMO ever. Stunning art, incredible music and...

    I’ve been playing Dofus again after 15 years!
    It’s crazy that it’s still active and lively after all this time.

    It’s so nostalgic, one of the best MMO ever. Stunning art, incredible music and sound effects, everything is so polished

    The gathering, crafting and economy are great.

    If you haven’t played it, you should check it out!

  6. Comment on What programming/technical projects have you been working on? in ~comp

    Orys
    Link Parent
    Yes that's the idea It's not really a public API that's your supposed to use like this, but you can just see what requests are made when using the planner and figure things out. You only need to...

    Yes that's the idea

    It's not really a public API that's your supposed to use like this, but you can just see what requests are made when using the planner and figure things out. You only need to provide their static api key and it works fine.

    1 vote
  7. Comment on What programming/technical projects have you been working on? in ~comp

    Orys
    Link
    I was working on a project related to Ikea, but I think I'll abandon it Ikea has 3D planners used to create your furniture by assembling parts and customize them, like this :...

    I was working on a project related to Ikea, but I think I'll abandon it

    Ikea has 3D planners used to create your furniture by assembling parts and customize them, like this : https://www.ikea.com/addon-app/storageone/besta/web/latest/?range=besta&uiPlatform=web&locale=en-US#/planner?vpc=MJZRSS

    You can save your design and it gives you a code (MJZRSS in this case). These codes are not private and they're just a sequence MJZRSS, MJZRST, MJZRSU, etc.

    My plan was to save a design, then generate every missing ID, get all the data from their API and make some kind of library of every design made by users.

    The main issue is that Ikea operates in several countries, and codes are not linked to a specific country. So you could try to open this MJZRSS design on Ikea US, FR, UK, etc. and depending on the country it'll open fine OR it'll crash, because some parts in the design aren't available.

    I have found a way to check for the parts availability in a country, but it means making 1 request per design, per country, per day... So I won't do that!

  8. Comment on What programming/technical projects have you been working on? in ~comp

    Orys
    Link Parent
    Fresh looks interesting, I might try it out for my next project! Now, I just need to find a new project to work on...

    Fresh looks interesting, I might try it out for my next project!

    Now, I just need to find a new project to work on...

  9. Comment on Resources and help for setting up a Tildes dev environment in ~tildes

    Orys
    Link
    I had trouble setting up my IDE to detect packages, as they were installed on Vagrant and not on my host machine. Python was installed on my host, but in a more recent version than the VM so when...

    I had trouble setting up my IDE to detect packages, as they were installed on Vagrant and not on my host machine.

    Python was installed on my host, but in a more recent version than the VM so when I tried to install the packages from requirements it didn’t work.

    As Im not a Python dev and I’m using PyCharm community, the Vagrant integration and ssh interpreter are not available.

    What I figured out with the help of ChatGPT :

    • Install Python 3.9 (python and python3.9 are both installed)
    • Setup venv, using python3.9 :
    python3.9 -m venv venv
    source venv/bin/activate
    pip install -r requirements.txt
    

    Then I got some errors and had to install some packages like python3-dev, libluajit-5.1-dev, etc.

    After that, set the local virtual environment as the interpreter in PyCharm:
    Go to File > Settings > Project: <Your Project Name> > Python Interpreter.
    Click on the gear icon and select Add.
    In the left panel of the dialog that opens, select Virtualenv Environment.
    In Location, select the venv directory you just created. Then click OK.

    3 votes