Sponsored Content
The Lounge What is on Your Mind? Powerhouses and mainstream poll Post 303000985 by 1in10 on Monday 24th of July 2017 04:41:21 PM
Old 07-24-2017
Powerhouses and mainstream poll

This not a joke but a quite serious question to maybe have your point of view about this very topic of content on the net. So I start this poll to ask the users if they can imagine that the so called content industry of former times sooner or later or anyway will regain lost ground or not? Do you think this kind of oligarchy of huge power houses from the past or from today will win against the community driving the net? Smilie

Well to get this straight, it ain't about politicians. They come and they go. Empires rise and fall. Ancient Rome tought all the others "divide et impera". The ones you choose are not in charge, the real power you never vote, because it is not on the election campaign. It is indeed about the technical standards all of us are using. It may be a nautic mile, the original meter, Celsius or Farenheit or the RFCs by the IANA where all the well known global players are involved to grab their future technical claim affecting my daily life. About bloatware, updates or protocols dealing in a sophisticated way the matter of content. Giving two examples which are almost standards, never turned to be so, but most of us are using them. MP3 is now free of charge, turned the music world upside down, started out of nowhere and became the best known of all in the last twenty years or more. One recent hidden champ I would say is nginx, also coming from nowhere. Both of them handling content while I am typing this or loading it up. So thats my point: if the industry turns me down as a user due to their standards or I as a user turn my back on that same attitude of the industry. (I could mention my mobile phone from 2009 from a well known japanese brand, that already installed a copyright protection not using android, so it doesn't play certain tunes. Just because my recorded song from the 1980s that turned into an mp3 file and went onto that very celphone it is not in their database.) Thats what I mean. I truly don't give a dime about one single so called politician, no matter where he signs up. Nor the ministry of truth or some kind of that. Although some guy like Mr. Bannon can come from rags to riches working for a kind of financial dynasty. The bigger spin to that content came frome innovations like the mp3-format from the Fraunhofer-Institute or the man (men) behind ngnix. So is it a group of these so called global players (may you remember old brands that went bust, do you?) that determine a standard that goes almost down by law as an industrial or technical standard or is it the user ( the community ) that is in charge. That is what this poll should be about. If the net as it is and as it grows as well as intellectual property does should be handled by some RFCs of some IANA, going down by law or if any kind of content on air, online, should be what it is. Just there to be seen, read or listened whithout commercial, technical or legal restrictions, because you never know where there is a backup.
And by the way, two worldwide known brands are using sucessfully a BSD-homebrew, charging their clients to pay for that, this can be a play-station or a smartphone, doesn't matter. But it is an example about content borrowing. Truely public intellectual property turned into commercial property. To cut a long story short, are there too many attempts (technically seen) to control the users behaviour or is the user still having a slight chance to be in charge while using this instead of switching it off? A car without a steering wheel and whithout a driver or am I still sitting in the drivers seat or feeding my way?

Last edited by 1in10; 07-26-2017 at 10:10 AM.. Reason: clearance
 

5 More Discussions You Might Find Interesting

1. IP Networking

select vs poll

Hi, Off late I had been looking at the differences b/w select() & poll() system calls. The requirement is to reduce the overhead, processor power in waiting for the data. In the kind of connections under consideration there would be very frequent data arriving on the sockets, so poll() fares... (12 Replies)
Discussion started by: smanu
12 Replies

2. Shell Programming and Scripting

how to poll for new files?

Hi , i have a requirement in which i have to ftp files to unix from windows and vice versa. I have to encrypt files in windows which will then be decrypted in unix and vice versa. Now the process needs to be automated ..therefore when windows server or unix server recieves the files a shell... (5 Replies)
Discussion started by: lifzgud
5 Replies

3. Programming

pipe() and poll() problem in C

Hi all, Im trying to do a simple program which ask the user for a unix command with the arguments. The program fork and the two process communicate with pipes. The child process call execvp with the command and the father process read the result of the execvp via the pipe. This program works... (11 Replies)
Discussion started by: blackmamba21
11 Replies

4. Shell Programming and Scripting

How to use poll() for I/O multiplex

Hi, guys: I want to write my own shell using C. I am confused about the usage of I/O multiplex. Does anyone know some examples or explain it to me ? Thanks so much (1 Reply)
Discussion started by: tomlee
1 Replies

5. AIX

Poll of sorts - on LDAP

1) Do you use LDAP on AIX? (as a client) 2) If yes, what LDAP server technology do you use: a) IDS (or ITDS) - IBM Tivoli Directory Server b) AD c) openLDAP d) other - please list. I ask, because I am looking at openLDAP as well as IDS and am wondering if there is a clear preference I... (4 Replies)
Discussion started by: MichaelFelt
4 Replies
XML::Easy::Content(3pm) 				User Contributed Perl Documentation				   XML::Easy::Content(3pm)

NAME
XML::Easy::Content - abstract form of XML content SYNOPSIS
use XML::Easy::Content; $content = XML::Easy::Content->new([ "foo", $subelement, "bar", ]); $twine = $content->twine; DESCRIPTION
An object of this class represents a chunk of XML content, the kind of matter that can be contained within an XML element. This is in an abstract form, intended for general manipulation. It is completely isolated from the textual representation of XML, and holds only the meaningful content of the chunk. The data in a content object cannot be modified: different data requires the creation of a new object. An XML content chunk consists of a sequence of zero or more characters and XML elements, interspersed in any fashion. Character content can use almost all Unicode characters, with only a few characters (such as most of the ASCII control characters) prohibited by the specification from being directly represented in XML. Each XML element in a content chunk itself recursively contains a chunk of content, in addition to having attached metadata. This class is not meant to be subclassed. XML content is unextendable, dumb data. Content objects are better processed using the functions in XML::Easy::NodeBasics than using the methods of this class. CONSTRUCTOR
XML::Easy::Content->new(TWINE) Constructs and returns a new content chunk object with the specified content. TWINE must be a reference to an array listing the chunk's content in twine form (see "Twine" in XML::Easy::NodeBasics). The content is checked for validity, against the XML 1.0 specification, and the function "die"s if it is invalid. METHODS
$content->twine Returns a reference to an array listing the chunk's content in twine form (see "Twine" in XML::Easy::NodeBasics). The returned array must not be subsequently modified. If possible, it will be marked as read-only in order to prevent modification. $content->content Deprecated alias for the "twine" method. SEE ALSO
XML::Easy::Element, XML::Easy::NodeBasics AUTHOR
Andrew Main (Zefram) <zefram@fysh.org> COPYRIGHT
Copyright (C) 2008, 2009 PhotoBox Ltd Copyright (C) 2009, 2010, 2011 Andrew Main (Zefram) <zefram@fysh.org> LICENSE
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2011-11-16 XML::Easy::Content(3pm)
All times are GMT -4. The time now is 08:38 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy