Slashdot Mirror


User: johnthuss

johnthuss's activity in the archive.

Stories
0
Comments
13
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 13

  1. Learn both! on Ask Slashdot: Objective C Vs. Swift For a New iOS Developer? · · Score: 2

    You can't realistically do iOS development without knowing Objective-C; its just no feasible since all Apples frameworks are written in it, all the open source libraries use it, and all of the stackflow answers are for it. And fortunately, it is not a bad language. Swift is a much better language, at least potentially. It is still a bit rough to use. But it is sure to replace Objective-C over the next few years, so you would be a fool to ignore it. To address the larger question - you should get some formal computer science instruction if you ever expect to land a job. You have to have something on your résumé.

  2. Re:Java killer? on Red Hat Uncloaks 'Java Killer': the Ceylon Project · · Score: 1

    When this project was started two years ago, it was probably a good idea. But now Scala has matured and has huge momentum.

    Scala meets the need for a Java replacement and also provides compelling use-cases for switching, namely better concurrency support. Ceylon seems to abhor complexity while Scala welcomes it. But Scala's complexity is not essential; you can ignore it if you don't need it and use it if you do.

    I think Ceylon's simplicity will prevent it from meeting the expectations of a lot of developers. Not to mention the other things it will be missing for a long time (even after they have a compiler and SDK) like IDE support and a wealth of libraries.

  3. He's my professor! on 'I Just Need a Programmer' · · Score: 1

    Wow, my former professor made it on Slashdot. Cool! Thank you UNI for 4 wonderful years and a now a great career as a software engineer. And special thanks to professor Wallingford!

  4. Re:Alternatives on The Coming War Over the Future of Java · · Score: 1

    It's too bad that some of the most promising new languages (Scala, Clojure) are JDK based.

    Scala runs on the .NET platform too. http://www.scala-lang.org/node/168

  5. Re:I'm confused... on Android Data Stealing App Downloaded By Millions · · Score: 2, Informative

    No, this is known bug that occurs when you want to support android 1.5, which is the oldest used version still in active use (and fairly significant usage too). See this post for more info.

  6. ICE works at 160 degrees? on The iPad As In-Car Entertainment System Killer · · Score: 1

    Wow, my ICE starts to melt at 32 degrees. That's amazing!

  7. YouTube will get the outrage, not IE on Five Years of YouTube and Forced Evolution · · Score: 2, Insightful

    On that day all browsers will be HTML5 compatible or they will perish in the flames of user outrage.

    People won't blame their browser (IE) they will yell at YouTube for needlessly breaking something that was working just fine. Seriously, users don't care AT ALL about the politics behind this. They just want IE6 to keep working. Well, "working" might be a generous description, but you get the point.

  8. Bad Karma on Some Early Adopters Stung By Ubuntu's Karmic Koala · · Score: 5, Funny

    It's Karma - your deeds are finally coming back to haunt you!

  9. Re:Extremism in the defense of liberty is no vice on Ireland Criminalizes Blasphemy · · Score: 1

    Read the article before saying ridiculous things. I quote: "Put simply, the religious lobby is not behind the move to criminalise blasphemy." This is not religious people doing anything.

    they [religionists] go and pass laws like this. They'd do it in America too, have done it in the past, if not for that pesky First Amendment and the strident efforts of "militant" atheists and civil rights organizations.

  10. Re:Of Course, the Google Web Toolkit on The More Popular the Browser, the Slower It Is · · Score: 1

    Yeah, the Google Web Toolkit (which I believe they are all using for a front end) b

    That's just flat out wrong. GWT is only being used by Google for one service - Google Health

  11. Re:Web Application Kits on Developers Looking to Set Up Alternatives To Apple's App Store · · Score: 1

    I haven't investigated this, but it appears that PhoneGap (mentioned above) can access the accelerometer, the location api, do sound, and vibration.

  12. Re:Web Application Kits on Developers Looking to Set Up Alternatives To Apple's App Store · · Score: 1

    And how well would web apps have worked with the iPod Touch outside of Wi-Fi coverage?

    Obviously you need to be connected to Wi-Fi to install an application REGARDLESS of the whether it is a native app or a web based app. You can make you web app run off-line thanks to the HTML5 offline application support implemented in MobileSafari. So this is a non-issue.

  13. Write a web application on Developers Looking to Set Up Alternatives To Apple's App Store · · Score: 3, Interesting

    I'm working on a GWT framework for the iphone that will allow you to write a web application that looks and behaves just look a native application. A web app can get surprisingly close to being indistinguishable for native thanks to a few features in MobileSafari like:

    1) Offline application support
    2) Hardware-accelerated animations
    3) Chrome-less UI
    4) Custom application icon

    Since it is a web app you avoid the stranglehold of the app store and the LONG processing time of applications (I know, I have applied and been accepted). You also get the freedom to update your app immediately at any time without needing apple's approval.