• 0 Posts
  • 72 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle















  • I didn’t think he’s as transphobic as he’s put out to be. However, he’s not coming off great and I don’t see why he needs those bits. He’s a better comedian than that.

    Like I think I saw a clip of one of his most recent ones and at the end it … the point was that a trans man or women doesn’t really look much like who they want to be or identify as to him. I mean, it seems dehumanizing doesn’t it?

    Well, maybe he is as transphobic, maybe I gotta see the whole special to get it and it’s part of a larger gag. In any case, I’m not a fan of that type of stuff. Also, he brought Musk on stage so fuck him.


  • Well over a decade ago I remember a coworker would just go through the codebase and add his own coding style.

    Instead of if (predicate) {

    He would do if ( predicate )

    I would always ask why he did it and he said, “well we don’t have any coding standards so I’m going to do it” … I replied, “there’s things like unwritten rules and sticking to whatever’s in the codebase makes it easy”. I told the seniors and they chose not to do anything (everyone just merged into trunk) and they just left him for a while.

    Then he turned rewrote built-in logical functions in code like this: if (predicate || predicate) {

    Into code like this: if ( or( predicate, predicate ) ) {

    This was C# and there was no Prettier back then.

    Also, he would private every constructor and then create a static factory method.

    Eventually the seniors told him to knock it off. All I said was that I initially tried telling them weeks ahead of time and now we got a mess on our hands.




  • oh JS too, which kinda throws me off because I’m not bad with Web Dev, but I’m not good either and my UI looks like a bad web page than a good desktop app.

    I’m actually trying to keep it simple and write my own launcher like Alfred, Albert, Kupfer but I want it to launch my own custom scripts that I can load in a directory as well.