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
IO::Poll(3pm)						 Perl Programmers Reference Guide					     IO::Poll(3pm)

NAME
IO::Poll - Object interface to system poll call SYNOPSIS
use IO::Poll qw(POLLRDNORM POLLWRNORM POLLIN POLLHUP); $poll = IO::Poll->new(); $poll->mask($input_handle => POLLIN); $poll->mask($output_handle => POLLOUT); $poll->poll($timeout); $ev = $poll->events($input); DESCRIPTION
"IO::Poll" is a simple interface to the system level poll routine. METHODS
mask ( IO [, EVENT_MASK ] ) If EVENT_MASK is given, then, if EVENT_MASK is non-zero, IO is added to the list of file descriptors and the next call to poll will check for any event specified in EVENT_MASK. If EVENT_MASK is zero then IO will be removed from the list of file descriptors. If EVENT_MASK is not given then the return value will be the current event mask value for IO. poll ( [ TIMEOUT ] ) Call the system level poll routine. If TIMEOUT is not specified then the call will block. Returns the number of handles which had events happen, or -1 on error. events ( IO ) Returns the event mask which represents the events that happened on IO during the last call to "poll". remove ( IO ) Remove IO from the list of file descriptors for the next poll. handles( [ EVENT_MASK ] ) Returns a list of handles. If EVENT_MASK is not given then a list of all handles known will be returned. If EVENT_MASK is given then a list of handles will be returned which had one of the events specified by EVENT_MASK happen during the last call ti "poll" SEE ALSO
poll(2), IO::Handle, IO::Select AUTHOR
Graham Barr. Currently maintained by the Perl Porters. Please report all bugs to <perlbug@perl.org>. COPYRIGHT
Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.2 2012-10-11 IO::Poll(3pm)
All times are GMT -4. The time now is 11:29 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy