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

 



Forgot your password?
typodupeerror
×

Comment Re:Probably Xamarin (Score 2) 96

It is not just a "wrapper for the UI code" there is a shitton of stuff, just for starters there are all the sensors (gyroscope, gps, camera), permission handling, packaging the app, interaction between apps, background services and a lot more stuff that differs from one platform to the next.

Yes you can share much of your application logic between each platform using C/C++, but:
1) You need to write it in C/C++
2) If your app mostly just talks to a server there is not much application logic in the mobile device, so most of your code will not be portable at all.

There is a reason mostly only games share significant codebases between each platform. Their application logic is already usually written in C++ and they don't often have to deal with the stuff I mentioned before.

Comment Re:Christian Theocracy (Score 1) 1168

"This is another power grab by the religious right"

I think this is just a bunch of politicians spending money and time on something stupid. Politicians either trying to grab votes from the more radical religious voters or just radical religious politicians trying to force their world view on other people. I don't think these people can be considered one coherent group like your statement suggests.

Comment Edge cases (Score 1) 298

Good code has comments for edge cases, I mean "why the fuck are you checking if foo is less than bar?" with "//checking if foo will not overflow because ..."

Edge cases are by definition very unlikely, usually the code that handles them are bugfixes. Too many times I come across code that is full of bugfixes for those edge cases but no comments whatsoever, to me those kind of comments are more important than method comments (aka javadoc).

Comment Re:Centralized on GitHub! LOL! (Score 1) 116

As opposed to what? Subversion would be completely unusable in this situation, at least git users can push and pull from each other peer to peer, which you would only do if you REALLY need it, because it is kinda of a pain in the ass compared to push/pulling to origin. Plus you CAN carry on your own work keeping a normal commit history as long as you don't want to share it with anyone until the servers come back online.

Really, it is "the greatest thing ever (for source control)".

Comment Re:How much would NoScript mitagte the FF Vulns? (Score 1) 237

I don't think stuff actually loads that much faster with ghostery because those analytics scripts and facebook buttons are really small and the browser makes up to X connections (8 usually) per domain at the same time. BUT sometimes the page hangs waiting for a third party domain to respond, this rare cases don't happen anymore.

Comment Re:How much would NoScript mitagte the FF Vulns? (Score 1) 237

The thing I don't get is the analytics scripts, do you really need that many? One or two I can understand, but with that many you won't even have the time to look at all the graphs they can throw at you. It is not like they are generating revenue for your website...

Slashdot Top Deals

Happiness is twin floppies.

Working...