• 3 Posts
  • 232 Comments
Joined 11 months ago
cake
Cake day: October 23rd, 2023

help-circle


  • I’m a fan and catch YT recaps of topics he covers that I find interesting.

    I will say though that he, as a political influencer, is beholden to his target demographic in the same way that Fox News captivates/gets held captive by its more fervent supporters. It’s a crude analogy, but my understanding is that the ideals of journalism is to follow the news, while influencers follow the engagement.

    It is interesting getting his insights and hearing a knowledgeable person speak on the issues, but it isn’t the same as getting news from a true blue journalist imo















  • Getting cheatsheets via curl cheat.sh/INSERT_COMMAND_HERE

    No install necessary, Also, you can quickly search within the cheatsheets via ~. For example if you copy curl cheat.sh/ls~find will show all the examples of ls that use find. If you remove ~find, then it shows all examples of ls.

    I have a function in my bash alias for it (also piped into more for readability):

    function cht() { curl cheat.sh/"$1"?style=igor|more }