2 pointsby 1vuio0pswjnm73 hours ago3 comments
  • 1vuio0pswjnm73 hours ago
    Alternative to archive.ph

    Text-only, no Javascript, no CAPTCHA, no geoblocking, no DDoS on blog

    https://assets.msn.com/content/view/v2/Detail/en-in/AA24oJaI

    • 1vuio0pswjnm721 minutes ago
      Is JSON "unreadable"

      Developers like it, so we have to deal with it whether it's "readable" or not

      Javascript is one way to make JSON "readable"

      But it's not the only way

      I don't use Javascript

    • 1vuio0pswjnm7an hour ago

         # plain text
         # article only contains one URL
      
         links -dump https://assets.msn.com/content/view/v2/Detail/en-in/AA24oJaI \
         |sed '1,/\"body\":/d;/readTimeMin/,$d' > 1.txt
         #vi -R 1.txt
         less 1.txt
      
      
         # html, no CSS, no Javascript
          x=https://assets.msn.com/content/view/v2/Detail/en-in/AA24oJaI 
         (echo url=$x
          echo header=user-agent:
          echo header=accept:
          #echo insecure
         )|curl -K/dev/stdin \
          |grep -o "<p>.*</p>" \
          |tr -d '\134' \
          |sed '1s/^/<meta charset=utf-8>/'  > 1.htm
         firefox ./1.htm
         #links 1.htm
    • DivingForGold2 hours ago
      ... and unreadable
  • 23 minutes ago
    undefined