• 0 Posts
  • 24 Comments
Joined 2 years ago
cake
Cake day: August 10th, 2023

help-circle
  • Last time USA attached Iraq, the instability generated in the region boosted ISIS and created terrorist attacks waves in Europe, killing hundreds (on top of all the dead people directly impacted in the country attacked of course).

    So cool, here we go again thanks to the US people who are not fucking able to use their brain when voting.






  • I remember and will never forget the media, politic and the following ā€œfrench frog white flag bashingā€ when we told you the reasons invoked for this war were bullshit…

    But more important, I will always remember the deadly attacks we got in our country following the global destabilisation you created in the world. They couldn’t access USA so they targeted the Europe instead… Charlie Hebdo, the Bataclan and many more…

    I have participated to a retrospective meeting leaded by the colonel in charge of Paris when several sites and the Bataclan were attacked. And how he had to choose where to send the help and how many vehicules he could afford, trying to know if another attack will happens in another site. In this meeting I’ve also heard the phone call of people crying for help and being executed by these fanatics…

    Knowing that 6 days before I was in this same fucking place listening Nobuo Uematsu playing final fantasy music… I’m sure you understand why I will never forget that.

    I’m lucky this concert was not on the same day of the football/soccer game they initialy targeted but couldn’t due to the enhanced security this day (a minister was there with my company boss and some others colleagues). So they started to travel in the city, shooting at random (like bars) before entering in the concert room and massacre everybody inside…

    All of that for the $ of your dear GOP members… The fucking $ you put in all conversations like it’s the ultimate goal of a life. More important than a life… A child life in a school for example…

    Please USA, clean your shit, i’m sick seeing the world being impacted by your politics…



  • When we should start to worry? When it’s too late?

    Young, I couldn’t comprehend how Hitler was elected, disgraced then could come back and how the people let that happening.

    Decades later, i really understand: complacency.

    Someone bringing the presidency position just casually say in front of the press that he want to hurt its opponent… In public.

    Imagine what he say in private, with all his yes men and psycho writer of project 2025 for example… And we know it’s not an accident, he reference hitler more than once… He is in admiration with dictators… he want to be one of them…

    Yeah, please ā€œdon’t exaggerateā€.

    Don’t learn from the history. You’re lucky he is also stupid and old…





  • Was going to say that.

    @OP:

    One of the main skill a developer must have is being able to troubleshoot properly how their code behave.

    Break your code in small pieces, check all of them with unitary test (formal or not) to validate their behavior then move to the next step. Never test everything in one shot or you will be overwhelmed by side effect bugs whom will distract you from the real root cause.

    Being a programmer is not just coding but also testing and deploying (even locally).

    That won’t avoid you being blocked by a silly mistake for hours, everybody did that at some point in their career, but that will reduce your frustration against yourself when you discover why the bug existed.

    Do a pause, go walk, change the topic and the next time you look at your code, you will spot the obvious bug :-)



  • Polling has rules to follow to became valid in France. Their are laws that make sure the poll is fair and manipulations can’t apply, in the way questions are asked (neutral tone, full range of answer possible, etc) and where and to who, the minimal amount to have, the medium to use to receive the vote, etc…

    If you do that, you are what i call here a professional neutral poller.

    In this case, it’s not the case. How i know? Well, it’s an internet poll! So no way to really check the reality of people behind (nationality, age, etc).

    I put the officia text informing us than Internet poll can’t be used as real poll because you don’t have a representative sample of the population and result can be manipulated.


    Les enquĆŖtes sur internet

    La commission a Ć©tĆ© saisie du problĆØme des simulations de votes effectuĆ©es par certains journaux sur des panels d’internautes.

    Ce type d’enquĆŖte n’est pas menĆ© auprĆØs d’échantillons reprĆ©sentatifs de la population. Ils ne constituent donc pas des sondages au sens de la loi du 19 juillet 1977.

    Ces enquĆŖtes doivent donc ĆŖtre accompagnĆ©es de prĆ©cautions de prĆ©sentation, appelant l’attention les lecteurs sur la prudence nĆ©cessaire Ć  leur interprĆ©tation.




  • Enoril@jlai.lutoLinux@lemmy.ml•Arch Linux for gaming?
    link
    fedilink
    arrow-up
    4
    Ā·
    1 year ago

    except if you compare it with windows 11.

    My Win11 was so bad (compared to Win10) than I’ve switched to ArchLinux. I’ve won around 10~20fps without doing anything particular (and also gain some better loading time as the nvme sequential access performance was much much better under linux).




  • Indeed, you can achieve a better result with less verbose naming convention. And choose better variable name to make it obvious than 0 Hp is death. While i don’t like having too verbose variable name (as it impacts the readability and quick understanding of the function), i’m not against that for the function name… without going too far of course!

    Best is too have proper datamodeling of the object manipulated on top of some classic basic comments. Good interface contract is also a minimum. Best is to have full datamodeling of all the services, objects, in and out interactions between them, etc.

    Documentation is a mandatory piece of the code delivery (with tests being the other important part) far too much forgotten if you don’t enforce it on your teams.