home.social

#largefiles — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #largefiles, aggregated by home.social.

fetched live
  1. TechSpot: Google Chrome has been silently pushing a 4GB AI model to your device without asking. “Google Chrome users who have noticed unusual disk activity or unexplained drops in available storage should look for a folder called ‘OptGuideOnDeviceModel’ inside their Chrome directory. It holds roughly 4GB of weights for Google’s Gemini Nano LLM, downloaded by the browser without user consent.”

    https://rbfirehose.com/2026/05/06/techspot-google-chrome-has-been-silently-pushing-a-4gb-ai-model-to-your-device-without-asking/
  2. TechSpot: Google Chrome has been silently pushing a 4GB AI model to your device without asking. “Google Chrome users who have noticed unusual disk activity or unexplained drops in available storage should look for a folder called ‘OptGuideOnDeviceModel’ inside their Chrome directory. It holds roughly 4GB of weights for Google’s Gemini Nano LLM, downloaded by the browser without user consent.”

    https://rbfirehose.com/2026/05/06/techspot-google-chrome-has-been-silently-pushing-a-4gb-ai-model-to-your-device-without-asking/
  3. Ah, behold the marvel that is "git-annex," a tool so niche that even die-hard command-line aficionados might pause 🤔. For those who worship at the altar of git and dream of syncing large files while caressing checksums and encryption as if they were long-lost lovers, rejoice! 😆 But fear not, mere mortals: there's an assistant to dumb it down into a glorified folder sync tool. 🗂️✨
    git-annex.branchable.com/ #git-annex #commandline #tools #largefiles #sync_tool #HackerNews #ngated

  4. Ah, behold the marvel that is "git-annex," a tool so niche that even die-hard command-line aficionados might pause 🤔. For those who worship at the altar of git and dream of syncing large files while caressing checksums and encryption as if they were long-lost lovers, rejoice! 😆 But fear not, mere mortals: there's an assistant to dumb it down into a glorified folder sync tool. 🗂️✨
    git-annex.branchable.com/ #git-annex #commandline #tools #largefiles #sync_tool #HackerNews #ngated

  5. 🚀 Breaking News: The future of large files in #Git is... wait for it... Git! 🎉 Tyler Cipriani unveils the groundbreaking revelation that Git is working on its own solution to large files, because apparently, nothing screams #innovation like removing the convenience of Git LFS only to reinvent it internally! 🤦‍♂️✨
    tylercipriani.com/blog/2025/08 #LargeFiles #GitLFS #GitHub #TylerCipriani #TechNews #HackerNews #ngated

  6. 🚀 Breaking News: The future of large files in #Git is... wait for it... Git! 🎉 Tyler Cipriani unveils the groundbreaking revelation that Git is working on its own solution to large files, because apparently, nothing screams #innovation like removing the convenience of Git LFS only to reinvent it internally! 🤦‍♂️✨
    tylercipriani.com/blog/2025/08 #LargeFiles #GitLFS #GitHub #TylerCipriani #TechNews #HackerNews #ngated

  7. #Git #LargeFiles #Storage #GameDev

    New blog post about one way to keep your large-file storage size down when using git.

    dbat.codeberg.page/posts/git-l

    I hope it's not bad advice. Please let me know of bugs etc.

    Also, if anyone has other techniques, will be happy to try them and add them to the post.

    🦇

  8. #Git #LargeFiles #Storage #GameDev

    New blog post about one way to keep your large-file storage size down when using git.

    dbat.codeberg.page/posts/git-l

    I hope it's not bad advice. Please let me know of bugs etc.

    Also, if anyone has other techniques, will be happy to try them and add them to the post.

    🦇

  9. #Codeberg #git #git-lfs #GameDev #LargeFiles

    I opened an "issue" on Codeberg to try get some discussion about my recent git-lfs experiences and the ideas floating in my head for a better way to handle large binary files while using git.

    I'd appreciate any feedback etc. It's here:
    codeberg.org/Codeberg/Communit

    I'm a git-nitwit, so factor that in! 🤭
    🦇

  10. #Codeberg #git #git-lfs #GameDev #LargeFiles

    I opened an "issue" on Codeberg to try get some discussion about my recent git-lfs experiences and the ideas floating in my head for a better way to handle large binary files while using git.

    I'd appreciate any feedback etc. It's here:
    codeberg.org/Codeberg/Communit

    I'm a git-nitwit, so factor that in! 🤭
    🦇

  11. #git #gamedev #LargeFiles

    Rough idea:

    touch big.blend
    git rm --cached big.blend
    git commit
    git push
    git add big.blend
    git commit
    git push

    ...but scripted somehow, so that only happens when big.blend has changed.

    3/

  12. #git #gamedev #LargeFiles

    Rough idea:

    touch big.blend
    git rm --cached big.blend
    git commit
    git push
    git add big.blend
    git commit
    git push

    ...but scripted somehow, so that only happens when big.blend has changed.

    3/

  13. #git #gamedev #LargeFiles

    LFS does not do it. Git-annex does not seem to do it.

    All the `assume-unchanged` and `skip-worktree` do not really do it.

    Is there some way you can think of?

    2/

  14. #git #gamedev #LargeFiles

    LFS does not do it. Git-annex does not seem to do it.

    All the `assume-unchanged` and `skip-worktree` do not really do it.

    Is there some way you can think of?

    2/

  15. #git #gamedev #LargeFiles

    It is just *bewildering* to me that git does not have a way to ignore changes to a tracked file.

    Game dev use-case:
    repo/
    codefile001
    codefile002
    binary_files/
    huge001.blend
    huge002.png
    huge003.wav

    I want to add/commit/push as usual, because I *want* the all those files online (backups) and for others to fetch.

    I do NOT want those binary files to duplicate. When I push a new version, then *replace* binary files that changed!

    😕 🦇
    1/

  16. #git #gamedev #LargeFiles

    It is just *bewildering* to me that git does not have a way to ignore changes to a tracked file.

    Game dev use-case:
    repo/
    codefile001
    codefile002
    binary_files/
    huge001.blend
    huge002.png
    huge003.wav

    I want to add/commit/push as usual, because I *want* the all those files online (backups) and for others to fetch.

    I do NOT want those binary files to duplicate. When I push a new version, then *replace* binary files that changed!

    😕 🦇
    1/

  17. I recently needed to read in a very large file in Python (around 150 million lines), it would read in 50 lines, do some work and then carry on. But it had a habit of crashing out (normally when I forgot and closed my laptop). So I created a stateful reader, that way when I started the execution again it would resume from the last saved checkpoint.

    #Python #LargeFiles #Sqlite

    dazfuller.uk/posts/python-stat

  18. I recently needed to read in a very large file in Python (around 150 million lines), it would read in 50 lines, do some work and then carry on. But it had a habit of crashing out (normally when I forgot and closed my laptop). So I created a stateful reader, that way when I started the execution again it would resume from the last saved checkpoint.

    #Python #LargeFiles #Sqlite

    dazfuller.uk/posts/python-stat

  19. Say goodbye to email attachment limits! Use to send files up to 10GB with ease. Plus, it's secure and focuses on transfer speed.

    itsfoss.com/share-large-files-