• 82 Posts
  • 2.22K Comments
Joined 1 year ago
cake
Cake day: September 1st, 2023

help-circle
















  • There’s absolutely no need to call QAs, product owners, HR, finance personnel, or janitors “devs” because they work in or for a gaming company. They have roles and it’s completely fine for them not to be devs.

    Make random comparisons from other industries all you want

    I thought it would help with understanding and provide perspective, but it seems like the shutters are down and bolted. Understanding cannot penetrate the fortress of “everybody in a gaming company is a developer”.

    This ancient attitude is the same upper management position where cutting swathes of knowledgable established QA will bring short term profits only to later hire even more fresh QAs, often contractors or outsourced.

    What does this have anything to do with definition of developers? Diddly squat. Upper management will fire anybody with little to no understanding of their function because they consider everybody below them to be a number on a sheet; a replaceable cog in the machine.

    You think QA has never seen a line of code?

    What are you on about? Seeing a line of code doesn’t make you a developer. Reading memes about coding doesn’t make you a developer, shocker.

    What’s the imaginary line to being part of game dev to you?

    Being part of the game development process does not make you a developer. How many times do I have to repeat this? If you write the game, you’re a developer, otherwise you have another role on the team that is not game development. It’s that easy.

    You design a character? Not a developer. You test the game? Not a developer? You develop the story and draw the art? Not a developer. None of that is writing the game’s code.

    You can be both a developer and an artist, for sure, if you write the game’s code.

    Anti Commercial-AI license


  • Bro, what? Being part of the development process doesn’t make you a developer. The hell? So you think somebody who has never even seen a line of code and manages a team of developers is a developer? You seriously want to tell me that the finance director of a construction company can call himself a builder because he manages the money needed to pay the builders? Jeff Bezos is a top paid developer at Amazon because he developed a strategy to R&D the fuck out everything and signed off on a product?

    Also, I thought it was obvious that my sentence about a “programme developer” not being a software developer would make it pretty obvious, that the presence or lack of “developer” in the title isn’t the defining attribute of the job.

    Anti Commercial-AI license


  • Difficult? How so? I find compiling C and C++ stuff much more difficult than anything python. It never works on the first try whereas with python the chances are much much higher.

    What’s is so difficult to understand about virtual envs? You have global python packages, you can also have per user python packages, and you can create virtual environments to install packages into. Why do people struggle to understand this?

    The global packages are found thanks to default locations, which can be overridden with environment variables. Virtual environments set those environment variables to be able to point to different locations.

    python -m venv .venv/ means python will execute the module venv and tell it to create a virtual environment in the .venv folder in the current directory. As mentioned above, the environment variables have to be set to actually use it. That’s when source .venv/bin/activate comes into play (there are other scripts for zsh and fish). Now you can run pip install $package and then run the package’s command if it has one.

    It’s that simple. If you want to, you can make it difficult by doing sudo pip install $package and fucking up your global packages by possibly updating a dependency of another package - just like the equivalent of updating glibc from 1.2 to 1.3 and breaking every application depending on 1.2 because glibc doesn’t fucking follow goddamn semver.

    As for old versions of python, bro give me a break. There’s pyenv for that if whatever old ass package you’re installing depends on an ancient 10 year old python version. You really think building a C++ package from 10 years ago will work more smoothly than python? Have fun tracking down all the unlocked dependency versions that “Worked On My Machine 🏧” at the start of the century.

    The only python packages I have installing are those with C/C++ dependencies which have to be compiled at install time.

    Y’all have got to be meme’ing.

    Anti Commercial-AI license