• 4 Posts
  • 121 Comments
Joined 2 years ago
cake
Cake day: August 19th, 2023

help-circle








  • Caveman@lemmy.worldtomemes@lemmy.worldGet. Off. The. Plane.
    link
    fedilink
    arrow-up
    4
    arrow-down
    1
    ·
    24 days ago

    One other thing is that the people should allow other people who are already ready to walk out pass them before standing and taking out their carry-on. Most times I’ve seen all passanger wait for each row taking out their carry-ons sequentially instead of 10 taking them out at the same time. If everyone would be me with a carry-on it’d take around 5-10m since I only take the aisle when I’m ready to leave and/or there is another person taking out their carry-on in front or behind me.




  • Nah, I don’t like running stuff on startup because I use the laptop for personal stuff also. Not going to open slack/email when I’m off. I don’t move them manually, I use window rules for them to open in a specific activity.

    custart() {
      nohup slack --enable-features=WebRTCPipeWireCapturer & echo "Slack started"
      nohup spotify & echo "Spotify started"
      nohup datagrip & echo "Datagrip started"
      nohup birdtray & echo "Thunderbird started"
      nohup surfshark & echo "Surfshark started"
      nohup flatpak run --branch=stable --arch=x86_64 --command=teams-for-linux --file-forwarding com.github.IsmaelMartinez.teams_for_linux @@u %U @@ & echo "MS Teams started"
    }
    







  • Gradually typed is a great description because it’s neither fully static or dynamic. TS does allow you to circumvent the types too easily to be called statically typed.

    const strings: string[] = ([1] as any[])
    

    Is ok in TS land so the type of strings is not really static so to speak because you can assign whatever to it. Writing this in Dart would give

    error - The argument type 'List<dynamic>' can't be assigned to the parameter type 'List<string>'. - argument_type_not_assignable
    

    if I’m not mistaken.