data

The first and probably easiest solution would be to use a cloud service from one of the many providers available e.g., Google Drive, iCloud, OneDrive, Amazon Drive and so forth. There are different pricing schemes, sharing options etc. and I would suggest you compare the available options and choose one that fits best for you and your family. By using such a cloud service, you benefit from a relatively easy setup process and already incorporated remote sharing. The downside is that you lose control over your files once they are uploaded to the cloud, from a data protection and privacy sense. You never truly know how your data is being handled and might also get caught up within a breach of your cloud service provider.
Alternatively, you may also consider setting up a small home server or a NAS (Network-attached Storage). There are many options for customers to choose from, depending on their technological know-how and how much control they want, although at least some technological know-how is required to properly set one up. These enable you to have a home shared drive as well as public ones. This can again be achieved with the right know-how or services provided by the manufacturer. Overall, they are more costly initially and more difficult to set up, but enable you to take control of your data, how it is accessed, who can actually view and edit it, track data access and much more.

SocialTags:

Technology:

How can I easily store and share data with my family at home and beyond?

In our home, we want an easy way to share data between different PCs. Most family members have their own laptop or PC. To share data between these PCs, we have thus far used USB sticks to transfer said data. However, since new laptops from different manufacturers seem to favor different ports, it has become more and more of a hassle of the several different adapters needed. Furthermore, the data is often not really required on the PCs themselves, and so they usually end up on external drives and sticks that tend to get hidden away in drawers or lost. The pandemic also made it somewhat harder to exchange data with different family members in such a way.

Automated remote backups in Linux

A lot of data is stored on publicly available drives/shares. These consist a definite value and need to be secured to pertain their value in case of service interruption or the like. So a reliably tool is required, which automates this daily task without user invention. What are recommendations in this area?

Change data sent using POST method of HTTP

The main HTTP methods used for sending data to the web server are GET and POST method. When using the <strong>GET method</strong>, the data is encoded directly in the requested URL, specifically to the query part of it. The query part starts with a question mark and consists of pairs key, value in a form <code>key=value</code>, the pairs are divided by an ampersand. For instance to inform the web server that a user wants to log off, quite often the URL of the form <code>index.php?action=logout</code> is used. Therefore it is very easy to change the sent data. The <strong>POST method</strong> uses the body of the HTTP message to store the data. The user has no direct possibility to change the data. We want to find an easy way to do so.
Subscribe to data