Featured

The Not-So-Pretty Side of Big Tech

Most of us grow up thinking that the things we buy and store online are ours. Games, apps, files, even the email addresses tied to our names. But big tech companies like Microsoft remind us that nothing in their ecosystem really belongs to us. Recently, Microsoft suspended my Outlook account. They claimed that my OneDrive contained “child porn.”  Let me be clear: I download adult videos from the open web. I am not a pedophile. Yet Microsoft’s algorithms, terms of service, and opaque enforcement systems flagged my content as illegal, locked me out of my account, and informed me that I cannot appeal for six months. When you use Microsoft services, you’re not really buying a product; you’re renting access. Their terms give them permission to scan files on your computer, in your cloud storage, and across your account. The moment something doesn’t fit their rules, they can revoke everything: your email, your purchased games, even the apps you’ve paid for. Microsoft’s policy is blun...

Syncthing: Your Free and Open-Source File Synchronization Tool

In today's digital age, where cloud storage and file sharing are dominant, Syncthing stands out as an excellent open-source solution. It offers a decentralized approach to keeping your files synchronized across multiple devices. This guide will help you install Syncthing on different devices and showcase its outstanding privacy features.



Syncthing Documentation


Syncthing on GitHub


Setting up Syncthing on Different Platforms:


Android:

    - Install "Syncthing" from the Google Play Store.

    - Launch the app.

    - Grant necessary permissions for the app to access your files.

    - You'll be presented with your device ID, which you'll use to connect other devices.


Linux:

    - Download and install Syncthing for your distribution from the official Syncthing website

    - Start Syncthing: Typically, you can run `syncthing` from the terminal.

    - Access the Syncthing interface via your web browser: `http://localhost:8384/`.

    - Note your device ID on the right-hand side.


Windows:

    - Download and install SyncTrayzor for Windows 

    - Start Syncthing.

    - Access the Syncthing interface via your web browser: `http://localhost:8384/`.

    - Note your device ID on the right-hand side.


Mac:

    - Download and install Syncthing for macOS from the official website.

    - Start Syncthing.

    - Access the Syncthing interface via your web browser: `http://localhost:8384/`.

    - Note your device ID on the right-hand side.


iOS:

    - Syncthing does not have an official iOS app, but there are third-party apps like Möbius Sync that utilize Syncthing's protocol.


    - Install your chosen app and set it up.

    - Note the device ID provided.



To add a device:


- On Device A (like Android), tap "Add Device" or its similar option, then scan the QR code.

- Enter the Device ID of Device B (like Linux).

- On Device B, accept the incoming connection request from Device A.

- Both devices are now paired.



Sharing a Folder:


    - On Device A, choose a folder to share.

    - Share this folder with Device B by selecting it under "Share With Devices".

    - On Device B, accept the incoming folder share request.

    - The folder will now sync between Device A and Device B.




Syncthing doesn't store your data on a central server. Instead, it uses a peer-to-peer method for devices to communicate directly with each other. The data sent between your devices is secure and can only be accessed by the intended recipient. Since Syncthing is open-source, anyone can examine its code to make sure there are no hidden ways to access your data or harmful intentions.

Comments