It still a work in progress, but my plan is to release it on the launch day of iOS 8, with a lot more features. Like a Today widget and a share extension which will allow you to post to HN right from Safari.
Work is underway on an API to do all of this. Nick and Scott are hacking on it about three feet to my right just now. The days of scraping are numbered.
YCombinator doesn't endorse Algolia's HN API in any public way, to my knowledge. This makes it just regular third-party API—reliable, convenient, better than scraping, but hardly ‘official’. (Yes, I'm being pedantic.)
It seems to in the sense that Algolia powers the HN Search at the bottom of every window, and they are co-branded on those search pages. Also, https://hn.algolia.com/api
I agree, but it's good marketing. It associates the act of searching with the hostname 'algolia', which seems to be in their interest (being that their tagline is "Hosted cloud search as a service | AlgoliaSearch").
Looks great, Thomas. If you'd like to use Diffbot [1] to generate clean content summaries of the links for mobile, ala premii, I'd be happy to hook you up with some calls. [1] http://diffbot.com
It's rough, not because of Swift, but because of Xcode. I really love Swift, but it take some time to get up to the speed you are used with Objective-c. Mostly because of the new syntax, but also because Xcode is very buggy around code completion, linking and syntax highlighting.
But for a new app, I would recommend Swift to anyone, it's light, and readable, I really like it.
Debugging Swift is terrible right now in Xcode, unless I am not doing it right. Some values can be seen, others are inexplicably missing. Coming from Java/IntelliJ, it's a hopeless mess.
I hope that Xcode/Swift gets better in the debugging department soon. NSLog() is a rough way to see values. It's just so 1996.
>I hope that Xcode/Swift gets better in the debugging department soon. NSLog() is a rough way to see values. It's just so 1996.
Well, XCode also has the Swift Playground, with live values updating next to your code etc. Java/IntelliJ don't have that (of course XCode's implementation is beta too, and might not work on some cases).
Playground however is just a place for playing with snippets of code. And experiment and learn environment. If you have a bug in a running app, it's just not possible to recreate the problem except for the simplest of apps.
I had some big issues with code completion in Swift in Xcode. The completion engine regularly crashed and all syntax highlighting and warnings/errors disappeared. A total nightmare when you're trying to learn a new language.
>The completion engine regularly crashed and all syntax highlighting and warnings/errors disappeared. A total nightmare when you're trying to learn a new language.
Kids these days... We had to learn new languages with no "syntax highlighting", no "completion engine", no tutorials, no reference sites and no internet in general. If we were lucky we had some kind of printed manual -- not always.
Looks extremely nice. Currently I'm using http://hckrnews.com/ both on my laptop as well as on iOS due to the lovely layout for mobile as well as cronologically ordering. If your app can do that as well I'm sold!
Well, I want the app to be as close as what Apple could deliver as I possible. So I plan to keep the feed and comments very clean. It'll also feature some offline feature and automatic background update, very handy.
Ahah, to be honest, this was the first feature I put in, you can send any article to the Reading List by swiping a cell. I use the offline feature of the Safari Reading List a lot. This is a killer feature for me. http://cl.ly/Wf4t
Actually, no. The big changes was for the beta 3 and it was mostly around arrays syntax. The old syntax was "deprecated" and Xcode gently allowed me to use the new syntax in 1 click.
I was impressed :) Can't wait to see the changes in new seed next week.
Edit: I started an Hacker News Swift scraper, which is what SwiftHN use now, it's called Hacker Swifter: https://github.com/Dimillian/HackerSwifter It's highly inspired from LibHN (https://github.com/bennyguitar/libHN) for the scrapping part at the moment.
Feedbacks and pull requests appreciated :)