Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Ridiculous anti-Apple clickbait (Score 1) 110

Apple hasn't even achieved its primary stated goal of de-fragmenting the music market

Really? You criticise them for it not being a success before they've even launched the damn thing? No other company gets berated for not achieving its goals for a product pre-launch. This is just another of those bizarre articles that holds Apple to not just an unattainable standard, but a standard that doesn't even make sense.

Comment Re:Objective-C is now legacy - but not quite dead (Score 1) 337

Because the only way to support C in this supposed future where system frameworks will be written in Swift is that Objective-C will still need to be around.

That's not true. While it's possible to use Objective-C frameworks from C, in practice, nobody does this. People writing C for Apple platforms don't usually call out to Objective-C from C, they call into their C from Objective-C. Entirely replacing Objective-C with Swift won't change this - you can call into C from Swift just as you can call into C from Objective-C.

Now I think if there is ever a situation where Apple would drop support for Objective-C, I do think it's likely that they would drop support for C at the same time, but it's not because writing C for Apple platforms requires the presence of Objective-C.

Comment Re:80% is misleading (Score 2) 281

More specifically: if PHP is installed on a server, it typically advertises itself in the Host: HTTP header for every outgoing request, regardless of whether it was used to serve that request or not. Most other languages do not, even if they were used to serve that request. The tools that perform these language surveys can't adequately control for this, so it leads to a phenomenally large overestimation of the usage statistics for PHP.

Comment Re:PHP is great (Score 2) 281

There are a lot of PHPisms I have grown accustomed to, that I would really like in [Python]. Namely, I want var_dump.

You can do far better than that. If you use a tool like the Flask debug toolbar, you can jump into an interactive debug session, running on the server, right from your browser.

Comment Re:PHP is great (Score 2) 281

the PHP code is harder to maintain long term, but it's amazing how fast you can build things that work.

Quick doesn't have to mean dirty. You can be extremely productive without creating unmaintainable crap in an ugly, badly-designed language. It's not a trade-off, you can have a better language and better productivity at the same time.

Comment Out of scope? (Score 3, Insightful) 294

the target of wiretaps does not have to be linked to a foreign power or terrorism.

I thought the point of the NSA was that they were meant to protect domestic communications from external threats. If the target is not linked to external threats, how can it be justified?

Comment Re:annoying downgrade, ingores major usage pattern (Score 1) 101

I find it really ironic that Google, a company so used to being the new hotness upstart company, is so willfully ignoring usage patterns of a significant minority comprising "the youth" and people on the wrong side of the internet divide, and much of the third world, and anyone without a data plan outside of wifi range.

It's you that's out of touch. Kids don't use SMS like they used to, it's all about apps like Snapchat now. And most kids don't generally care about calendar reminders either.

As for people without data plans, Google are inventing record-breaking new technologies like Loon precisely to reach these people. They are about as far away from ignoring the problem as you can possibly get.

Personally, I use sms to ensure my kids get the notification no matter what

Nope, SMS doesn't achieve that, it needs a signal at the point at which the notification is received. Whereas an app that generates local notifications only needs to sync the event once. The app-based method is much more reliable.

Slashdot Top Deals

Thus spake the master programmer: "After three days without programming, life becomes meaningless." -- Geoffrey James, "The Tao of Programming"

Working...