Sponsored Content
Full Discussion: Google Plus (+)
The Lounge What is on Your Mind? Google Plus (+) Post 302562370 by Corona688 on Thursday 6th of October 2011 04:06:35 PM
Old 10-06-2011
I've shied away from Facebook due to the nonstop privacy problem outcries. That they don't even have the ability to delete anything is worrying and absurd. Their silent watching of their users via persistent cookies that are never deleted, even on logout, is another minus. And there's far too many stupid logic puzzles in setting up the privacy settings -- they didn't have to make it that hard. I can't help but suspect it's intentional, to extract maximum information from users who don't know better by design.

I don't like the idea of social networking sites. You seem to need to vigilantly watch these things. It becomes just another 'job' my information space requires me to perform when computers are supposed to be working for me. They also seem filled with so much useless frippery (farmville, et al) it's hard to take any of it seriously -- except in the ways they threaten you, of course.

If I ever find a use for social networking sites I might try google+. Until then I don't see any pressing reason to use any of them.

Last edited by Corona688; 10-06-2011 at 05:12 PM..
 

3 More Discussions You Might Find Interesting

1. News, Links, Events and Announcements

Personalized Google

FYI: If you use the new Personalized Google search page, you can add UNIX.COM to the page by adding one or more UNIX.COM RSS link: https://www.unix.com/external.php?forumids= (and forumid for a specific forum if you want). See: https://www.google.com/accounts/ManageAccount (0 Replies)
Discussion started by: Neo
0 Replies

2. Web Development

Helpful Tip: Forcing Google to www.google.com

Helpful Tip! Sometimes when we are in another country, Google redirects our request for www.google.com to: www.google.co.in or to: www.google.co.th If you want to force Google to go to the US site, use: www.google.com/webhp (1 Reply)
Discussion started by: Neo
1 Replies

3. Google Chrome OS

google chrome os

i want to install google chrome , but i don't from where can i get the source (2 Replies)
Discussion started by: linux_land
2 Replies
INTRO(9)						   BSD Kernel Developer's Manual						  INTRO(9)

NAME
intro -- introduction to system kernel interfaces DESCRIPTION
This section contains information about the interfaces and subroutines in the kernel. PROTOTYPES ANSI-C AND ALL THAT Yes please. We would like all code to be fully prototyped. If your code compiles cleanly with cc -Wall we would feel happy about it. It is important to understand that this isn't a question of just shutting up cc, it is a question about avoiding the things it complains about. To put it bluntly, don't hide the problem by casting and other obfuscating practices, solve the problem. INDENTATION AND STYLE
Believe it or not, there actually exists a guide for indentation and style. It isn't generally applied though. We would appreciate if people would pay attention to it, and at least not violate it blatantly. We don't mind it too badly if you have your own style, but please make sure we can read it too. Please take time to read style(9) for more information. NAMING THINGS
Some general rules exist: 1. If a function is meant as a debugging aid in DDB, it should be enclosed in #ifdef DDB #endif /* DDB */ And the name of the procedure should start with the prefix DDB_ to clearly identify the procedure as a debugger routine. SCOPE OF SYMBOLS
It is important to carefully consider the scope of symbols in the kernel. The default is to make everything static, unless some reason requires the opposite. There are several reasons for this policy, the main one is that the kernel is one monolithic name-space, and pollution is not a good idea here either. For device drivers and other modules that don't add new internal interfaces to the kernel, the entire source should be in one file if possi- ble. That way all symbols can be made static. If for some reason a module is split over multiple source files, then try to split the module along some major fault-line and consider using the number of global symbols as your guide. The fewer the better. SEE ALSO
style(9) HISTORY
The intro section manual page appeared in FreeBSD 2.2. BSD
December 13, 1995 BSD
All times are GMT -4. The time now is 03:32 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy