The real deal y0

  • 0 Posts
  • 24 Comments
Joined 3 years ago
cake
Cake day: July 16th, 2023

help-circle


  • Id need to look for it again, but i remember reading she was saying that the current proposal is vague in what it sees as required to prevent what she calls risks. I remember them asking her multiple times if she was against a law to prevent csa and the sharing there off, in which she replied multiple times that she was not, but that the law was too vague about what it constitutes as necessary to prevent it. Did i dream it? ><

    Edit: found it!

    Mevrouw Kathmann (GroenLinks-PvdA):
    Het is niet per se alleen zo dat de huidige praktijk wordt voortgezet. Er zitten bijvoorbeeld ook zinnen in het voorstel die aangeven dat álle risico's moeten worden weggenomen. Het is ongelofelijk vaag, een heel grijs gebied, wat dat betekent. Dat is één. Dat is echt een heel groot risico. Daarnaast noemde de heer Van Houwelingen net al het punt van de leeftijdsverificatie. We hebben niet goed met elkaar kunnen bespreken wat daar nou precies in voorligt en hoe wij daar verder mee om moeten gaan. Dit zijn twee dingen die ik er nu zo uitpik.
    









  • You seem to be in the loops of the linux kernel?
    If so, ive known hector from way before when we was part of f0f, or TT as they were known before, doing wii homebrew work.
    What you describe is what my experience was with him 14 years ago too. The guy is smart, he has a very good skill set and knowledge, but his communication skills were lacking back then too.
    Granted, both he and myself were still teenagers and students and we were wild, but i had always assumed he grew up a bit since then…

    What you said is spot on, and i hope he does read both of these. And if he does :
    Marcan, you might not know who i am anymore, but ffs man. Dont screw up your love for all of these by keep kicking the hornets nests. You did it with devkitpro, emudevs when the nier news dropped and with rossman too. Stop it, its for your own good.






  • Thats interresting, thanks! Stuff for me to look into!
    I also think halfway through the conversation i might have given the impression i was talking about pointers, while it was not my intention to do so. That said, the readonly/mutable reference thing is very interresting!
    Ill look into what rust does/has that is like the following psuedocode :

    DataBaseUser variable1 = GetDataBaseUser(20);
    userService.Users.Add(variable1);
    variable1 = null; // or free?
    [end of function scope here, reference to heap now in list ]


  • Thanks for the response. Ive heard of rust’s compiler being very smart and checking a ton of stuff. Its good thing it does, but i feel like there are things that can cause this issues rust cant catch. Cant put my finger on it.
    What would rust do if you have a class A create something on the heap, and it passes this variable ( by ref ? ) to class B, which saves the value into a private variable in class B. Class A gets out of scope, and would be cleaned up. What it put on the heap would be cleaned up, but class B still has a reference(?) to the value on the heap, no? How would rust handle such a case?