• 1 Post
  • 40 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle
  • DrM@feddit.deto3DPrinting@lemmy.world*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    10
    ·
    3 months ago

    I really hope that FreeCAD will get better with time, and the Blender story will be the same for FreeCAD. Just a few years back, Blender was really bad compared with Maya, now Autodesk lost a huge market because Blender is powerful enough for professional work, probably even better than Maya







  • It also is very unstable when using multiple profiles. The profiles update individually, so very often you start a second profile and it updates firefox, which makes the first profile not work anymore. You don’t really notice that though, it just stops loading any websites.

    Also on mobile it stops streams running in the background after some time, so when listening to something via firefox you have to actively use FF while listening, can’t leave the phone turned to standby






  • DrM@feddit.detomemes@lemmy.worldTell me what it means
    link
    fedilink
    arrow-up
    9
    arrow-down
    9
    ·
    edit-2
    7 months ago

    Of course the amount of insects drastically reduced, but for the windscreen there is another thing to take into account: Cars today are extremely aerodynamic. Even new Jeeps and the F150s are aerodynamic. Because of this, the insects are pushed away from your windscreen instead of against it, which is one of the main reasons why your windscreen isn’t full of insects anymore.

    The only real exception to this is the Mercedes G-Class, but I doubt that a lot of us will ever sit in one

    Edit: apparently I’m wrong: https://feddit.de/comment/8318194








  • DrM@feddit.detoProgrammer Humor@lemmy.mlAverage TS developer
    link
    fedilink
    arrow-up
    13
    ·
    edit-2
    11 months ago

    The main problem with JavaScript and TypeScript is that there is such a little entrybarrier to it, that way too many people use it without understanding it. The amount of times that we had major issues in production because someone doesn’t understand TypeScript is not countable anymore and our project went live only 4 months ago.

    For example, when you use nest.js and want to use a boolean value as a query parameter.

    As an example:

    @Get('valueOfMyBoolean')
    @ApiQuery(
      {
        name: 'myBoolean',
        type: boolean,
      }
    )
    myBooleanFunction(
      @Query('myBoolean') myBoolean: boolean
    ){
      if(myBoolean){
        return 'myBoolean is true';
      }
      return 'myBoolean is false';
    }
    

    You see this code. You don’t see anything wrong with it. The architect looks at it in code review and doesn’t see anything wrong with it. But then you do a GET https://something.com/valueOfMyBoolean?myBoolean=false and you get “myBoolean is true” and if you do typeOf(myBoolean) you will see that, despite you declaring it twice, myBoolean is not a boolean but a string. But when running the unit-tests, myBoolean is a boolean.