Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re:Probably Xamarin (Score 2) 96

People who want cross-platform on iOS and Android have had it since day 1. Write your logic in C or C++. Its how cross-platform has been done for decades. Then write a wrapper in whatever language the platform uses for the UI.

If your complaint is that you want cross-platform Ui code as well- no you really don't. The two platforms are so different that you'll never get an app with a good look and field without writing 2 separate UIs. Unless you want to release an Android like UI for Apple (which will get hatred from users) or an iOS like UI for Android (which will get hatred from users).

Comment Re:I still wonder how people in the Internet world (Score 1) 120

Because reaching your customers directly is hard. If it was easy, nobody would sign up for these services. Its especially hard for a small business like these- you expect them not only to be master craftsmen, but master marketers, master SEOs, and master businessmen as well? And do all of it in the span of a working day? Not exactly realistic. Now alternatives competing on margin- that can and will happen. Amazon isn't even the first here. Some of them, like ANgie's list, are paid for by monthly subscriptions.

Comment Re:Utility vs. freedom (Score 4, Insightful) 114

Great. Then you don't mind if I take a hit out on your life? I mean, its just a contract, the fact its to kill someone doesn't outweigh my liberty to enter into it, does it?

Congratulations, you've just said the stupidest thing I've ever read on the internet. That includes "Where does babby come from".

Comment Re:Only on some... (Score 1) 155

THey have a careers subpage. I would be willing to bet its got a form or two, and that's *very* personal info. I would also be willing to bet there's internal pages hosted on that website with logins.

Besides that, HTTPS would protect what pages you're visiting (even if plaintext knowing you're going to pages on, say worker's comp benefits is private information) allowing packet sniffers to only know what server you're hitting and not the exact page.

Remember- its not always what's on the page, its the fact you went to a specific page too.

There is absolutely no reason to use HTTP for anything. Encrypting the connection costs very little, prevents you from having stupid mistakes by not encrypting things that need to be, and provides enhanced privacy to things you may not realize that person is sensitive on. There's no reason NOT to make HTTPS everywhere.

Comment Re:Android 4.3 (Score 1) 150

In what world do PCs have a standard hardware model?

Case size/shape- nope.
Cpu socket- nope.
RAM type- nope.
Peripheral bus- nope.

The only thing that all PCs have in common is a CPU instruction set. And not even 100% on that (x86-64 or IA64 was a battle not too long ago).

Comment Re:C++14 != C++98 (Score 1) 407

The reason they're useful for iterators is that they fucked up iterators. There should have been a base abstract iterator class with child classes for the various types/classes. Then you could have just declared it as an iterator* and not worried. Rather than providing bad patches they should fix the initial problem. Patching on mistakes just leads to problems.

Comment Re:C++14 != C++98 (Score 1) 407

If you want to use auto, go to a dynamically typed language. Strong typing is a feature, it prevents bugs and saves time and effort in maintenance. If you use auto, you're a shitty programmer. Auto solves NO problems except the number of characters you need to type when declaring stl iterators. Its a bad feature used to patch over other poorly designed features. Which basically describes almost all of the additions in the last 10 years to C++.

Slashdot Top Deals

We warn the reader in advance that the proof presented here depends on a clever but highly unmotivated trick. -- Howard Anton, "Elementary Linear Algebra"

Working...