Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:A nice gesture of openness (Score 4, Insightful) 114

I love how people used to bitch that you couldn't get your data off of Facebook (which wasn't even completely true, given Platform and Connect), but now that they added that exact feature, people are bitching that it will allow spammers to get information or that it trains users in some bad way. Can you give them a fucking break? They are honestly trying to add a feature exactly for the demographic here (most users probably don't care about this level of data portability one bit) and all most people can do is still complain.

Comment Re:FTFA (Score 1) 163

At best it's a usability issue, where Facebook isn't making it clear to users what is private and what is public.

Have you gone through the new user flow recently? The amount of messaging saying "YOUR STATUS UPDATE IS GOING TO BE COMPLETELY PUBLIC, HERE IS HOW YOU CHANGE IT!!" is insane in my opinion. If someone writes a public update after that accidentally, they have bigger problems...

At worse (and more likely) it's intentional obfuscation on Facebooks part to try to make money.

How does that help Facebook make more money? Ads are targeted based upon demographics and interests without sharing information to advertisers (explanation of how it works) -- how does someone sharing publicly vs. privately help this?

Comment Re:Sense of entitlement much? (Score 1) 289

Fan pages were always public IIRC. There was a transition to force listed activities and interests to be fan pages, but that required clicking through a transition tool that very, very clearly stated they would become public. I honestly don't see the big deal with friend lists, but that one was quickly fixed. As of a couple of months ago, fan pages don't have to be public anymore either.

Comment Re:Bottom 5% with Cable and Airlines (Score 1) 289

The people buying your information from Facebook are the customer.

What do you mean, exactly? Facebook does not sell any user information:

We have designed Facebook to provide relevant and interesting advertising content to you in a way that protects your privacy completely. We never share your personal information with advertisers. We never sell your personal information to anyone. These protections are yours no matter what privacy settings you use; they apply equally to people who share openly with everyone and to people who share with only select friends.

Source: http://blog.facebook.com/blog.php?post=403570307130

Comment Re:Facebook's power (Score 1) 326

The hoohah over the panic button they're now putting in to 'protect the children' is proof that Zuckerberg's cavalier attitude towards privacy will stand, and that we can expect more of the same from Facebook in coming years.

It's not really a panic button: http://eu.techcrunch.com/2010/07/12/facebook-has-not-launched-a-panic-button-its-smarter-than-that/

PHP

Submission + - Facebook to release "HipHop" PHP to C++ Compiler (facebook.com)

sinclair44 writes: Tonight, Facebook plans to release as open-source the "HipHop for PHP" project, a transformer from PHP to C++. By sacrificing only a few features of PHP, HipHop and g++ together are able to compile PHP all the way down to machine code. Facebook claims that this insanely cool project has gained them about a 50% CPU usage decrease on their webservers.

Comment Re:And Futurama (Score 4, Funny) 753

Maybe they put the SciFi shows on Friday nights because they think that the target audience doesn't have a social life and would take a break from their MMORPG or D&D game to watch an hour of TV and give the previous time slot to something that the mainstream audience.

Hey, I asked my DM if we could break for Dollhouse the last couple of weeks, and he correctly pointed out that I didn't have my priorities in order!

Comment "No Such Thing as a Null Pointer" (Score 1) 612

Our programming languages professor, Robert Harper, recently talked about this concept in class. Although he argued that there was "no such thing" as a null pointer, what he actually meant to say was either there shouldn't be such a thing, or that a properly designed language would not have such a notion.

Consider SML (which, incidentally, he helped design). There are of course basic types, ints and bools etc, but it also has the notion of an "option" datatype. A foo option can either be NONE, or SOME of foo. For example, if you are doing some calculation that returns an int but may somehow fail to calculate its result, it will return an int option, with either SOME(result) if there was success, or NONE if it failed. Due to SML's strong type system, the function using that result would have to do case analysis on the result -- you can't use an int option as if it were an int; you need to pattern match and grab the int out of the SOME case and otherwise handle the NONE case.

Java (and C and...) doesn't do this properly. Take an ArrayList, for example. When you say "ArrayList foo", what you actually have is an ArrayList option, he argued, since you really either have SOME(an actual ArrayList) or NONE, representing the null pointer. Except Java has no notion of option types. There's no way to actually get an ArrayList -- you always have an ArrayList option. You have to check for NULL every time.

Thus his argument for why Java et al are badly designed, and how you can properly design a programming language without a need for a NULL pointer -- you use a different type altogether, upon which you can properly case analyze.

Security

Submission + - Hacker publishes notorious Apple Wi-Fi attack (computerworld.com.au)

inkslinger77 writes: "More than a year after claiming to have found a way to take over a Macintosh computer using a flaw in the system's wireless card, David Maynor has finally published details of his exploit. Maynor had been under a nondisclosure agreement, which had previously prevented him from publishing details of the hack, but the NDA is over now and by going public with the information, Maynor hopes to help other Apple researchers with new documentation on things like Wi-Fi debugging and the Mac OS X kernel core dumping facility."

Slashdot Top Deals

"Intelligence without character is a dangerous thing." -- G. Steinem

Working...