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

help-circle



  • 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"
    }
    



  • Do you want to post the output of running fallout 4 through steam from the terminal?

    steam steam://rungameid/377160

    In my experience it’s usually some graphics issue. I see your GPU is 2014 model so maybe you need to use the legacy nvidia driver?

    My strategy would be trying to find an error somewhere in some diagnostics or by running a game and then take it from there.





  • Don’t hate on my man Innocent III, he said he was against attacking Christians and excommunicated the crusader army for attacking Zara. The sore loser Alexios IV Angelos offered the crusader army too much to ignore (from Wikipedia):

    There, Alexios IV offered to pay the entire debt owed to the Venetians, give 200,000 silver marks to the crusaders, 10,000 Byzantine professional troops for the Crusade, the maintenance of 500 knights in the Holy Land, the service of the Byzantine navy to transport the Crusader Army to Egypt, and the placement of the Eastern Orthodox Church under the authority of the Pope, if they would sail to Constantinople and topple the reigning emperor Alexios III Angelos, brother of Isaac II.

    That fucker got ousted by the public one year later and didn’t deliver anything so he essentially scammed the whole crusade. The other parts of the army not simping for Venetian and Thessalonian rat plans just went straight to Acre instead.






  • 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.