aleixmorgadas’s avataraleixmorgadas’s Twitter Archive—№ 1,127

  1. I do need to configure my backup tool to not backup the node_modules folder. It consumes all the storage!
    oh my god twitter doesn’t include alt text from images in their API
    1. …in reply to @aleixmorgadas
      useful commands See the size of all node_module folders find . -name "node_modules" -type d -prune | xargs du -chs Remove all node_module folders in a directory find . -name "node_modules" -type d -prune -exec rm -rf '{}' +
      1. …in reply to @aleixmorgadas
        Still, cleaning the HDD from node_module folders.
        oh my god twitter doesn’t include alt text from images in their API
        1. …in reply to @aleixmorgadas
          More learnings, if you don't care about estimated time or recovery, don't use the file system to copy-paste. It will pre-calculate the estimated time and how to recover from a canceled operation. Instead, use tools like dd or cp in the terminal and it will go way much faster
          oh my god twitter doesn’t include alt text from images in their API
          1. …in reply to @aleixmorgadas
            Thanks to this feature, I had the time to learn about the future in order to feel I'm not losing my time