Everything is a file - Psychology, Philosophy, and Licenses

Users browsing this thread: 3 Guest(s)
pranomostro
Long time nixers
One thing that bugs me is that
computer networks (and especially the internet)
are not filesystems, if you look at modern
unices.

What if I want to download all images from an
instagram account? It is unfortunately not
as simple as
Code:
mount www.instagram.com/testaccount /net/insta
and then just use
Code:
cp *.png *.jpg /tmp/img
to copy the images.
Instead, I can do two things: spend one and a half hours
reading the wget manpage to find out how to this, or write
a small script with an ad-hoc parser using curl.
But if I want to reuse this another time, I will have
to write another parser.

My main complaint here is that we could treat data
on servers as filesystems that could easily be mounted into
the local file system (this is, obviously, what plan 9 does).

One could argue that there are FUSE systems for that, but
this argument does not count. Why?
Because FUSE systems are specialised, and can mostly be used only
for one website. For another website, somebody will have
to write another FUSE. I can't accept this as a viable solution.

Imagine what e-mail would look like in a world where you
can mount servers as file-systems. You log into that server,
ls your inbox, mount another server, go to your friends directory,
edit a mail for him, save it on the other server, unmount the two
servers again and then proceed. I don't know how you feel about this,
but I wish so much that this could come true.


Messages In This Thread
Everything is a file - by venam - 17-12-2015, 02:24 AM
RE: Everything is a file - by sulami - 17-12-2015, 04:27 AM
RE: Everything is a file - by ninjacharlie - 17-12-2015, 10:26 AM
RE: Everything is a file - by Houseoftea - 18-12-2015, 12:03 AM
RE: Everything is a file - by z3bra - 18-12-2015, 05:21 AM
RE: Everything is a file - by pranomostro - 19-12-2015, 01:57 PM
RE: Everything is a file - by z3bra - 19-12-2015, 02:27 PM
RE: Everything is a file - by pranomostro - 19-12-2015, 02:31 PM
RE: Everything is a file - by Wildefyr - 19-12-2015, 05:56 PM
RE: Everything is a file - by apk - 19-12-2015, 09:27 PM
RE: Everything is a file - by z3bra - 20-12-2015, 03:35 PM
RE: Everything is a file - by pranomostro - 21-12-2015, 10:27 AM
RE: Everything is a file - by z3bra - 21-12-2015, 07:05 PM
RE: Everything is a file - by XcelQ - 24-01-2016, 03:27 PM
RE: Everything is a file - by Pr0Wolf29 - 25-01-2016, 05:27 AM
RE: Everything is a file - by rain1 - 19-04-2016, 08:48 AM
RE: Everything is a file - by venam - 19-04-2016, 09:05 AM
RE: Everything is a file - by pranomostro - 19-04-2016, 12:28 PM
RE: Everything is a file - by rain1 - 20-04-2016, 12:47 PM
RE: Everything is a file - by josuah - 21-04-2016, 12:21 AM
RE: Everything is a file - by venam - 21-04-2016, 12:31 AM
RE: Everything is a file - by josuah - 21-04-2016, 12:49 AM